diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3463d3afe..a847d51cb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,8 @@ name: "Generate Releases" on: release: types: [ published ] + schedule: + - cron: '0 12 1,15 * *' # On the 1st and 15th of the month at noon ## To test this workflow without creating a release, uncomment the following and add a branch name (making sure "push" ## is at the same indent level as "release": # push: @@ -136,7 +138,7 @@ jobs: - name: "Upload binaries to release" uses: svenstaro/upload-release-action@v2 - if: github.event_name == 'release' + if: github.event_name == 'release' || github.event_name == 'schedule' with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: build/${{ steps.basefn.outputs.FILEPATH }}* diff --git a/src/main/java/network/brightspots/rcv/CastVoteRecord.java b/src/main/java/network/brightspots/rcv/CastVoteRecord.java index 770da8add..dd891e98e 100644 --- a/src/main/java/network/brightspots/rcv/CastVoteRecord.java +++ b/src/main/java/network/brightspots/rcv/CastVoteRecord.java @@ -89,8 +89,12 @@ class CastVoteRecord { } CastVoteRecord( - String computedId, String suppliedId, String precinct, List> rankings) { - this(null, null, null, suppliedId, computedId, precinct, null, rankings); + String computedId, + String suppliedId, + String precinct, + String batchId, + List> rankings) { + this(null, null, batchId, suppliedId, computedId, precinct, null, rankings); } String getContestId() { @@ -101,12 +105,11 @@ String getTabulatorId() { return tabulatorId; } - String getBatchId() { - return batchId; - } - - String getPrecinct() { - return precinct; + String getSlice(ContestConfig.TabulateBySlice slice) { + return switch (slice) { + case BATCH -> batchId; + case PRECINCT -> precinct; + }; } String getPrecinctPortion() { diff --git a/src/main/java/network/brightspots/rcv/CommonDataFormatReader.java b/src/main/java/network/brightspots/rcv/CommonDataFormatReader.java index 3667de046..8bd7301ea 100644 --- a/src/main/java/network/brightspots/rcv/CommonDataFormatReader.java +++ b/src/main/java/network/brightspots/rcv/CommonDataFormatReader.java @@ -315,8 +315,8 @@ void parseXml(List castVoteRecords) throws CvrParseException, IO String computedCastVoteRecordId = String.format("%s(%d)", fileName, ++cvrIndex); // create the new CastVoteRecord - CastVoteRecord newRecord = - new CastVoteRecord(computedCastVoteRecordId, cvr.UniqueId, precinctId, rankings); + CastVoteRecord newRecord = new CastVoteRecord( + computedCastVoteRecordId, cvr.UniqueId, precinctId, cvr.BatchSequenceId, rankings); castVoteRecords.add(newRecord); // provide some user feedback on the CVR count @@ -524,10 +524,11 @@ void parseJson(List castVoteRecords) throws CvrParseException { } String ballotId = (String) cvr.get("BallotPrePrintedId"); + String batchId = (String) cvr.get("BatchSequenceId"); String computedCastVoteRecordId = String.format("%s(%d)", fileName, ++cvrIndex); // create the new CastVoteRecord CastVoteRecord newRecord = - new CastVoteRecord(computedCastVoteRecordId, ballotId, precinctId, rankings); + new CastVoteRecord(computedCastVoteRecordId, ballotId, precinctId, batchId, rankings); castVoteRecords.add(newRecord); // provide some user feedback on the CVR count if (castVoteRecords.size() % 50000 == 0) { diff --git a/src/main/java/network/brightspots/rcv/ContestConfig.java b/src/main/java/network/brightspots/rcv/ContestConfig.java index aa4d986e6..0c372a34e 100644 --- a/src/main/java/network/brightspots/rcv/ContestConfig.java +++ b/src/main/java/network/brightspots/rcv/ContestConfig.java @@ -32,6 +32,7 @@ import java.util.List; import java.util.Map; import java.util.Set; +import java.util.stream.Collectors; import java.util.stream.Stream; import network.brightspots.rcv.RawContestConfig.Candidate; import network.brightspots.rcv.RawContestConfig.CvrSource; @@ -44,6 +45,7 @@ class ContestConfig { // If any booleans are unspecified in config file, they should default to false no matter what static final String AUTOMATED_TEST_VERSION = "TEST"; static final String SUGGESTED_OUTPUT_DIRECTORY = "output"; + static final boolean SUGGESTED_TABULATE_BY_BATCH = false; static final boolean SUGGESTED_TABULATE_BY_PRECINCT = false; static final boolean SUGGESTED_GENERATE_CDF_JSON = false; static final boolean SUGGESTED_CANDIDATE_EXCLUDED = false; @@ -228,6 +230,14 @@ && stringAlreadyInUseElsewhereInSource( source.getFilePath())) { validationErrors.add(ValidationError.CVR_PRECINCT_COLUMN_UNEXPECTEDLY_DEFINED); } + + if (fieldIsDefinedButShouldNotBeForProvider( + source.getBatchColumnIndex(), + "batchColumnIndex", + provider, + source.getFilePath())) { + validationErrors.add(ValidationError.CVR_BATCH_COLUMN_UNEXPECTEDLY_DEFINED); + } } // See the config file documentation for an explanation of this regex @@ -284,6 +294,14 @@ && stringAlreadyInUseElsewhereInSource( validationErrors.add(ValidationError.CVR_PRECINCT_COLUMN_UNEXPECTEDLY_DEFINED); } + if (fieldIsDefinedButShouldNotBeForProvider( + source.getBatchColumnIndex(), + "batchColumnIndex", + provider, + source.getFilePath())) { + validationErrors.add(ValidationError.CVR_BATCH_COLUMN_UNEXPECTEDLY_DEFINED); + } + if (fieldIsDefinedButShouldNotBeForProvider( source.getOvervoteDelimiter(), "overvoteDelimiter", provider, source.getFilePath())) { validationErrors.add(ValidationError.CVR_OVERVOTE_DELIMITER_UNEXPECTEDLY_DEFINED); @@ -599,16 +617,26 @@ && getOvervoteRule() != Tabulator.OvervoteRule.ALWAYS_SKIP_TO_NEXT_RANK) { if (getProvider(source) == Provider.CDF) { // Perform CDF checks - if (isTabulateByPrecinctEnabled()) { - validationErrors.add(ValidationError.CVR_CDF_TABULATE_BY_PRECINCT_DISAGREEMENT); - Logger.severe("tabulateByPrecinct may not be used with CDF files."); + for (TabulateBySlice tabulateBySlice : enabledSlices()) { + validationErrors.add(ValidationError.CVR_CDF_TABULATE_BY_DISAGREEMENT); + Logger.severe("Tabulate-by-%s has not yet been implemented for CDF files.", + tabulateBySlice); } } else if (getProvider(source) == Provider.ESS) { // Perform ES&S checks - if (isNullOrBlank(source.getPrecinctColumnIndex()) && isTabulateByPrecinctEnabled()) { + if (isNullOrBlank(source.getPrecinctColumnIndex()) + && isTabulateByEnabled(TabulateBySlice.PRECINCT)) { validationErrors.add(ValidationError.CVR_TABULATE_BY_PRECINCT_REQUIRES_PRECINCT_COLUMN); Logger.severe( - "precinctColumnIndex is required when tabulateByPrecinct is enabled: %s", cvrPath); + "precinctColumnIndex is required when tabulateByPrecinct is enabled: %s", + cvrPath); + } + if (isNullOrBlank(source.getBatchColumnIndex()) + && isTabulateByEnabled(TabulateBySlice.BATCH)) { + validationErrors.add(ValidationError.CVR_TABULATE_BY_PRECINCT_REQUIRES_BATCH_COLUMN); + Logger.severe( + "batchColumnIndex is required when tabulateByBatch is enabled: %s", + cvrPath); } if (isNullOrBlank(source.getOvervoteDelimiter()) && getOvervoteRule() == OvervoteRule.EXHAUST_IF_MULTIPLE_CONTINUING) { @@ -959,8 +987,17 @@ String getContestDate() { return rawConfig.outputSettings.contestDate; } - boolean isTabulateByPrecinctEnabled() { - return rawConfig.outputSettings.tabulateByPrecinct; + boolean isTabulateByEnabled(TabulateBySlice slice) { + return switch (slice) { + case PRECINCT -> rawConfig.outputSettings.tabulateByPrecinct; + case BATCH -> rawConfig.outputSettings.tabulateByBatch; + }; + } + + List enabledSlices() { + return Arrays.stream(TabulateBySlice.values()) + .filter(this::isTabulateByEnabled) + .collect(Collectors.toList()); } boolean isGenerateCdfJsonEnabled() { @@ -1194,6 +1231,7 @@ enum ValidationError { CVR_FIRST_VOTE_COLUMN_INVALID, CVR_FIRST_VOTE_ROW_INVALID, CVR_ID_COLUMN_INVALID, + CVR_BATCH_COLUMN_INVALID, CVR_PRECINCT_COLUMN_INVALID, CVR_OVERVOTE_DELIMITER_INVALID, CVR_CDF_FILE_PATH_INVALID, @@ -1202,7 +1240,8 @@ enum ValidationError { CVR_DUPLICATE_FILE_PATHS, CVR_FILE_PATH_INVALID, CVR_OVERVOTE_LABEL_OVERVOTE_RULE_MISMATCH, - CVR_CDF_TABULATE_BY_PRECINCT_DISAGREEMENT, + CVR_CDF_TABULATE_BY_DISAGREEMENT, + CVR_TABULATE_BY_PRECINCT_REQUIRES_BATCH_COLUMN, CVR_TABULATE_BY_PRECINCT_REQUIRES_PRECINCT_COLUMN, CVR_OVERVOTE_DELIMITER_AND_LABEL_BOTH_SUPPLIED, CVR_OVERVOTE_DELIMITER_MISSING, @@ -1211,6 +1250,7 @@ enum ValidationError { CVR_FIRST_VOTE_UNEXPECTEDLY_DEFINED, CVR_FIRST_VOTE_ROW_UNEXPECTEDLY_DEFINED, CVR_ID_COLUMN_UNEXPECTEDLY_DEFINED, + CVR_BATCH_COLUMN_UNEXPECTEDLY_DEFINED, CVR_PRECINCT_COLUMN_UNEXPECTEDLY_DEFINED, CVR_SKIPPED_RANK_LABEL_UNEXPECTEDLY_DEFINED, CVR_CONTEST_ID_UNEXPECTEDLY_DEFINED, @@ -1291,5 +1331,25 @@ public String getInternalLabel() { } } + enum TabulateBySlice { + PRECINCT("Precinct"), + BATCH("Batch"); + + private final String label; + + TabulateBySlice(String label) { + this.label = label; + } + + @Override + public String toString() { + return label; + } + + public String toLowerString() { + return label.toLowerCase(); + } + } + static class UnrecognizedProviderException extends Exception {} } diff --git a/src/main/java/network/brightspots/rcv/CsvCvrReader.java b/src/main/java/network/brightspots/rcv/CsvCvrReader.java index 7915eec45..ded6f2ce8 100644 --- a/src/main/java/network/brightspots/rcv/CsvCvrReader.java +++ b/src/main/java/network/brightspots/rcv/CsvCvrReader.java @@ -107,8 +107,12 @@ void readCastVoteRecords(List castVoteRecords) } // create the new CastVoteRecord - CastVoteRecord newCvr = - new CastVoteRecord(Integer.toString(index), "no supplied ID", "no precinct", rankings); + CastVoteRecord newCvr = new CastVoteRecord( + Integer.toString(index), + "no supplied ID", + "no precinct", + "no batch ID", + rankings); castVoteRecords.add(newCvr); } } catch (IOException exception) { diff --git a/src/main/java/network/brightspots/rcv/GuiConfigController.java b/src/main/java/network/brightspots/rcv/GuiConfigController.java index 4b37199d6..a66490da9 100644 --- a/src/main/java/network/brightspots/rcv/GuiConfigController.java +++ b/src/main/java/network/brightspots/rcv/GuiConfigController.java @@ -153,6 +153,8 @@ public class GuiConfigController implements Initializable { @FXML private TextField textFieldContestOffice; @FXML + private CheckBox checkBoxTabulateByBatch; + @FXML private CheckBox checkBoxTabulateByPrecinct; @FXML private CheckBox checkBoxGenerateCdfJson; @@ -167,6 +169,8 @@ public class GuiConfigController implements Initializable { @FXML private TableColumn tableColumnCvrIdCol; @FXML + private TableColumn tableColumnCvrBatchCol; + @FXML private TableColumn tableColumnCvrPrecinctCol; @FXML private TableColumn tableColumnCvrOvervoteDelimiter; @@ -199,6 +203,8 @@ public class GuiConfigController implements Initializable { @FXML private TextField textFieldCvrIdCol; @FXML + private TextField textFieldCvrBatchCol; + @FXML private TextField textFieldCvrPrecinctCol; @FXML private TextField textFieldCvrOvervoteDelimiter; @@ -687,6 +693,7 @@ public void buttonAddCvrFileClicked() { String firstVoteColumnIndex = getTextOrEmptyString(textFieldCvrFirstVoteCol); String firstVoteRowIndex = getTextOrEmptyString(textFieldCvrFirstVoteRow); String idColumnIndex = getTextOrEmptyString(textFieldCvrIdCol); + String batchColumnIndex = getTextOrEmptyString(textFieldCvrBatchCol); String precinctColumnIndex = getTextOrEmptyString(textFieldCvrPrecinctCol); String overvoteDelimiter = getTextOrEmptyString(textFieldCvrOvervoteDelimiter); String provider = getProviderChoice(choiceCvrProvider).getInternalLabel(); @@ -703,6 +710,7 @@ public void buttonAddCvrFileClicked() { firstVoteColumnIndex, firstVoteRowIndex, idColumnIndex, + batchColumnIndex, precinctColumnIndex, overvoteDelimiter, provider, @@ -732,6 +740,7 @@ private void clearBasicCvrValidationHighlighting() { textFieldCvrFirstVoteCol, textFieldCvrFirstVoteRow, textFieldCvrIdCol, + textFieldCvrBatchCol, textFieldCvrPrecinctCol, textFieldCvrOvervoteDelimiter, textFieldCvrOvervoteLabel, @@ -767,6 +776,10 @@ private void highlightInputsFailingBasicCvrValidation(Set valid addErrorStyling(textFieldCvrIdCol); } + if (validationErrors.contains(ValidationError.CVR_BATCH_COLUMN_INVALID)) { + addErrorStyling(textFieldCvrBatchCol); + } + if (validationErrors.contains(ValidationError.CVR_PRECINCT_COLUMN_INVALID)) { addErrorStyling(textFieldCvrPrecinctCol); } @@ -813,6 +826,8 @@ private void clearAndDisableCvrFilesTabFields() { textFieldCvrFirstVoteRow.setDisable(true); textFieldCvrIdCol.clear(); textFieldCvrIdCol.setDisable(true); + textFieldCvrBatchCol.clear(); + textFieldCvrBatchCol.setDisable(true); textFieldCvrPrecinctCol.clear(); textFieldCvrPrecinctCol.setDisable(true); textFieldCvrOvervoteDelimiter.clear(); @@ -962,6 +977,7 @@ private void setDefaultValues() { ContestConfig.SUGGESTED_EXHAUST_ON_DUPLICATE_CANDIDATES); textFieldOutputDirectory.setText(ContestConfig.SUGGESTED_OUTPUT_DIRECTORY); + checkBoxTabulateByBatch.setSelected(ContestConfig.SUGGESTED_TABULATE_BY_BATCH); checkBoxTabulateByPrecinct.setSelected(ContestConfig.SUGGESTED_TABULATE_BY_PRECINCT); checkBoxGenerateCdfJson.setSelected(ContestConfig.SUGGESTED_GENERATE_CDF_JSON); } @@ -994,6 +1010,7 @@ private void clearConfig() { checkBoxExhaustOnDuplicateCandidate.setSelected(false); textFieldOutputDirectory.clear(); + checkBoxTabulateByBatch.setSelected(false); checkBoxTabulateByPrecinct.setSelected(false); checkBoxGenerateCdfJson.setSelected(false); @@ -1201,6 +1218,7 @@ public LocalDate fromString(String string) { .setText(String.valueOf(ContestConfig.SUGGESTED_CVR_FIRST_VOTE_ROW)); textFieldCvrIdCol.setDisable(false); textFieldCvrIdCol.setText(String.valueOf(ContestConfig.SUGGESTED_CVR_ID_COLUMN)); + textFieldCvrBatchCol.setDisable(false); textFieldCvrPrecinctCol.setDisable(false); textFieldCvrPrecinctCol .setText(String.valueOf(ContestConfig.SUGGESTED_CVR_PRECINCT_COLUMN)); @@ -1250,6 +1268,7 @@ public LocalDate fromString(String string) { new EditableColumnString(tableColumnCvrFirstVoteCol, "firstVoteColumnIndex"), new EditableColumnString(tableColumnCvrFirstVoteRow, "firstVoteRowIndex"), new EditableColumnString(tableColumnCvrIdCol, "idColumnIndex"), + new EditableColumnString(tableColumnCvrBatchCol, "batchColumnIndex"), new EditableColumnString(tableColumnCvrPrecinctCol, "precinctColumnIndex"), new EditableColumnString(tableColumnCvrOvervoteDelimiter, "overvoteDelimiter"), new EditableColumnString(tableColumnCvrContestId, "contestId"), @@ -1460,6 +1479,7 @@ private void loadConfig(ContestConfig config) throws ConfigVersionIsNewerThanApp } textFieldContestJurisdiction.setText(outputSettings.contestJurisdiction); textFieldContestOffice.setText(outputSettings.contestOffice); + checkBoxTabulateByBatch.setSelected(outputSettings.tabulateByBatch); checkBoxTabulateByPrecinct.setSelected(outputSettings.tabulateByPrecinct); checkBoxGenerateCdfJson.setSelected(outputSettings.generateCdfJson); @@ -1549,6 +1569,7 @@ private RawContestConfig createRawContestConfig() { datePickerContestDate.getValue() != null ? datePickerContestDate.getValue().toString() : ""; outputSettings.contestJurisdiction = getTextOrEmptyString(textFieldContestJurisdiction); outputSettings.contestOffice = getTextOrEmptyString(textFieldContestOffice); + outputSettings.tabulateByBatch = checkBoxTabulateByBatch.isSelected(); outputSettings.tabulateByPrecinct = checkBoxTabulateByPrecinct.isSelected(); outputSettings.generateCdfJson = checkBoxGenerateCdfJson.isSelected(); config.outputSettings = outputSettings; @@ -1558,6 +1579,8 @@ private RawContestConfig createRawContestConfig() { source.setFilePath(source.getFilePath() != null ? source.getFilePath().trim() : ""); source.setIdColumnIndex( source.getIdColumnIndex() != null ? source.getIdColumnIndex().trim() : ""); + source.setBatchColumnIndex( + source.getBatchColumnIndex() != null ? source.getBatchColumnIndex().trim() : ""); source.setPrecinctColumnIndex( source.getPrecinctColumnIndex() != null ? source.getPrecinctColumnIndex().trim() : ""); source.setOvervoteDelimiter( @@ -1748,6 +1771,7 @@ protected void cleanUp() { protected void setUpTaskCompletionTriggers(Task task, String failureMessage) { task.setOnFailed( arg0 -> { + task.getException().printStackTrace(); Logger.severe(failureMessage, task.getException()); cleanUp(); }); diff --git a/src/main/java/network/brightspots/rcv/RawContestConfig.java b/src/main/java/network/brightspots/rcv/RawContestConfig.java index 9a11c7c54..6c34de3e9 100644 --- a/src/main/java/network/brightspots/rcv/RawContestConfig.java +++ b/src/main/java/network/brightspots/rcv/RawContestConfig.java @@ -53,6 +53,7 @@ public static class OutputSettings { public String contestDate; public String contestJurisdiction; public String contestOffice; + public boolean tabulateByBatch; public boolean tabulateByPrecinct; public boolean generateCdfJson; } @@ -71,6 +72,7 @@ public static class CvrSource { private final SimpleStringProperty firstVoteColumnIndex = new SimpleStringProperty(); private final SimpleStringProperty firstVoteRowIndex = new SimpleStringProperty(); private final SimpleStringProperty idColumnIndex = new SimpleStringProperty(); + private final SimpleStringProperty batchColumnIndex = new SimpleStringProperty(); private final SimpleStringProperty precinctColumnIndex = new SimpleStringProperty(); private final SimpleStringProperty overvoteDelimiter = new SimpleStringProperty(); private final SimpleStringProperty provider = new SimpleStringProperty(); @@ -89,6 +91,7 @@ public static class CvrSource { String firstVoteColumnIndex, String firstVoteRowIndex, String idColumnIndex, + String batchColumnIndex, String precinctColumnIndex, String overvoteDelimiter, String provider, @@ -101,6 +104,7 @@ public static class CvrSource { this.firstVoteColumnIndex.set(firstVoteColumnIndex); this.firstVoteRowIndex.set(firstVoteRowIndex); this.idColumnIndex.set(idColumnIndex); + this.batchColumnIndex.set(batchColumnIndex); this.precinctColumnIndex.set(precinctColumnIndex); this.overvoteDelimiter.set(overvoteDelimiter); this.provider.set(provider); @@ -151,6 +155,14 @@ public void setIdColumnIndex(String idColumnIndex) { this.idColumnIndex.set(idColumnIndex); } + public String getBatchColumnIndex() { + return batchColumnIndex.get(); + } + + public void setBatchColumnIndex(String batchColumnIndex) { + this.batchColumnIndex.set(batchColumnIndex); + } + public String getPrecinctColumnIndex() { return precinctColumnIndex.get(); } @@ -235,6 +247,10 @@ public SimpleStringProperty idColumnIndexProperty() { return idColumnIndex; } + public SimpleStringProperty batchColumnIndexProperty() { + return batchColumnIndex; + } + public SimpleStringProperty precinctColumnIndexProperty() { return precinctColumnIndex; } diff --git a/src/main/java/network/brightspots/rcv/ResultsWriter.java b/src/main/java/network/brightspots/rcv/ResultsWriter.java index 2dce34ada..40d8179e6 100644 --- a/src/main/java/network/brightspots/rcv/ResultsWriter.java +++ b/src/main/java/network/brightspots/rcv/ResultsWriter.java @@ -9,7 +9,7 @@ /* * Purpose: Ingests tabulation results and generates various summary report files. - * Design: Generates per-precinct files if specified. + * Design: Generates per-slice files if specified. * CSV summary file(s) with round by round counts. * JSON summary file(s) with additional data on transfer counts. * Also converts CVR sources into CDF format and writes them to disk. @@ -47,7 +47,10 @@ import java.util.Map.Entry; import java.util.Set; import javafx.util.Pair; +import network.brightspots.rcv.ContestConfig.TabulateBySlice; import network.brightspots.rcv.RawContestConfig.CvrSource; +import network.brightspots.rcv.Tabulator.RoundTallies; +import network.brightspots.rcv.Tabulator.SliceIdSet; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVPrinter; @@ -63,8 +66,8 @@ class ResultsWriter { // number of rounds needed to elect winner(s) private int numRounds; - // all precinct Ids which may appear in the output cvrs - private Set precinctIds; + // all Slice Ids that may appear in the output cvrs + private SliceIdSet sliceIds; // precinct to GpUnitId map (CDF only) private Map gpUnitIds; // map from round number to list of candidates eliminated in that round @@ -180,12 +183,13 @@ private static List>> getCandidatesWithRanksList return sortedCandidatesWithRanks; } - // return a unique, valid string for this precinct's output spreadsheet filename - private static String getPrecinctFileString(String precinct, Set filenames) { - String sanitized = sanitizeStringForOutput(precinct); + // return a unique, valid string for this slice's output spreadsheet filename + private static String getFileStringForSlice( + ContestConfig.TabulateBySlice slice, String sliceId, Set filenames) { + String sanitized = "%s_%s".formatted(sanitizeStringForOutput(sliceId), slice.toLowerString()); String filename = sanitized; // appendNumber is used to find a unique filename (in practice this really shouldn't be - // necessary because different precinct names shouldn't have the same sanitized name, but we're + // necessary because different slice IDs shouldn't have the same sanitized name, but we're // doing it here to be safe) int appendNumber = 2; while (filenames.contains(filename)) { @@ -215,8 +219,8 @@ ResultsWriter setNumRounds(int numRounds) { return this; } - ResultsWriter setPrecinctIds(Set precinctIds) { - this.precinctIds = precinctIds; + ResultsWriter setSliceIds(SliceIdSet sliceIds) { + this.sliceIds = sliceIds; return this; } @@ -251,31 +255,35 @@ ResultsWriter setTimestampString(String timestampString) { return this; } - // creates summary files for the votes in each precinct - // param: precinctRoundTallies is map from precinct to the round-by-round vote tallies - // param: precinctTallyTransfers is a map from precinct to tally transfers for that precinct - void generatePrecinctSummaryFiles( - Map> precinctRoundTallies, - Map precinctTallyTransfers) + // creates summary files for the votes split by a TabulateBySlice + // param: roundTalliesBySlice is map from a slice type to the round-by-round vote tallies + // param: tallyTransfersBySlice is a map from a slice type to tally transfers for that slice + void generateBySliceSummaryFiles( + Tabulator.BreakdownBySlice roundTalliesBySlice, + Tabulator.BreakdownBySlice tallyTransfersBySlice) throws IOException { - Set filenames = new HashSet<>(); - for (var entry : precinctRoundTallies.entrySet()) { - String precinct = entry.getKey(); - Map roundTallies = entry.getValue(); - String precinctFileString = getPrecinctFileString(precinct, filenames); - String outputPath = - getOutputFilePathFromInstance(String.format("%s_precinct_summary", precinctFileString)); - generateSummarySpreadsheet(roundTallies, precinct, outputPath); - generateSummaryJson(roundTallies, precinctTallyTransfers.get(precinct), precinct, outputPath); + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + Set filenames = new HashSet<>(); + for (var entry : roundTalliesBySlice.get(slice).entrySet()) { + String sliceId = entry.getKey(); + RoundTallies roundTallies = entry.getValue(); + TallyTransfers tallyTransfers = tallyTransfersBySlice.get(slice, sliceId); + String sliceFileString = getFileStringForSlice(slice, sliceId, filenames); + String outputPath = getOutputFilePathFromInstance( + String.format("%s_summary", sliceFileString)); + generateSummarySpreadsheet(roundTallies, slice, sliceId, outputPath); + generateSummaryJson(roundTallies, tallyTransfers, slice, sliceId, outputPath); + } } } // create a summary spreadsheet .csv file // param: roundTallies is the round-by-count count of votes per candidate - // param: precinct indicates which precinct we're reporting results for (null means all) + // param: slice indicates which type of slice we're reporting results for (null means all) + // param: sliceId indicates the specific slice ID we're reporting results for (null means all) // param: outputPath is the path to the output file, minus its extension private void generateSummarySpreadsheet( - Map roundTallies, String precinct, String outputPath) + RoundTallies roundTallies, TabulateBySlice slice, String sliceId, String outputPath) throws IOException { AuditableFile csvFile = new AuditableFile(outputPath + ".csv"); Logger.info("Generating summary spreadsheet: %s...", csvFile.getAbsolutePath()); @@ -292,7 +300,7 @@ private void generateSummarySpreadsheet( } BigDecimal winningThreshold = roundTallies.get(numRounds).getWinningThreshold(); - addContestInformationRows(csvPrinter, winningThreshold, precinct); + addContestInformationRows(csvPrinter, winningThreshold, slice, sliceId); addContestSummaryRows(csvPrinter, roundTallies.get(1)); csvPrinter.print("Rounds"); for (int round = 1; round <= numRounds; round++) { @@ -302,8 +310,8 @@ private void generateSummarySpreadsheet( } csvPrinter.println(); - // actions don't make sense in individual precinct results - if (isNullOrBlank(precinct)) { + // actions don't make sense in individual by-slice results + if (isNullOrBlank(sliceId)) { addActionRows(csvPrinter); } @@ -426,8 +434,8 @@ private void generateSummarySpreadsheet( // We check if we accumulated any residual surplus over the course of the tabulation by testing // whether the value in the final round is positive. // Note that this concept only makes sense when we're reporting the overall tabulation, so we - // omit it when generating results at the individual precinct level. - if (precinct == null && roundToResidualSurplus.get(numRounds).signum() == 1) { + // omit it when generating results at the individual by-slice level. + if (sliceId == null && roundToResidualSurplus.get(numRounds).signum() == 1) { csvPrinter.print("Residual surplus"); for (int round = 1; round <= numRounds; round++) { csvPrinter.print(roundToResidualSurplus.get(round)); @@ -502,8 +510,10 @@ private void addActionRowCandidates(List candidates, CSVPrinter csvPrint csvPrinter.print(candidateCellText); } - private void addContestInformationRows( - CSVPrinter csvPrinter, BigDecimal winningThreshold, String precinct) throws IOException { + private void addContestInformationRows(CSVPrinter csvPrinter, + BigDecimal winningThreshold, + ContestConfig.TabulateBySlice slice, + String sliceId) throws IOException { csvPrinter.printRecord("Contest Information"); csvPrinter.printRecord("Generated By", "RCTab " + Main.APP_VERSION); csvPrinter.printRecord("CSV Format Version", "1"); @@ -525,18 +535,18 @@ private void addContestInformationRows( } csvPrinter.printRecord("Winner(s)", String.join(", ", winners)); csvPrinter.printRecord("Final Threshold", winningThreshold); - if (!isNullOrBlank(precinct)) { - csvPrinter.printRecord("Precinct", precinct); + if (!isNullOrBlank(sliceId)) { + csvPrinter.printRecord(slice, sliceId); } csvPrinter.println(); } - // creates a summary spreadsheet and JSON for the full contest (as opposed to a precinct) + // creates a summary spreadsheet and JSON for the full contest (as opposed to a specific slice) void generateOverallSummaryFiles( - Map roundTallies, TallyTransfers tallyTransfers) throws IOException { + RoundTallies roundTallies, TallyTransfers tallyTransfers) throws IOException { String outputPath = getOutputFilePathFromInstance("summary"); - generateSummarySpreadsheet(roundTallies, null, outputPath); - generateSummaryJson(roundTallies, tallyTransfers, null, outputPath); + generateSummarySpreadsheet(roundTallies, null, null, outputPath); + generateSummaryJson(roundTallies, tallyTransfers, null, null, outputPath); } // Write CastVoteRecords for the specified contest to the provided folder, @@ -565,7 +575,8 @@ String writeRctabCvrCsv( outputFile.getAbsolutePath()); CSVPrinter csvPrinter; BufferedWriter writer = Files.newBufferedWriter(outputFile.toPath()); - csvPrinter = new CSVPrinter(writer, CSVFormat.DEFAULT); + CSVFormat format = CSVFormat.DEFAULT.builder().setNullString("").build(); + csvPrinter = new CSVPrinter(writer, format); // print header: // ContestId, TabulatorId, BatchId, RecordId, Precinct, Precinct Portion, rank 1 selection, // rank 2 selection, ... rank maxRanks selection @@ -610,18 +621,10 @@ String writeRctabCvrCsv( csvPrinter.print(currentSourceData.source.getFilePath()); csvPrinter.print(castVoteRecord.getContestId()); csvPrinter.print(castVoteRecord.getTabulatorId()); - csvPrinter.print(castVoteRecord.getBatchId()); + csvPrinter.print(castVoteRecord.getSlice(TabulateBySlice.BATCH)); csvPrinter.print(castVoteRecord.getId()); - if (castVoteRecord.getPrecinct() == null) { - csvPrinter.print(""); - } else { - csvPrinter.print(castVoteRecord.getPrecinct()); - } - if (castVoteRecord.getPrecinctPortion() == null) { - csvPrinter.print(""); - } else { - csvPrinter.print(castVoteRecord.getPrecinctPortion()); - } + csvPrinter.print(castVoteRecord.getSlice(ContestConfig.TabulateBySlice.PRECINCT)); + csvPrinter.print(castVoteRecord.getPrecinctPortion()); printRankings(currentSourceData.source.getUndeclaredWriteInLabel(), maxRank, currentSourceData.reader, currentSourceData.source, csvPrinter, castVoteRecord); csvPrinter.println(); @@ -717,7 +720,7 @@ void generateCdfJson(List castVoteRecords) private Map generateGpUnitIds() { Map gpUnitIdToPrecinctId = new HashMap<>(); int gpUnitIdIndex = 0; - for (String precinctId : precinctIds) { + for (String precinctId : sliceIds.get(ContestConfig.TabulateBySlice.PRECINCT)) { gpUnitIdToPrecinctId.put(precinctId, String.format(CDF_GPU_ID_FORMAT, ++gpUnitIdIndex)); } return gpUnitIdToPrecinctId; @@ -781,8 +784,8 @@ private List> generateCdfMapForCvrs(List cas cvrMap.put("ElectionId", CDF_ELECTION_ID); cvrMap.put("@type", "CVR"); // if using precincts add GpUnitId for cvr precinct - if (config.isTabulateByPrecinctEnabled()) { - String gpUnitId = gpUnitIds.get(cvr.getPrecinct()); + if (config.isTabulateByEnabled(TabulateBySlice.PRECINCT)) { + String gpUnitId = gpUnitIds.get(cvr.getSlice(TabulateBySlice.PRECINCT)); cvrMap.put("BallotStyleUnitId", gpUnitId); } cvrMaps.add(cvrMap); @@ -921,9 +924,10 @@ private Map generateCdfMapForElection() { // create summary json data for use with external visualizer software, unit tests and other tools private void generateSummaryJson( - Map roundTallies, + RoundTallies roundTallies, TallyTransfers tallyTransfers, - String precinct, + TabulateBySlice slice, + String sliceId, String outputPath) throws IOException { String jsonPath = outputPath + ".json"; @@ -936,8 +940,8 @@ private void generateSummaryJson( configData.put("jurisdiction", config.getContestJurisdiction()); configData.put("office", config.getContestOffice()); configData.put("date", config.getContestDate()); - if (!isNullOrBlank(precinct)) { - configData.put("precinct", precinct); + if (!isNullOrBlank(sliceId)) { + configData.put(slice.toLowerString(), sliceId); } BigDecimal firstRoundUndervotes = diff --git a/src/main/java/network/brightspots/rcv/StreamingCvrReader.java b/src/main/java/network/brightspots/rcv/StreamingCvrReader.java index 8a7d8c4e2..65e3183da 100644 --- a/src/main/java/network/brightspots/rcv/StreamingCvrReader.java +++ b/src/main/java/network/brightspots/rcv/StreamingCvrReader.java @@ -46,6 +46,8 @@ class StreamingCvrReader extends BaseCvrReader { // this indicates a missing precinct ID in output files private static final String MISSING_PRECINCT_ID = "missing_precinct_id"; + // this indicates a missing batch ID in output files + private static final String MISSING_BATCH_ID = "missing_batch_id"; // name of the source file private final String excelFileName; // 0-based column index of first ranking @@ -54,6 +56,8 @@ class StreamingCvrReader extends BaseCvrReader { private final int firstVoteRowIndex; // 0-based column index of CVR ID (if present) private final Integer idColumnIndex; + // 0-based column index of currentBatch name (if present) + private final Integer batchColumnIndex; // 0-based column index of currentPrecinct name (if present) private final Integer precinctColumnIndex; // optional delimiter for cells that contain multiple candidates @@ -70,6 +74,8 @@ class StreamingCvrReader extends BaseCvrReader { private LinkedList currentCvrData; // supplied CVR ID for CVR in progress private String currentSuppliedCvrId; + // batch ID for CVR in progress + private String currentBatch; // precinct ID for CVR in progress private String currentPrecinct; // place to store input CVR list (new CVRs will be appended as we parse) @@ -90,6 +96,10 @@ class StreamingCvrReader extends BaseCvrReader { isNullOrBlank(source.getIdColumnIndex()) ? null : Integer.parseInt(source.getIdColumnIndex()) - 1; + this.batchColumnIndex = + !isNullOrBlank(source.getBatchColumnIndex()) + ? Integer.parseInt(source.getBatchColumnIndex()) - 1 + : null; this.precinctColumnIndex = !isNullOrBlank(source.getPrecinctColumnIndex()) ? Integer.parseInt(source.getPrecinctColumnIndex()) - 1 @@ -159,6 +169,7 @@ private void beginCvr() { currentRankings = new LinkedList<>(); currentCvrData = new LinkedList<>(); currentSuppliedCvrId = null; + currentBatch = null; currentPrecinct = null; lastRankSeen = 0; } @@ -182,6 +193,16 @@ private void endCvr() { } } + // add batch ID if needed + if (batchColumnIndex != null) { + if (currentBatch == null) { + // group batch with missing Ids here + Logger.warning( + "Batch identifier not found for cast vote record: %s", computedCastVoteRecordId); + currentBatch = MISSING_BATCH_ID; + } + } + if (idColumnIndex != null && currentSuppliedCvrId == null) { Logger.severe( "Cast vote record identifier missing on row %d in file %s. This may be due to an " @@ -195,9 +216,12 @@ private void endCvr() { Logger.fine("[Raw Data]: " + currentCvrData.toString()); // create new cast vote record - CastVoteRecord newRecord = - new CastVoteRecord( - computedCastVoteRecordId, currentSuppliedCvrId, currentPrecinct, currentRankings); + CastVoteRecord newRecord = new CastVoteRecord( + computedCastVoteRecordId, + currentSuppliedCvrId, + currentPrecinct, + currentBatch, + currentRankings); cvrList.add(newRecord); // provide some user feedback on the CVR count @@ -211,6 +235,8 @@ private void cvrCell(int col, String cellData) { currentCvrData.add(cellData); if (precinctColumnIndex != null && col == precinctColumnIndex) { currentPrecinct = cellData; + } else if (batchColumnIndex != null && col == batchColumnIndex) { + currentBatch = cellData; } else if (idColumnIndex != null && col == idColumnIndex) { currentSuppliedCvrId = cellData; } diff --git a/src/main/java/network/brightspots/rcv/Tabulator.java b/src/main/java/network/brightspots/rcv/Tabulator.java index feace91e3..66ceac576 100644 --- a/src/main/java/network/brightspots/rcv/Tabulator.java +++ b/src/main/java/network/brightspots/rcv/Tabulator.java @@ -39,6 +39,7 @@ import java.util.TreeMap; import javafx.util.Pair; import network.brightspots.rcv.CastVoteRecord.VoteOutcomeType; +import network.brightspots.rcv.ContestConfig.TabulateBySlice; import network.brightspots.rcv.ResultsWriter.RoundSnapshotDataMissingException; class Tabulator { @@ -59,20 +60,20 @@ class Tabulator { // roundTallies is a map from round number to a map from candidate ID to vote total for the round // e.g. roundTallies[1] contains a map of all candidate ID -> votes for each candidate in round 1 // this structure is computed over the course of tabulation - private final Map roundTallies = new HashMap<>(); - // precinctRoundTallies is a map from precinct to roundTallies for that precinct - private final Map> precinctRoundTallies = new HashMap<>(); + private final RoundTallies roundTallies = new RoundTallies(); + // roundTalliesBySlices is a map from a tabulate-by slice to roundTallies for that slice + private final BreakdownBySlice roundTalliesBySlices = new BreakdownBySlice<>(); // candidateToRoundEliminated is a map from candidate ID to round in which they were eliminated private final Map candidateToRoundEliminated = new HashMap<>(); // map from candidate ID to the round in which they won private final Map winnerToRound = new HashMap<>(); // tracks vote transfer summaries (usable by external visualizer software) private final TallyTransfers tallyTransfers = new TallyTransfers(); - private final Map precinctTallyTransfers = new HashMap<>(); + private final BreakdownBySlice tallyTransfersBySlice = new BreakdownBySlice<>(); // tracks residual surplus from multi-seat contest vote transfers private final Map roundToResidualSurplus = new HashMap<>(); - // precincts which may appear in the cast vote records - private final Set precinctIds = new HashSet<>(); + // cast vote record metadata on which tabulation can be "split", such as precinct or batch + private final SliceIdSet sliceIds = new SliceIdSet(); // tracks the current round (and when tabulation is completed, the total number of rounds) private int currentRound = 0; @@ -82,20 +83,27 @@ class Tabulator { this.candidateNames = config.getCandidateNames(); this.config = config; + sliceIds.initialize(ContestConfig.TabulateBySlice.BATCH); + sliceIds.initialize(ContestConfig.TabulateBySlice.PRECINCT); + for (CastVoteRecord cvr : castVoteRecords) { - String precinctId = cvr.getPrecinct(); - if (precinctId != null) { - precinctIds.add(precinctId); + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + String sliceId = cvr.getSlice(slice); + if (sliceId != null) { + sliceIds.add(slice, sliceId); + } } } - if (config.isTabulateByPrecinctEnabled()) { - if (precinctIds.isEmpty()) { - Logger.severe("\"Tabulate by Precinct\" enabled, but CVRs don't list precincts."); + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + if (sliceIds.isEmpty(slice)) { + Logger.severe( + "\"Tabulate by %s\" enabled, but CVRs don't list %ss.", + slice, slice.toString().toLowerCase()); throw new TabulationAbortedException(false); } - initPrecinctRoundTallies(); + initTabulateBySliceRoundTallies(slice); } } @@ -181,10 +189,10 @@ Set tabulate() throws TabulationAbortedException { !config.isFirstRoundDeterminesThresholdEnabled() || currentRound == 1; } if (shouldRecomputeThreshold) { - setWinningThreshold(currentRoundTally, config.getMinimumVoteThreshold()); + calculateAndSetWinningThreshold(currentRoundTally, config.getMinimumVoteThreshold()); } else { BigDecimal lastRoundThreshold = roundTallies.get(currentRound - 1).getWinningThreshold(); - currentRoundTally.setWinningThreshold(lastRoundThreshold); + setWinningThreshold(currentRound, lastRoundThreshold); } // "invert" map and look for winners @@ -323,19 +331,19 @@ private void updateWinnerTallies() { : previousRoundTally.getCandidateTally(winner)); } - // initialize or populate precinct tallies - if (config.isTabulateByPrecinctEnabled()) { - // this is all the tallies for the given precinct - for (var roundTalliesForPrecinct : precinctRoundTallies.values()) { - // and this is the tally for the current round for the precinct - RoundTally roundTallyForPrecinct = roundTalliesForPrecinct.get(currentRound); - roundTallyForPrecinct.unlockForSurplusCalculation(); + // initialize or populate tabulate-by slice tallies + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + // this is all the tallies for the given slice + for (var roundTalliesForSlice : roundTalliesBySlices.get(slice).values()) { + // and this is the tally for the current round for the slice + RoundTally roundTallyForSlice = roundTalliesForSlice.get(currentRound); + roundTallyForSlice.unlockForSurplusCalculation(); for (String winner : winnersToProcess) { - roundTallyForPrecinct.setCandidateTallyViaSurplusAdjustment( + roundTallyForSlice.setCandidateTallyViaSurplusAdjustment( winner, winnersRequiringComputation.contains(winner) ? BigDecimal.ZERO - : roundTalliesForPrecinct.get(currentRound - 1).getCandidateTally(winner)); + : roundTalliesForSlice.get(currentRound - 1).getCandidateTally(winner)); } } } @@ -354,20 +362,24 @@ private void updateWinnerTallies() { BigDecimal fractionalTransferValue = entry.getValue(); roundTally.addToCandidateTallyViaSurplusAdjustment(winner, fractionalTransferValue); - if (config.isTabulateByPrecinctEnabled() && cvr.getPrecinct() != null) { - Map precinctTally = precinctRoundTallies.get(cvr.getPrecinct()); - RoundTally precinctRoundTally = precinctTally.get(currentRound); - precinctRoundTally.addToCandidateTallyViaSurplusAdjustment( - winner, fractionalTransferValue); + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + String sliceId = cvr.getSlice(slice); + if (sliceId != null) { + var roundTalliesForSlice = roundTalliesBySlices.get(slice); + RoundTallies sliceTallies = roundTalliesForSlice.get(sliceId); + RoundTally sliceRoundTally = sliceTallies.get(currentRound); + sliceRoundTally.addToCandidateTallyViaSurplusAdjustment( + winner, fractionalTransferValue); + } } } } - // Re-lock all precinct tabulations - if (config.isTabulateByPrecinctEnabled()) { - for (var roundTalliesForPrecinct : precinctRoundTallies.values()) { - RoundTally roundTallyForPrecinct = roundTalliesForPrecinct.get(currentRound); - roundTallyForPrecinct.relockAfterSurplusCalculation(); + // Re-lock all by-slice tabulations + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + for (var roundTalliesForSlice : roundTalliesBySlices.get(slice).values()) { + RoundTally roundTallyForSlice = roundTalliesForSlice.get(currentRound); + roundTallyForSlice.relockAfterSurplusCalculation(); } } @@ -394,7 +406,8 @@ private void updateWinnerTallies() { } // determine and store the threshold to win - private void setWinningThreshold(RoundTally currentRoundTally, BigDecimal minimumVoteThreshold) { + private void calculateAndSetWinningThreshold( + RoundTally currentRoundTally, BigDecimal minimumVoteThreshold) { BigDecimal currentRoundTotalVotes = currentRoundTally.activeBallotSum(); BigDecimal winningThreshold; @@ -441,7 +454,22 @@ private void setWinningThreshold(RoundTally currentRoundTally, BigDecimal minimu winningThreshold = minimumVoteThreshold; } + if (currentRoundTally != roundTallies.get(currentRoundTally.getRoundNumber())) { + throw new RuntimeException("RoundTally object is not the same as the one in the map."); + } + setWinningThreshold(currentRoundTally.getRoundNumber(), winningThreshold); + } + + private void setWinningThreshold(int roundNumber, BigDecimal winningThreshold) { + RoundTally currentRoundTally = roundTallies.get(roundNumber); currentRoundTally.setWinningThreshold(winningThreshold); + + // Do the same for each slice + for (TabulateBySlice slice : config.enabledSlices()) { + for (var roundTalliesForSlice : roundTalliesBySlices.get(slice).values()) { + roundTalliesForSlice.get(roundNumber).setWinningThreshold(winningThreshold); + } + } Logger.info("Winning threshold set to %s.", winningThreshold); } @@ -770,14 +798,11 @@ void generateSummaryFiles(String timestamp) throws IOException { .setWinnerToRound(winnerToRound) .setContestConfig(config) .setTimestampString(timestamp) - .setPrecinctIds(precinctIds) + .setSliceIds(sliceIds) .setRoundToResidualSurplus(roundToResidualSurplus); writer.generateOverallSummaryFiles(roundTallies, tallyTransfers); - - if (config.isTabulateByPrecinctEnabled()) { - writer.generatePrecinctSummaryFiles(precinctRoundTallies, precinctTallyTransfers); - } + writer.generateBySliceSummaryFiles(roundTalliesBySlices, tallyTransfersBySlice); if (config.isGenerateCdfJsonEnabled()) { try { @@ -789,8 +814,8 @@ void generateSummaryFiles(String timestamp) throws IOException { } } - Set getPrecinctIds() throws IOException { - return precinctIds; + SliceIdSet getEnabledSliceIds() { + return sliceIds; } // Function: runBatchElimination @@ -944,16 +969,16 @@ private void recordSelectionForCastVoteRecord( cvr.getCurrentRecipientOfVote(), selectedCandidate, cvr.getFractionalTransferValue()); - if (config.isTabulateByPrecinctEnabled()) { - String precinctId = cvr.getPrecinct(); - TallyTransfers precinctTallyTransfer = precinctTallyTransfers.get(precinctId); - if (precinctTallyTransfer == null) { + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + String sliceId = cvr.getSlice(slice); + TallyTransfers tallyTransferForSlice = tallyTransfersBySlice.get(slice, sliceId); + if (tallyTransferForSlice == null) { Logger.severe( - "Precinct \"%s\" is not among the %d known precincts.", - precinctId, precinctIds.size()); + "%s \"%s\" is not among the %d known %s.", + slice, sliceId, sliceIds.size(slice), slice); throw new TabulationAbortedException(false); } - precinctTallyTransfer.addTransfer( + tallyTransferForSlice.addTransfer( currentRoundTally.getRoundNumber(), cvr.getCurrentRecipientOfVote(), selectedCandidate, @@ -1004,10 +1029,10 @@ private void recordSelectionForCastVoteRecord( // returns a map of candidate ID to vote tallies for this round private RoundTally computeTalliesForRound(int currentRound) throws TabulationAbortedException { RoundTally roundTally = getNewTally(currentRound); - Map roundTallyByPrecinct = new HashMap<>(); - if (config.isTabulateByPrecinctEnabled()) { - for (String precinct : precinctRoundTallies.keySet()) { - roundTallyByPrecinct.put(precinct, getNewTally(currentRound)); + BreakdownBySlice roundTallyBySlice = new BreakdownBySlice(); + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + for (String sliceId : roundTalliesBySlices.get(slice).keySet()) { + roundTallyBySlice.initialize(slice, sliceId, getNewTally(currentRound)); } } @@ -1030,10 +1055,9 @@ && isCandidateContinuing(cvr.getCurrentRecipientOfVote())) { // current candidate is continuing so rollover their vote into the current round incrementTallies( roundTally, - cvr.getFractionalTransferValue(), + cvr, cvr.getCurrentRecipientOfVote(), - roundTallyByPrecinct, - cvr.getPrecinct()); + roundTallyBySlice); continue; } @@ -1128,13 +1152,8 @@ && isCandidateContinuing(cvr.getCurrentRecipientOfVote())) { recordSelectionForCastVoteRecord( cvr, roundTally, selectedCandidate, StatusForRound.ACTIVE, ""); - // If enabled, this will also update the roundTallyByPrecinct - incrementTallies( - roundTally, - cvr.getFractionalTransferValue(), - selectedCandidate, - roundTallyByPrecinct, - cvr.getPrecinct()); + // This will also update the roundTallyBySlice for each enabled slice + incrementTallies(roundTally, cvr, selectedCandidate, roundTallyBySlice); // There can be at most one continuing candidate in candidates; if there were more than // one, we would have already flagged this as an overvote. @@ -1167,13 +1186,13 @@ && isCandidateContinuing(cvr.getCurrentRecipientOfVote())) { } // end looping over the rankings within one ballot } // end looping over all ballots - // Take the tallies for this round for each precinct and merge them into the main map tracking - // the tallies by precinct. - if (config.isTabulateByPrecinctEnabled()) { - for (var entry : roundTallyByPrecinct.entrySet()) { - Map roundTalliesForPrecinct = precinctRoundTallies.get(entry.getKey()); - roundTalliesForPrecinct.put(currentRound, entry.getValue()); - roundTalliesForPrecinct.get(currentRound).lockInRound(); + // Take the tallies for this round for each slice and merge them into the main map tracking + // the tallies by each enabled slice. + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + for (var entry : roundTallyBySlice.get(slice).entrySet()) { + RoundTallies roundTalliesForSlice = roundTalliesBySlices.get(slice).get(entry.getKey()); + roundTalliesForSlice.put(currentRound, entry.getValue()); + roundTalliesForSlice.get(currentRound).lockInRound(); } } roundTally.lockInRound(); @@ -1186,29 +1205,30 @@ private RoundTally getNewTally(int roundNumber) { return new RoundTally(roundNumber, candidateNames.stream().filter(this::isCandidateContinuing)); } - // transfer vote to round tally and (if valid) the precinct round tally - private void incrementTallies( - RoundTally roundTally, - BigDecimal fractionalTransferValue, - String selectedCandidate, - Map roundTallyByPrecinct, - String precinct) { + // transfer vote to round tally and (if valid) the by-slice round tally + private void incrementTallies(RoundTally roundTally, CastVoteRecord cvr, + String selectedCandidate, BreakdownBySlice roundTalliesBySlices) { + BigDecimal fractionalTransferValue = cvr.getFractionalTransferValue(); roundTally.addToCandidateTally(selectedCandidate, fractionalTransferValue); - if (config.isTabulateByPrecinctEnabled() && !isNullOrBlank(precinct)) { - roundTallyByPrecinct - .get(precinct) - .addToCandidateTally(selectedCandidate, fractionalTransferValue); + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + String sliceId = cvr.getSlice(slice); + if (!isNullOrBlank(sliceId)) { + roundTalliesBySlices.get(slice, sliceId) + .addToCandidateTally(selectedCandidate, fractionalTransferValue); + } } } - private void initPrecinctRoundTallies() throws TabulationAbortedException { - for (String precinctId : precinctIds) { - if (isNullOrBlank(precinctId)) { - Logger.severe("Null precinct found in precinct list: %s", precinctIds); + private void initTabulateBySliceRoundTallies(ContestConfig.TabulateBySlice slice) + throws TabulationAbortedException { + for (String sliceId : sliceIds.get(slice)) { + if (isNullOrBlank(sliceId)) { + Logger.severe("Null %s found in %s list: %s", slice, slice, sliceId); throw new TabulationAbortedException(false); } - precinctRoundTallies.put(precinctId, new HashMap<>()); - precinctTallyTransfers.put(precinctId, new TallyTransfers()); + roundTalliesBySlices.initialize(slice, sliceId, new RoundTallies()); + tallyTransfersBySlice.initialize(slice, sliceId, new TallyTransfers()); + } } @@ -1334,6 +1354,73 @@ enum CandidateStatus { EXCLUDED, } + /** + * A wrapper around Map<Integer, RoundTally> + * A mapping between a round number and that round's corresponding RoundTally. + */ + static class RoundTallies { + private final Map roundTallies = new HashMap<>(); + + public void put(Integer roundNumber, RoundTally roundTally) { + roundTallies.put(roundNumber, roundTally); + } + + public RoundTally get(Integer roundNumber) { + return roundTallies.get(roundNumber); + } + } + + /** + * A wrapper around Map<TabulateBySlice, Map<String, T>> + * Breaks down the templated type T by a specific slice. + * The slice type is the outer map (TabulateBySlice), and the slice ID is the inner map (String). + */ + static class BreakdownBySlice { + private final Map> breakdownBySlice + = new HashMap<>(); + + public T initialize(ContestConfig.TabulateBySlice slice, String sliceId, T t) { + return breakdownBySlice.computeIfAbsent(slice, k -> new HashMap<>()).put(sliceId, t); + } + + public Map get(ContestConfig.TabulateBySlice slice) { + return breakdownBySlice.get(slice); + } + + public T get(ContestConfig.TabulateBySlice slice, String sliceId) { + return get(slice).get(sliceId); + } + } + + /** + * A wrapper around Map<TabulateBySlice, Set<String>> + * Maps a TabulateBySlice to the set of corresponding slice IDs. + */ + static class SliceIdSet { + private final Map> sliceIds = new HashMap<>(); + + public void initialize(ContestConfig.TabulateBySlice slice) { + sliceIds.put(slice, new HashSet<>()); + } + + public void add(TabulateBySlice slice, String sliceId) { + sliceIds.get(slice).add(sliceId); + } + + public boolean isEmpty(ContestConfig.TabulateBySlice slice) { + return sliceIds.get(slice).isEmpty(); + } + + // Add an enumerator for each Set of a given slice + public Set get(ContestConfig.TabulateBySlice slice) { + return sliceIds.get(slice); + } + + public int size(ContestConfig.TabulateBySlice slice) { + return sliceIds.get(slice).size(); + } + } + /** * Container class used during batch elimination to store the results for later logging output. * diff --git a/src/main/java/network/brightspots/rcv/TabulatorSession.java b/src/main/java/network/brightspots/rcv/TabulatorSession.java index c1e5ee006..982398eb3 100644 --- a/src/main/java/network/brightspots/rcv/TabulatorSession.java +++ b/src/main/java/network/brightspots/rcv/TabulatorSession.java @@ -29,6 +29,7 @@ import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; +import java.util.HashSet; import java.util.LinkedList; import java.util.List; import java.util.Map; @@ -109,12 +110,12 @@ boolean convertToCdf() { if (!castVoteRecords.successfullyReadAll) { Logger.severe("Aborting conversion due to cast vote record errors!"); } else { - Set precinctIds = new Tabulator( - castVoteRecords.getCvrs(), config).getPrecinctIds(); + Tabulator.SliceIdSet sliceIds = + new Tabulator(castVoteRecords.getCvrs(), config).getEnabledSliceIds(); ResultsWriter writer = new ResultsWriter() .setNumRounds(0) - .setPrecinctIds(precinctIds) + .setSliceIds(sliceIds) .setContestConfig(config) .setTimestampString(timestampString); writer.generateCdfJson(castVoteRecords.getCvrs()); @@ -191,7 +192,7 @@ List tabulate(String operatorName, LoadedCvrData expectedCvrData) { while (config.getSequentialWinners().size() < numWinners) { Logger.info( "Beginning tabulation for seat #%d...", config.getSequentialWinners().size() + 1); - // Read cast vote records and precinct IDs from CVR files + // Read cast vote records and slice IDs from CVR files LoadedCvrData castVoteRecords = parseCastVoteRecords(config); if (config.getSequentialWinners().isEmpty() && !castVoteRecords.metadataMatches(expectedCvrData)) { @@ -235,7 +236,7 @@ List tabulate(String operatorName, LoadedCvrData expectedCvrData) { tabulationSuccess = true; } else { // normal operation (not multi-pass IRV, a.k.a. sequential multi-seat) - // Read cast vote records and precinct IDs from CVR files + // Read cast vote records and slice IDs from CVR files LoadedCvrData castVoteRecords = parseCastVoteRecords(config); if (!castVoteRecords.metadataMatches(expectedCvrData)) { Logger.severe("CVR Data has changed between loading the CVRs and reading them!"); @@ -263,6 +264,15 @@ List tabulate(String operatorName, LoadedCvrData expectedCvrData) { return exceptionsEncountered; } + Set loadSliceNamesFromCvrs(ContestConfig.TabulateBySlice slice, ContestConfig config) { + LoadedCvrData castVoteRecords = parseCastVoteRecords(config); + try { + return new Tabulator(castVoteRecords.getCvrs(), config).getEnabledSliceIds().get(slice); + } catch (TabulationAbortedException e) { + throw new RuntimeException(e); + } + } + private boolean setUpLogging(String outputDirectory) { boolean success = false; // cache outputPath for testing diff --git a/src/main/java/network/brightspots/rcv/Tiebreak.java b/src/main/java/network/brightspots/rcv/Tiebreak.java index 8c73f352c..0a169b369 100644 --- a/src/main/java/network/brightspots/rcv/Tiebreak.java +++ b/src/main/java/network/brightspots/rcv/Tiebreak.java @@ -40,6 +40,7 @@ import javafx.scene.Scene; import javafx.stage.Modality; import javafx.stage.Stage; +import network.brightspots.rcv.Tabulator.RoundTallies; import network.brightspots.rcv.Tabulator.TabulationAbortedException; import network.brightspots.rcv.Tabulator.TiebreakMode; @@ -56,7 +57,7 @@ class Tiebreak { private final BigDecimal numVotes; // roundTallies: map from round number to map of candidate ID to vote total (for that round) // e.g. roundTallies[1] contains a map of candidate IDs to tallies for each candidate in round 1 - private final Map roundTallies; + private final RoundTallies roundTallies; private final boolean isSelectingWinner; private String selectedCandidate; private String explanation; @@ -74,7 +75,7 @@ class Tiebreak { TiebreakMode tiebreakMode, int round, BigDecimal numVotes, - Map roundTallies, + RoundTallies roundTallies, ArrayList candidatePermutation) { this.isSelectingWinner = isSelectingWinner; this.allTiedCandidates = allTiedCandidates; diff --git a/src/main/resources/network/brightspots/rcv/GuiConfigLayout.fxml b/src/main/resources/network/brightspots/rcv/GuiConfigLayout.fxml index 75abc16f9..6a5d10093 100644 --- a/src/main/resources/network/brightspots/rcv/GuiConfigLayout.fxml +++ b/src/main/resources/network/brightspots/rcv/GuiConfigLayout.fxml @@ -181,6 +181,14 @@ + + @@ -273,6 +281,9 @@ + @@ -664,6 +675,17 @@ + + + + + + + + + + diff --git a/src/test/java/network/brightspots/rcv/TabulatorTests.java b/src/test/java/network/brightspots/rcv/TabulatorTests.java index 1fcfae956..ee5c70fe0 100644 --- a/src/test/java/network/brightspots/rcv/TabulatorTests.java +++ b/src/test/java/network/brightspots/rcv/TabulatorTests.java @@ -18,6 +18,7 @@ package network.brightspots.rcv; +import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; @@ -193,11 +194,20 @@ private static String getTestFilePath(String stem, String suffix) { } private static void runTabulationTest(String testStem) { - runTabulationTest(testStem, null); + runTabulationTest(testStem, null, 0); + } + + private static void runTabulationTest(String testStem, int expectedNumSliceFilesToCheck) { + runTabulationTest(testStem, null, expectedNumSliceFilesToCheck); + } + + private static void runTabulationTest(String testStem, String expectedException) { + runTabulationTest(testStem, expectedException, 0); } // helper function to support running various tabulation tests - private static void runTabulationTest(String stem, String expectedException) { + private static void runTabulationTest(String stem, String expectedException, + int expectedNumSliceFilesToCheck) { String configPath = getTestFilePath(stem, "_config.json"); Logger.info("Running tabulation test: %s\nTabulating config file: %s...", stem, configPath); @@ -220,6 +230,21 @@ private static void runTabulationTest(String stem, String expectedException) { compareFiles(config, stem, timestampString, null); } + int numSlicedFilesChecked = 0; + for (ContestConfig.TabulateBySlice slice : config.enabledSlices()) { + for (String sliceName : session.loadSliceNamesFromCvrs(slice, config)) { + String outputType = ResultsWriter.sanitizeStringForOutput( + String.format("%s_%s_summary", sliceName, slice.toLowerString())); + if (compareFiles(config, stem, outputType, ".json", timestampString, null, true)) { + numSlicedFilesChecked++; + } + if (compareFiles(config, stem, outputType, ".csv", timestampString, null, true)) { + numSlicedFilesChecked++; + } + } + } + assertEquals(expectedNumSliceFilesToCheck, numSlicedFilesChecked); + cleanOutputFolder(session); } } @@ -232,7 +257,7 @@ private static void runConvertToCdfTest(String stem) { String timestampString = session.getTimestampString(); ContestConfig config = ContestConfig.loadContestConfig(configPath); - compareFiles(config, stem, "cvr_cdf", ".json", timestampString, null); + compareFiles(config, stem, "cvr_cdf", ".json", timestampString, null, false); cleanOutputFolder(session); } @@ -297,20 +322,25 @@ private static void cleanOutputFolder(TabulatorSession session) { private static void compareFiles( ContestConfig config, String stem, String timestampString, String sequentialId) { - compareFiles(config, stem, "summary", ".json", timestampString, sequentialId); - compareFiles(config, stem, "summary", ".csv", timestampString, sequentialId); + compareFiles(config, stem, "summary", ".json", timestampString, sequentialId, false); + compareFiles(config, stem, "summary", ".csv", timestampString, sequentialId, false); if (config.isGenerateCdfJsonEnabled()) { - compareFiles(config, stem, "cvr_cdf", ".json", timestampString, sequentialId); + compareFiles(config, stem, "cvr_cdf", ".json", timestampString, sequentialId, false); } } - private static void compareFiles( + /** + * Returns whether the files were compared at all. + * If they were compared and not equal, the test will fail. + */ + private static boolean compareFiles( ContestConfig config, String stem, String outputType, String extension, String timestampString, - String sequentialId) { + String sequentialId, + boolean onlyCheckIfExpectedFileExists) { String actualOutputPath = ResultsWriter.getOutputFilePath( config.getOutputDirectory(), outputType, timestampString, sequentialId) @@ -324,12 +354,17 @@ private static void compareFiles( + extension); Logger.info("Comparing files:\nGenerated: %s\nReference: %s", actualOutputPath, expectedPath); - if (fileCompare(expectedPath, actualOutputPath)) { + boolean didCompare = true; + if (onlyCheckIfExpectedFileExists && !new File(expectedPath).exists()) { + didCompare = false; + Logger.info("Skipping comparison: expected file does not exist."); + } else if (fileCompare(expectedPath, actualOutputPath)) { Logger.info("Files are equal."); } else { Logger.info("Files are different."); fail(); } + return didCompare; } @BeforeAll @@ -537,13 +572,13 @@ void testContinueUntilTwoCandidatesRemainWithBatchElimination() { @Test @DisplayName("2017 Minneapolis Mayor") void test2017MinneapolisMayor() { - runTabulationTest("2017_minneapolis_mayor"); + runTabulationTest("2017_minneapolis_mayor", 4); } @Test @DisplayName("2013 Minneapolis Mayor") void test2013MinneapolisMayor() { - runTabulationTest("2013_minneapolis_mayor"); + runTabulationTest("2013_minneapolis_mayor", 4); } @Test @@ -625,15 +660,21 @@ void testAllowOnlyOneWinnerPerRound() { } @Test - @DisplayName("precinct example") + @DisplayName("tabulate by precinct") void precinctExample() { - runTabulationTest("precinct_example"); + runTabulationTest("precinct_example", 2); + } + + @Test + @DisplayName("tabulate by batch") + void batchExample() { + runTabulationTest("batch_example"); } @Test @DisplayName("missing precinct example") void missingPrecinctExample() { - runTabulationTest("missing_precinct_example"); + runTabulationTest("missing_precinct_example", 4); } @Test diff --git a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv new file mode 100644 index 000000000..5424b8e68 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.csv @@ -0,0 +1,62 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,2013 Minneapolis Mayor +Jurisdiction,Minneapolis +Office,Mayor +Date, +Winner(s),BETSY HODGES +Final Threshold,31898 +Precinct,MINNEAPOLIS W-13 P-09 + +Contest Summary +Number to be Elected,1 +Number of Candidates,36 +Total Number of Ballots,985 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer,Round 7 Votes,% of vote,transfer,Round 8 Votes,% of vote,transfer,Round 9 Votes,% of vote,transfer,Round 10 Votes,% of vote,transfer,Round 11 Votes,% of vote,transfer,Round 12 Votes,% of vote,transfer,Round 13 Votes,% of vote,transfer,Round 14 Votes,% of vote,transfer,Round 15 Votes,% of vote,transfer,Round 16 Votes,% of vote,transfer,Round 17 Votes,% of vote,transfer,Round 18 Votes,% of vote,transfer,Round 19 Votes,% of vote,transfer,Round 20 Votes,% of vote,transfer,Round 21 Votes,% of vote,transfer,Round 22 Votes,% of vote,transfer,Round 23 Votes,% of vote,transfer,Round 24 Votes,% of vote,transfer,Round 25 Votes,% of vote,transfer,Round 26 Votes,% of vote,transfer,Round 27 Votes,% of vote,transfer,Round 28 Votes,% of vote,transfer,Round 29 Votes,% of vote,transfer,Round 30 Votes,% of vote,transfer,Round 31 Votes,% of vote,transfer,Round 32 Votes,% of vote,transfer,Round 33 Votes,% of vote,transfer +BETSY HODGES,359,36.44%,0,359,36.44%,0,359,36.44%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.48%,0,359,36.52%,0,359,36.52%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.59%,0,359,36.63%,2,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,36.87%,0,361,37.13%,0,361,37.13%,1,362,37.35%,2,364,37.6%,2,366,38.4%,23,389,41.33%,69,458,57.39%,0 +MARK ANDREW,272,27.61%,0,272,27.61%,0,272,27.61%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.64%,0,272,27.67%,0,272,27.67%,0,272,27.72%,0,272,27.72%,0,272,27.72%,1,273,27.82%,1,274,27.93%,0,274,27.93%,0,274,27.93%,0,274,27.93%,0,274,27.95%,1,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.08%,0,275,28.29%,0,275,28.29%,2,277,28.58%,3,280,28.92%,4,284,29.8%,18,302,32.09%,38,340,42.6%,0 +CAM WINTON,150,15.22%,0,150,15.22%,0,150,15.22%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.24%,0,150,15.25%,0,150,15.25%,1,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.39%,0,151,15.4%,0,151,15.42%,1,152,15.52%,1,153,15.62%,0,153,15.62%,0,153,15.62%,0,153,15.62%,2,155,15.94%,1,156,16.04%,1,157,16.2%,1,158,16.32%,8,166,17.41%,6,172,18.27%,-172,0,0.0%,0 +DON SAMUELS,69,7.0%,0,69,7.0%,0,69,7.0%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.01%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.03%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.04%,0,69,7.09%,0,69,7.09%,0,69,7.12%,2,71,7.33%,0,71,7.45%,7,78,8.28%,-78,0,0.0%,0 +JACKIE CHERRYHOMES,38,3.85%,0,38,3.85%,0,38,3.85%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.86%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.87%,0,38,3.88%,0,38,3.88%,0,38,3.88%,0,38,3.88%,0,38,3.88%,1,39,3.98%,0,39,4.01%,0,39,4.01%,0,39,4.02%,0,39,4.02%,0,39,4.09%,-39,0,0.0%,0,0,0.0%,0 +BOB FINE,26,2.63%,0,26,2.63%,0,26,2.63%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.64%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.67%,0,26,2.67%,0,26,2.68%,0,26,2.68%,1,27,2.83%,-27,0,0.0%,0,0,0.0%,0 +DAN COHEN,25,2.53%,0,25,2.53%,0,25,2.53%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.54%,0,25,2.55%,0,25,2.55%,1,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,0,26,2.65%,2,28,2.88%,2,30,3.08%,0,30,3.09%,0,30,3.09%,-30,0,0.0%,0,0,0.0%,0,0,0.0%,0 +STEPHANIE WOODRUFF,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,1,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.92%,0,9,0.92%,0,9,0.92%,-9,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +OLE SAVIOR,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,0,8,0.81%,1,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,0,9,0.91%,2,11,1.12%,0,11,1.12%,0,11,1.12%,0,11,1.12%,0,11,1.12%,-11,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MARK V ANDERSON,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,0,5,0.5%,1,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,1,7,0.71%,0,7,0.71%,0,7,0.71%,0,7,0.71%,0,7,0.71%,0,7,0.72%,0,7,0.72%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CHRISTOPHER ROBIN ZIMMERMAN,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TONY LANE,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,1,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,0,4,0.4%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +DOUG MANN,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MERRILL ANDERSON,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,0,3,0.3%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CHRISTOPHER CLARK,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,4,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,0,6,0.61%,-6,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TROY BENJEGERDES,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JEFFREY ALAN WAGNER,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,0,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAMES EVERETT,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +BILL KAHN,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CYD GORMAN,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOHN LESLIE HARTWIG,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAYMIE KELLY,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CAPTAIN JACK SPARROW,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +KURTIS W. HANNA,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ABDUL M RAHAMAN THE ROCK,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +EDMUND BERNARD BRUYERE,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +RAHN V. WORKCUFF,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +GREGG A. IVERSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +NEAL BAXTER,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +BOB AGAIN CARNEY JR,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ALICIA K. BENNETT,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MIKE GOULD,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOHN CHARLES WILSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOSHUA REA,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +"JAMES JIMMY L. STROUD, JR.",0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,985,,,985,,,985,,,984,,,984,,,984,,,984,,,984,,,984,,,983,,,983,,,981,,,981,,,981,,,981,,,981,,,981,,,981,,,981,,,980,,,979,,,979,,,979,,,979,,,979,,,979,,,972,,,972,,,969,,,968,,,953,,,941,,,798,, +Current Round Threshold,39657,,,39638,,,39635,,,39633,,,39627,,,39622,,,39614,,,39608,,,39599,,,39583,,,39568,,,39552,,,39533,,,39522,,,39502,,,39477,,,39462,,,39450,,,39414,,,39387,,,39359,,,39309,,,39247,,,39112,,,39041,,,38981,,,38726,,,38541,,,38312,,,38162,,,37796,,,36810,,,31898,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.json new file mode 100644 index 000000000..32d1571ed --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-09_precinct_summary.json @@ -0,0 +1,1256 @@ +{ + "config" : { + "contest" : "2013 Minneapolis Mayor", + "date" : "", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis", + "office" : "Mayor", + "precinct" : "MINNEAPOLIS W-13 P-09" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "CYD GORMAN" : "1", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN CHARLES WILSON" : "0", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2", + "Undeclared Write-ins" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Undeclared Write-ins", + "transfers" : { } + } ], + "threshold" : "39657" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "CYD GORMAN" : "1", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN CHARLES WILSON" : "0", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "JOHN CHARLES WILSON", + "transfers" : { } + } ], + "threshold" : "39638" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "CYD GORMAN" : "1", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "CYD GORMAN", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "39635" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "BOB AGAIN CARNEY JR", + "transfers" : { } + } ], + "threshold" : "39633" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 5, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "RAHN V. WORKCUFF", + "transfers" : { } + } ], + "threshold" : "39627" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 6, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "JAMES JIMMY L. STROUD, JR.", + "transfers" : { } + } ], + "threshold" : "39622" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 7, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "EDMUND BERNARD BRUYERE" : "0", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "EDMUND BERNARD BRUYERE", + "transfers" : { } + } ], + "threshold" : "39614" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 8, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "8", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "JOHN LESLIE HARTWIG", + "transfers" : { + "OLE SAVIOR" : "1" + } + } ], + "threshold" : "39608" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 9, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BILL KAHN" : "1", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "BILL KAHN", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "39599" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 10, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "JOSHUA REA" : "0", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "JOSHUA REA", + "transfers" : { } + } ], + "threshold" : "39583" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 11, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "150", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MERRILL ANDERSON" : "3", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "MERRILL ANDERSON", + "transfers" : { + "CAM WINTON" : "1", + "exhausted" : "2" + } + } ], + "threshold" : "39568" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 12, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "GREGG A. IVERSON" : "0", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "GREGG A. IVERSON", + "transfers" : { } + } ], + "threshold" : "39552" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 13, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "3", + "TROY BENJEGERDES" : "2" + }, + "tallyResults" : [ { + "eliminated" : "TROY BENJEGERDES", + "transfers" : { + "NEAL BAXTER" : "1", + "TONY LANE" : "1" + } + } ], + "threshold" : "39533" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 14, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "272", + "MARK V ANDERSON" : "5", + "MIKE GOULD" : "0", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "NEAL BAXTER", + "transfers" : { + "MARK ANDREW" : "1" + } + } ], + "threshold" : "39522" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 15, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "JEFFREY ALAN WAGNER" : "2", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "273", + "MARK V ANDERSON" : "5", + "MIKE GOULD" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "JEFFREY ALAN WAGNER", + "transfers" : { + "MARK ANDREW" : "1", + "MARK V ANDERSON" : "1" + } + } ], + "threshold" : "39502" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 16, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "2", + "CHRISTOPHER ROBIN ZIMMERMAN" : "4", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "274", + "MARK V ANDERSON" : "6", + "MIKE GOULD" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "CHRISTOPHER ROBIN ZIMMERMAN", + "transfers" : { + "CHRISTOPHER CLARK" : "4" + } + } ], + "threshold" : "39477" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 17, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "6", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "KURTIS W. HANNA" : "0", + "MARK ANDREW" : "274", + "MARK V ANDERSON" : "6", + "MIKE GOULD" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "KURTIS W. HANNA", + "transfers" : { } + } ], + "threshold" : "39462" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 18, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "6", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "MARK ANDREW" : "274", + "MARK V ANDERSON" : "6", + "MIKE GOULD" : "0", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "MIKE GOULD", + "transfers" : { } + } ], + "threshold" : "39450" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 19, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "6", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "JAYMIE KELLY" : "1", + "MARK ANDREW" : "274", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "JAYMIE KELLY", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "39414" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 20, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "359", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "6", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "MARK ANDREW" : "274", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8", + "TONY LANE" : "4" + }, + "tallyResults" : [ { + "eliminated" : "TONY LANE", + "transfers" : { + "BETSY HODGES" : "2", + "MARK ANDREW" : "1", + "exhausted" : "1" + } + } ], + "threshold" : "39387" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 21, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "151", + "CAPTAIN JACK SPARROW" : "1", + "CHRISTOPHER CLARK" : "6", + "DAN COHEN" : "25", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "9", + "STEPHANIE WOODRUFF" : "8" + }, + "tallyResults" : [ { + "eliminated" : "CHRISTOPHER CLARK", + "transfers" : { + "CAM WINTON" : "1", + "DAN COHEN" : "1", + "MARK V ANDERSON" : "1", + "OLE SAVIOR" : "2", + "STEPHANIE WOODRUFF" : "1" + } + } ], + "threshold" : "39359" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 22, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "152", + "CAPTAIN JACK SPARROW" : "1", + "DAN COHEN" : "26", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "OLE SAVIOR" : "11", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "CAPTAIN JACK SPARROW", + "transfers" : { + "CAM WINTON" : "1" + } + } ], + "threshold" : "39309" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 23, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "0", + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "153", + "DAN COHEN" : "26", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "OLE SAVIOR" : "11", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "ABDUL M RAHAMAN THE ROCK", + "transfers" : { } + } ], + "threshold" : "39247" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 24, + "tally" : { + "ALICIA K. BENNETT" : "0", + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "153", + "DAN COHEN" : "26", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "OLE SAVIOR" : "11", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "ALICIA K. BENNETT", + "transfers" : { } + } ], + "threshold" : "39112" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 25, + "tally" : { + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "153", + "DAN COHEN" : "26", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "38", + "JAMES EVERETT" : "1", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "OLE SAVIOR" : "11", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "JAMES EVERETT", + "transfers" : { + "JACKIE CHERRYHOMES" : "1" + } + } ], + "threshold" : "39041" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 26, + "tally" : { + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "153", + "DAN COHEN" : "26", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "39", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "OLE SAVIOR" : "11", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "OLE SAVIOR", + "transfers" : { + "CAM WINTON" : "2", + "DAN COHEN" : "2", + "exhausted" : "7" + } + } ], + "threshold" : "38981" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 27, + "tally" : { + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "155", + "DAN COHEN" : "28", + "DON SAMUELS" : "69", + "DOUG MANN" : "3", + "JACKIE CHERRYHOMES" : "39", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "DOUG MANN", + "transfers" : { + "CAM WINTON" : "1", + "DAN COHEN" : "2" + } + } ], + "threshold" : "38726" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 28, + "tally" : { + "BETSY HODGES" : "361", + "BOB FINE" : "26", + "CAM WINTON" : "156", + "DAN COHEN" : "30", + "DON SAMUELS" : "69", + "JACKIE CHERRYHOMES" : "39", + "MARK ANDREW" : "275", + "MARK V ANDERSON" : "7", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "MARK V ANDERSON", + "transfers" : { + "BETSY HODGES" : "1", + "CAM WINTON" : "1", + "MARK ANDREW" : "2", + "exhausted" : "3" + } + } ], + "threshold" : "38541" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 29, + "tally" : { + "BETSY HODGES" : "362", + "BOB FINE" : "26", + "CAM WINTON" : "157", + "DAN COHEN" : "30", + "DON SAMUELS" : "69", + "JACKIE CHERRYHOMES" : "39", + "MARK ANDREW" : "277", + "STEPHANIE WOODRUFF" : "9" + }, + "tallyResults" : [ { + "eliminated" : "STEPHANIE WOODRUFF", + "transfers" : { + "BETSY HODGES" : "2", + "CAM WINTON" : "1", + "DON SAMUELS" : "2", + "MARK ANDREW" : "3", + "exhausted" : "1" + } + } ], + "threshold" : "38312" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 30, + "tally" : { + "BETSY HODGES" : "364", + "BOB FINE" : "26", + "CAM WINTON" : "158", + "DAN COHEN" : "30", + "DON SAMUELS" : "71", + "JACKIE CHERRYHOMES" : "39", + "MARK ANDREW" : "280" + }, + "tallyResults" : [ { + "eliminated" : "DAN COHEN", + "transfers" : { + "BETSY HODGES" : "2", + "BOB FINE" : "1", + "CAM WINTON" : "8", + "MARK ANDREW" : "4", + "exhausted" : "15" + } + } ], + "threshold" : "38162" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 31, + "tally" : { + "BETSY HODGES" : "366", + "BOB FINE" : "27", + "CAM WINTON" : "166", + "DON SAMUELS" : "71", + "JACKIE CHERRYHOMES" : "39", + "MARK ANDREW" : "284" + }, + "tallyResults" : [ { + "eliminated" : "JACKIE CHERRYHOMES", + "transfers" : { + "BETSY HODGES" : "16", + "CAM WINTON" : "1", + "DON SAMUELS" : "5", + "MARK ANDREW" : "8", + "exhausted" : "9" + } + }, { + "eliminated" : "BOB FINE", + "transfers" : { + "BETSY HODGES" : "7", + "CAM WINTON" : "5", + "DON SAMUELS" : "2", + "MARK ANDREW" : "10", + "exhausted" : "3" + } + } ], + "threshold" : "37796" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 32, + "tally" : { + "BETSY HODGES" : "389", + "CAM WINTON" : "172", + "DON SAMUELS" : "78", + "MARK ANDREW" : "302" + }, + "tallyResults" : [ { + "eliminated" : "DON SAMUELS", + "transfers" : { + "BETSY HODGES" : "34", + "MARK ANDREW" : "21", + "exhausted" : "23" + } + }, { + "eliminated" : "CAM WINTON", + "transfers" : { + "BETSY HODGES" : "35", + "MARK ANDREW" : "17", + "exhausted" : "120" + } + } ], + "threshold" : "36810" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 33, + "tally" : { + "BETSY HODGES" : "458", + "MARK ANDREW" : "340" + }, + "tallyResults" : [ { + "elected" : "BETSY HODGES", + "transfers" : { } + } ], + "threshold" : "31898" + } ], + "summary" : { + "finalThreshold" : "31898", + "numCandidates" : 36, + "numWinners" : 1, + "totalNumBallots" : "985", + "undervotes" : 0 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv new file mode 100644 index 000000000..9eee8b8e8 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv @@ -0,0 +1,62 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,2013 Minneapolis Mayor +Jurisdiction,Minneapolis +Office,Mayor +Date, +Winner(s),BETSY HODGES +Final Threshold,31898 +Precinct,MINNEAPOLIS W-1 P-01 + +Contest Summary +Number to be Elected,1 +Number of Candidates,36 +Total Number of Ballots,517 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer,Round 7 Votes,% of vote,transfer,Round 8 Votes,% of vote,transfer,Round 9 Votes,% of vote,transfer,Round 10 Votes,% of vote,transfer,Round 11 Votes,% of vote,transfer,Round 12 Votes,% of vote,transfer,Round 13 Votes,% of vote,transfer,Round 14 Votes,% of vote,transfer,Round 15 Votes,% of vote,transfer,Round 16 Votes,% of vote,transfer,Round 17 Votes,% of vote,transfer,Round 18 Votes,% of vote,transfer,Round 19 Votes,% of vote,transfer,Round 20 Votes,% of vote,transfer,Round 21 Votes,% of vote,transfer,Round 22 Votes,% of vote,transfer,Round 23 Votes,% of vote,transfer,Round 24 Votes,% of vote,transfer,Round 25 Votes,% of vote,transfer,Round 26 Votes,% of vote,transfer,Round 27 Votes,% of vote,transfer,Round 28 Votes,% of vote,transfer,Round 29 Votes,% of vote,transfer,Round 30 Votes,% of vote,transfer,Round 31 Votes,% of vote,transfer,Round 32 Votes,% of vote,transfer,Round 33 Votes,% of vote,transfer +MARK ANDREW,160,30.94%,1,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.14%,0,161,31.2%,0,161,31.26%,0,161,31.26%,0,161,31.26%,2,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.71%,0,163,31.77%,1,164,32.09%,0,164,32.22%,0,164,32.6%,0,164,32.8%,0,164,33.19%,2,166,33.8%,1,167,34.71%,9,176,38.09%,15,191,50.66%,0 +BETSY HODGES,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.91%,0,134,25.96%,0,134,26.01%,0,134,26.01%,0,134,26.01%,0,134,26.07%,0,134,26.07%,0,134,26.07%,0,134,26.07%,1,135,26.26%,0,135,26.31%,0,135,26.41%,1,136,26.71%,0,136,27.03%,5,141,28.2%,1,142,28.74%,4,146,29.73%,4,150,31.18%,10,160,34.63%,26,186,49.33%,0 +DON SAMUELS,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.05%,0,52,10.07%,0,52,10.09%,0,52,10.09%,0,52,10.09%,0,52,10.11%,0,52,10.11%,0,52,10.11%,0,52,10.11%,0,52,10.11%,0,52,10.13%,0,52,10.17%,0,52,10.21%,0,52,10.33%,0,52,10.4%,0,52,10.52%,0,52,10.59%,2,54,11.22%,11,65,14.06%,-65,0,0.0%,0 +CAM WINTON,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.09%,0,47,9.1%,0,47,9.12%,1,48,9.32%,0,48,9.32%,0,48,9.33%,0,48,9.33%,0,48,9.33%,2,50,9.72%,0,50,9.72%,0,50,9.74%,0,50,9.78%,0,50,9.82%,0,50,9.94%,1,51,10.2%,0,51,10.32%,0,51,10.38%,2,53,11.01%,8,61,13.2%,-61,0,0.0%,0 +JACKIE CHERRYHOMES,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,0,26,5.02%,1,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.22%,0,27,5.23%,0,27,5.24%,0,27,5.24%,0,27,5.24%,0,27,5.25%,0,27,5.25%,0,27,5.25%,0,27,5.25%,0,27,5.25%,0,27,5.26%,0,27,5.28%,0,27,5.3%,1,28,5.56%,0,28,5.6%,0,28,5.66%,0,28,5.7%,1,29,6.02%,-29,0,0.0%,0,0,0.0%,0 +BOB FINE,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,0,23,4.44%,1,24,4.64%,0,24,4.64%,0,24,4.65%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.66%,0,24,4.67%,0,24,4.69%,0,24,4.71%,0,24,4.77%,0,24,4.8%,0,24,4.85%,3,27,5.49%,1,28,5.82%,-28,0,0.0%,0,0,0.0%,0 +DAN COHEN,16,3.09%,0,16,3.09%,1,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,0,17,3.28%,1,18,3.48%,0,18,3.48%,0,18,3.48%,0,18,3.48%,0,18,3.48%,0,18,3.49%,0,18,3.49%,0,18,3.49%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.5%,0,18,3.52%,0,18,3.53%,1,19,3.77%,0,19,3.8%,0,19,3.84%,2,21,4.27%,-21,0,0.0%,0,0,0.0%,0,0,0.0%,0 +STEPHANIE WOODRUFF,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.32%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,0,12,2.33%,1,13,2.54%,0,13,2.55%,0,13,2.58%,1,14,2.8%,0,14,2.83%,-14,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +OLE SAVIOR,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.93%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.94%,0,10,1.95%,0,10,1.96%,-10,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +DOUG MANN,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,0,6,1.16%,1,7,1.35%,0,7,1.36%,0,7,1.36%,0,7,1.36%,0,7,1.36%,1,8,1.55%,0,8,1.55%,0,8,1.56%,1,9,1.76%,1,10,1.98%,-10,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MIKE GOULD,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.96%,0,5,0.97%,0,5,0.97%,0,5,0.97%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CHRISTOPHER CLARK,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAMES EVERETT,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.78%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MARK V ANDERSON,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,2,5,0.97%,1,6,1.16%,0,6,1.16%,0,6,1.17%,0,6,1.17%,1,7,1.39%,0,7,1.4%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CAPTAIN JACK SPARROW,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,0,3,0.58%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ALICIA K. BENNETT,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,0,2,0.38%,2,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,0,4,0.77%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +KURTIS W. HANNA,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +ABDUL M RAHAMAN THE ROCK,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CHRISTOPHER ROBIN ZIMMERMAN,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +EDMUND BERNARD BRUYERE,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +GREGG A. IVERSON,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOHN LESLIE HARTWIG,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JEFFREY ALAN WAGNER,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOHN CHARLES WILSON,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JOSHUA REA,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TONY LANE,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +TROY BENJEGERDES,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +BILL KAHN,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +MERRILL ANDERSON,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +CYD GORMAN,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +RAHN V. WORKCUFF,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +JAYMIE KELLY,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +NEAL BAXTER,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,0,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +BOB AGAIN CARNEY JR,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +"JAMES JIMMY L. STROUD, JR.",0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,1,0.19%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,517,,,516,,,515,,,515,,,515,,,514,,,514,,,514,,,514,,,514,,,513,,,511,,,509,,,503,,,500,,,494,,,491,,,481,,,462,,,377,, +Current Round Threshold,39657,,,39638,,,39635,,,39633,,,39627,,,39622,,,39614,,,39608,,,39599,,,39583,,,39568,,,39552,,,39533,,,39522,,,39502,,,39477,,,39462,,,39450,,,39414,,,39387,,,39359,,,39309,,,39247,,,39112,,,39041,,,38981,,,38726,,,38541,,,38312,,,38162,,,37796,,,36810,,,31898,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.json new file mode 100644 index 000000000..9c20d44d7 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2013_minneapolis_mayor/2013_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.json @@ -0,0 +1,1266 @@ +{ + "config" : { + "contest" : "2013 Minneapolis Mayor", + "date" : "", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis", + "office" : "Mayor", + "precinct" : "MINNEAPOLIS W-1 P-01" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "CYD GORMAN" : "0", + "DAN COHEN" : "16", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN CHARLES WILSON" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "160", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0", + "Undeclared Write-ins" : "1" + }, + "tallyResults" : [ { + "eliminated" : "Undeclared Write-ins", + "transfers" : { + "MARK ANDREW" : "1" + } + } ], + "threshold" : "39657" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "CYD GORMAN" : "0", + "DAN COHEN" : "16", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN CHARLES WILSON" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "JOHN CHARLES WILSON", + "transfers" : { + "DAN COHEN" : "1" + } + } ], + "threshold" : "39638" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "CYD GORMAN" : "0", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "CYD GORMAN", + "transfers" : { } + } ], + "threshold" : "39635" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB AGAIN CARNEY JR" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "BOB AGAIN CARNEY JR", + "transfers" : { } + } ], + "threshold" : "39633" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 5, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "RAHN V. WORKCUFF" : "0", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "RAHN V. WORKCUFF", + "transfers" : { } + } ], + "threshold" : "39627" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 6, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAMES JIMMY L. STROUD, JR." : "0", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "JAMES JIMMY L. STROUD, JR.", + "transfers" : { } + } ], + "threshold" : "39622" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 7, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "EDMUND BERNARD BRUYERE" : "1", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "26", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "EDMUND BERNARD BRUYERE", + "transfers" : { + "JACKIE CHERRYHOMES" : "1" + } + } ], + "threshold" : "39614" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 8, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOHN LESLIE HARTWIG" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "0", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "JOHN LESLIE HARTWIG", + "transfers" : { + "NEAL BAXTER" : "1" + } + } ], + "threshold" : "39608" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 9, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BILL KAHN" : "0", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "BILL KAHN", + "transfers" : { } + } ], + "threshold" : "39599" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 10, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "17", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "JOSHUA REA" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "JOSHUA REA", + "transfers" : { + "DAN COHEN" : "1" + } + } ], + "threshold" : "39583" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 11, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MERRILL ANDERSON" : "0", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "MERRILL ANDERSON", + "transfers" : { } + } ], + "threshold" : "39568" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 12, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "23", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "GREGG A. IVERSON" : "1", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "GREGG A. IVERSON", + "transfers" : { + "BOB FINE" : "1" + } + } ], + "threshold" : "39552" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 13, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0", + "TROY BENJEGERDES" : "0" + }, + "tallyResults" : [ { + "eliminated" : "TROY BENJEGERDES", + "transfers" : { } + } ], + "threshold" : "39533" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 14, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "NEAL BAXTER" : "1", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "NEAL BAXTER", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "39522" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 15, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "JEFFREY ALAN WAGNER" : "1", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "JEFFREY ALAN WAGNER", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "39502" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 16, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "47", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "CHRISTOPHER ROBIN ZIMMERMAN" : "1", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "CHRISTOPHER ROBIN ZIMMERMAN", + "transfers" : { + "CAM WINTON" : "1" + } + } ], + "threshold" : "39477" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 17, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "48", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "6", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "KURTIS W. HANNA" : "1", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "KURTIS W. HANNA", + "transfers" : { + "DOUG MANN" : "1" + } + } ], + "threshold" : "39462" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 18, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "2", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "48", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "7", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "MARK ANDREW" : "161", + "MARK V ANDERSON" : "3", + "MIKE GOULD" : "5", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "MIKE GOULD", + "transfers" : { + "ALICIA K. BENNETT" : "2", + "MARK ANDREW" : "2", + "exhausted" : "1" + } + } ], + "threshold" : "39450" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 19, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "4", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "48", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "7", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "JAYMIE KELLY" : "0", + "MARK ANDREW" : "163", + "MARK V ANDERSON" : "3", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "JAYMIE KELLY", + "transfers" : { } + } ], + "threshold" : "39414" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 20, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "4", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "48", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "7", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "MARK ANDREW" : "163", + "MARK V ANDERSON" : "3", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12", + "TONY LANE" : "0" + }, + "tallyResults" : [ { + "eliminated" : "TONY LANE", + "transfers" : { } + } ], + "threshold" : "39387" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 21, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "4", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "48", + "CAPTAIN JACK SPARROW" : "3", + "CHRISTOPHER CLARK" : "4", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "7", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "MARK ANDREW" : "163", + "MARK V ANDERSON" : "3", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12" + }, + "tallyResults" : [ { + "eliminated" : "CHRISTOPHER CLARK", + "transfers" : { + "CAM WINTON" : "2", + "MARK V ANDERSON" : "2" + } + } ], + "threshold" : "39359" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 22, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "4", + "BETSY HODGES" : "134", + "BOB FINE" : "24", + "CAM WINTON" : "50", + "CAPTAIN JACK SPARROW" : "3", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "7", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "MARK ANDREW" : "163", + "MARK V ANDERSON" : "5", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12" + }, + "tallyResults" : [ { + "eliminated" : "CAPTAIN JACK SPARROW", + "transfers" : { + "BETSY HODGES" : "1", + "DOUG MANN" : "1", + "MARK V ANDERSON" : "1" + } + } ], + "threshold" : "39309" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 23, + "tally" : { + "ABDUL M RAHAMAN THE ROCK" : "1", + "ALICIA K. BENNETT" : "4", + "BETSY HODGES" : "135", + "BOB FINE" : "24", + "CAM WINTON" : "50", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "8", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "MARK ANDREW" : "163", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12" + }, + "tallyResults" : [ { + "eliminated" : "ABDUL M RAHAMAN THE ROCK", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "39247" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 24, + "tally" : { + "ALICIA K. BENNETT" : "4", + "BETSY HODGES" : "135", + "BOB FINE" : "24", + "CAM WINTON" : "50", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "8", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "MARK ANDREW" : "163", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "12" + }, + "tallyResults" : [ { + "eliminated" : "ALICIA K. BENNETT", + "transfers" : { + "MARK ANDREW" : "1", + "STEPHANIE WOODRUFF" : "1", + "exhausted" : "2" + } + } ], + "threshold" : "39112" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 25, + "tally" : { + "BETSY HODGES" : "135", + "BOB FINE" : "24", + "CAM WINTON" : "50", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "8", + "JACKIE CHERRYHOMES" : "27", + "JAMES EVERETT" : "4", + "MARK ANDREW" : "164", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "13" + }, + "tallyResults" : [ { + "eliminated" : "JAMES EVERETT", + "transfers" : { + "BETSY HODGES" : "1", + "DOUG MANN" : "1", + "exhausted" : "2" + } + } ], + "threshold" : "39041" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 26, + "tally" : { + "BETSY HODGES" : "136", + "BOB FINE" : "24", + "CAM WINTON" : "50", + "DAN COHEN" : "18", + "DON SAMUELS" : "52", + "DOUG MANN" : "9", + "JACKIE CHERRYHOMES" : "27", + "MARK ANDREW" : "164", + "MARK V ANDERSON" : "6", + "OLE SAVIOR" : "10", + "STEPHANIE WOODRUFF" : "13" + }, + "tallyResults" : [ { + "eliminated" : "OLE SAVIOR", + "transfers" : { + "DAN COHEN" : "1", + "DOUG MANN" : "1", + "JACKIE CHERRYHOMES" : "1", + "MARK V ANDERSON" : "1", + "exhausted" : "6" + } + } ], + "threshold" : "38981" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 27, + "tally" : { + "BETSY HODGES" : "136", + "BOB FINE" : "24", + "CAM WINTON" : "50", + "DAN COHEN" : "19", + "DON SAMUELS" : "52", + "DOUG MANN" : "10", + "JACKIE CHERRYHOMES" : "28", + "MARK ANDREW" : "164", + "MARK V ANDERSON" : "7", + "STEPHANIE WOODRUFF" : "13" + }, + "tallyResults" : [ { + "eliminated" : "DOUG MANN", + "transfers" : { + "BETSY HODGES" : "5", + "CAM WINTON" : "1", + "STEPHANIE WOODRUFF" : "1", + "exhausted" : "3" + } + } ], + "threshold" : "38726" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 28, + "tally" : { + "BETSY HODGES" : "141", + "BOB FINE" : "24", + "CAM WINTON" : "51", + "DAN COHEN" : "19", + "DON SAMUELS" : "52", + "JACKIE CHERRYHOMES" : "28", + "MARK ANDREW" : "164", + "MARK V ANDERSON" : "7", + "STEPHANIE WOODRUFF" : "14" + }, + "tallyResults" : [ { + "eliminated" : "MARK V ANDERSON", + "transfers" : { + "BETSY HODGES" : "1", + "exhausted" : "6" + } + } ], + "threshold" : "38541" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 29, + "tally" : { + "BETSY HODGES" : "142", + "BOB FINE" : "24", + "CAM WINTON" : "51", + "DAN COHEN" : "19", + "DON SAMUELS" : "52", + "JACKIE CHERRYHOMES" : "28", + "MARK ANDREW" : "164", + "STEPHANIE WOODRUFF" : "14" + }, + "tallyResults" : [ { + "eliminated" : "STEPHANIE WOODRUFF", + "transfers" : { + "BETSY HODGES" : "4", + "BOB FINE" : "3", + "DAN COHEN" : "2", + "MARK ANDREW" : "2", + "exhausted" : "3" + } + } ], + "threshold" : "38312" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 30, + "tally" : { + "BETSY HODGES" : "146", + "BOB FINE" : "27", + "CAM WINTON" : "51", + "DAN COHEN" : "21", + "DON SAMUELS" : "52", + "JACKIE CHERRYHOMES" : "28", + "MARK ANDREW" : "166" + }, + "tallyResults" : [ { + "eliminated" : "DAN COHEN", + "transfers" : { + "BETSY HODGES" : "4", + "BOB FINE" : "1", + "CAM WINTON" : "2", + "DON SAMUELS" : "2", + "JACKIE CHERRYHOMES" : "1", + "MARK ANDREW" : "1", + "exhausted" : "10" + } + } ], + "threshold" : "38162" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 31, + "tally" : { + "BETSY HODGES" : "150", + "BOB FINE" : "28", + "CAM WINTON" : "53", + "DON SAMUELS" : "54", + "JACKIE CHERRYHOMES" : "29", + "MARK ANDREW" : "167" + }, + "tallyResults" : [ { + "eliminated" : "JACKIE CHERRYHOMES", + "transfers" : { + "BETSY HODGES" : "6", + "CAM WINTON" : "3", + "DON SAMUELS" : "8", + "MARK ANDREW" : "3", + "exhausted" : "9" + } + }, { + "eliminated" : "BOB FINE", + "transfers" : { + "BETSY HODGES" : "4", + "CAM WINTON" : "5", + "DON SAMUELS" : "3", + "MARK ANDREW" : "6", + "exhausted" : "10" + } + } ], + "threshold" : "37796" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 32, + "tally" : { + "BETSY HODGES" : "160", + "CAM WINTON" : "61", + "DON SAMUELS" : "65", + "MARK ANDREW" : "176" + }, + "tallyResults" : [ { + "eliminated" : "DON SAMUELS", + "transfers" : { + "BETSY HODGES" : "22", + "MARK ANDREW" : "7", + "exhausted" : "36" + } + }, { + "eliminated" : "CAM WINTON", + "transfers" : { + "BETSY HODGES" : "4", + "MARK ANDREW" : "8", + "exhausted" : "49" + } + } ], + "threshold" : "36810" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 33, + "tally" : { + "BETSY HODGES" : "186", + "MARK ANDREW" : "191" + }, + "tallyResults" : [ { + "elected" : "BETSY HODGES", + "transfers" : { } + } ], + "threshold" : "31898" + } ], + "summary" : { + "finalThreshold" : "31898", + "numCandidates" : 36, + "numWinners" : 1, + "totalNumBallots" : "517", + "undervotes" : 0 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv new file mode 100644 index 000000000..6347ea255 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv @@ -0,0 +1,45 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,2017 Minneapolis mayoral race +Jurisdiction,"Minneapolis, MN" +Office,Mayor +Date,2017-11-07 +Winner(s),Jacob Frey +Final Threshold,40838 +Precinct,MINNEAPOLIS W-13 P-13 + +Contest Summary +Number to be Elected,1 +Number of Candidates,19 +Total Number of Ballots,953 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer +Jacob Frey,320,33.57%,0,320,33.61%,5,325,34.46%,14,339,36.1%,133,472,54.5%,120,592,75.03%,0 +Tom Hoch,261,27.38%,0,261,27.41%,8,269,28.52%,11,280,29.81%,-280,0,0.0%,0,0,0.0%,0 +Betsy Hodges,195,20.46%,0,195,20.48%,1,196,20.78%,12,208,22.15%,50,258,29.79%,-258,0,0.0%,0 +Raymond Dehn,82,8.6%,0,82,8.61%,1,83,8.8%,29,112,11.92%,24,136,15.7%,61,197,24.96%,0 +Nekima Levy-Pounds,68,7.13%,0,68,7.14%,2,70,7.42%,-70,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,12,1.25%,0,12,1.26%,-12,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,5,0.52%,0,5,0.52%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,3,0.31%,0,3,0.31%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,2,0.2%,1,3,0.31%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Aswar Rahman,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,1,0.1%,0,1,0.1%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,2,0.2%,-2,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,953,,,952,,,943,,,939,,,866,,,789,, +Current Round Threshold,52243,,,52200,,,50933,,,49874,,,46790,,,40838,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.json new file mode 100644 index 000000000..3a78f8c87 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.json @@ -0,0 +1,234 @@ +{ + "config" : { + "contest" : "2017 Minneapolis mayoral race", + "date" : "2017-11-07", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis, MN", + "office" : "Mayor", + "precinct" : "MINNEAPOLIS W-13 P-13" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "Al Flowers" : "1", + "Aswar Rahman" : "1", + "Betsy Hodges" : "195", + "Captain Jack Sparrow" : "1", + "Charlie Gers" : "12", + "Christopher Zimmerman" : "0", + "David John Wilson" : "3", + "David Rosenfeld" : "0", + "Gregg A. Iverson" : "2", + "Ian Simpson" : "0", + "Jacob Frey" : "320", + "L.A. Nik" : "5", + "Nekima Levy-Pounds" : "68", + "Raymond Dehn" : "82", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "261", + "Troy Benjegerdes" : "0", + "Undeclared Write-ins" : "2" + }, + "tallyResults" : [ { + "eliminated" : "Undeclared Write-ins", + "transfers" : { + "Gregg A. Iverson" : "1", + "exhausted" : "1" + } + } ], + "threshold" : "52243" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "Al Flowers" : "1", + "Aswar Rahman" : "1", + "Betsy Hodges" : "195", + "Captain Jack Sparrow" : "1", + "Charlie Gers" : "12", + "Christopher Zimmerman" : "0", + "David John Wilson" : "3", + "David Rosenfeld" : "0", + "Gregg A. Iverson" : "3", + "Ian Simpson" : "0", + "Jacob Frey" : "320", + "L.A. Nik" : "5", + "Nekima Levy-Pounds" : "68", + "Raymond Dehn" : "82", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "261", + "Troy Benjegerdes" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Aswar Rahman", + "transfers" : { + "Jacob Frey" : "1" + } + }, { + "eliminated" : "David Rosenfeld", + "transfers" : { } + }, { + "eliminated" : "L.A. Nik", + "transfers" : { + "Jacob Frey" : "1", + "exhausted" : "4" + } + }, { + "eliminated" : "Christopher Zimmerman", + "transfers" : { } + }, { + "eliminated" : "Ronald Lischeid", + "transfers" : { } + }, { + "eliminated" : "Ian Simpson", + "transfers" : { } + }, { + "eliminated" : "Charlie Gers", + "transfers" : { + "Jacob Frey" : "2", + "Raymond Dehn" : "1", + "Tom Hoch" : "4", + "exhausted" : "5" + } + }, { + "eliminated" : "Captain Jack Sparrow", + "transfers" : { + "Nekima Levy-Pounds" : "1" + } + }, { + "eliminated" : "Theron Preston Washington", + "transfers" : { } + }, { + "eliminated" : "David John Wilson", + "transfers" : { + "Tom Hoch" : "3" + } + }, { + "eliminated" : "Gregg A. Iverson", + "transfers" : { + "Betsy Hodges" : "1", + "Jacob Frey" : "1", + "Tom Hoch" : "1" + } + }, { + "eliminated" : "Troy Benjegerdes", + "transfers" : { } + }, { + "eliminated" : "Al Flowers", + "transfers" : { + "Nekima Levy-Pounds" : "1" + } + } ], + "threshold" : "52200" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "Betsy Hodges" : "196", + "Jacob Frey" : "325", + "Nekima Levy-Pounds" : "70", + "Raymond Dehn" : "83", + "Tom Hoch" : "269" + }, + "tallyResults" : [ { + "eliminated" : "Nekima Levy-Pounds", + "transfers" : { + "Betsy Hodges" : "12", + "Jacob Frey" : "14", + "Raymond Dehn" : "29", + "Tom Hoch" : "11", + "exhausted" : "4" + } + } ], + "threshold" : "50933" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "Betsy Hodges" : "208", + "Jacob Frey" : "339", + "Raymond Dehn" : "112", + "Tom Hoch" : "280" + }, + "tallyResults" : [ { + "eliminated" : "Tom Hoch", + "transfers" : { + "Betsy Hodges" : "50", + "Jacob Frey" : "133", + "Raymond Dehn" : "24", + "exhausted" : "73" + } + } ], + "threshold" : "49874" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 5, + "tally" : { + "Betsy Hodges" : "258", + "Jacob Frey" : "472", + "Raymond Dehn" : "136" + }, + "tallyResults" : [ { + "eliminated" : "Betsy Hodges", + "transfers" : { + "Jacob Frey" : "120", + "Raymond Dehn" : "61", + "exhausted" : "77" + } + } ], + "threshold" : "46790" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 6, + "tally" : { + "Jacob Frey" : "592", + "Raymond Dehn" : "197" + }, + "tallyResults" : [ { + "elected" : "Jacob Frey", + "transfers" : { } + } ], + "threshold" : "40838" + } ], + "summary" : { + "finalThreshold" : "40838", + "numCandidates" : 19, + "numWinners" : 1, + "totalNumBallots" : "953", + "undervotes" : 0 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv new file mode 100644 index 000000000..e153307f1 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.csv @@ -0,0 +1,45 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,2017 Minneapolis mayoral race +Jurisdiction,"Minneapolis, MN" +Office,Mayor +Date,2017-11-07 +Winner(s),Jacob Frey +Final Threshold,40838 +Precinct,MINNEAPOLIS W-1 P-01 + +Contest Summary +Number to be Elected,1 +Number of Candidates,19 +Total Number of Ballots,408 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer,Round 6 Votes,% of vote,transfer +Jacob Frey,95,23.28%,0,95,23.34%,10,105,26.99%,24,129,34.03%,28,157,45.11%,36,193,63.48%,0 +Tom Hoch,77,18.87%,0,77,18.91%,7,84,21.59%,5,89,23.48%,-89,0,0.0%,0,0,0.0%,0 +Nekima Levy-Pounds,69,16.91%,0,69,16.95%,5,74,19.02%,-74,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Betsy Hodges,64,15.68%,0,64,15.72%,3,67,17.22%,17,84,22.16%,11,95,27.29%,-95,0,0.0%,0 +Raymond Dehn,56,13.72%,0,56,13.75%,3,59,15.16%,18,77,20.31%,19,96,27.58%,15,111,36.51%,0 +Aswar Rahman,9,2.2%,0,9,2.21%,-9,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,7,1.71%,0,7,1.71%,-7,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,5,1.22%,0,5,1.22%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,5,1.22%,0,5,1.22%,-5,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,4,0.98%,0,4,0.98%,-4,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David Rosenfeld,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ronald Lischeid,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ian Simpson,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,3,0.73%,0,3,0.73%,-3,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,1,0.24%,0,1,0.24%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,1,0.24%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,408,,,407,,,389,,,379,,,348,,,304,, +Current Round Threshold,52243,,,52200,,,50933,,,49874,,,46790,,,40838,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.json new file mode 100644 index 000000000..3848d05d9 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/2017_minneapolis_mayor/2017_minneapolis_mayor_expected_MINNEAPOLIS_W-1_P-01_precinct_summary.json @@ -0,0 +1,252 @@ +{ + "config" : { + "contest" : "2017 Minneapolis mayoral race", + "date" : "2017-11-07", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis, MN", + "office" : "Mayor", + "precinct" : "MINNEAPOLIS W-1 P-01" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "Al Flowers" : "5", + "Aswar Rahman" : "9", + "Betsy Hodges" : "64", + "Captain Jack Sparrow" : "4", + "Charlie Gers" : "5", + "Christopher Zimmerman" : "0", + "David John Wilson" : "1", + "David Rosenfeld" : "3", + "Gregg A. Iverson" : "3", + "Ian Simpson" : "3", + "Jacob Frey" : "95", + "L.A. Nik" : "7", + "Nekima Levy-Pounds" : "69", + "Raymond Dehn" : "56", + "Ronald Lischeid" : "3", + "Theron Preston Washington" : "0", + "Tom Hoch" : "77", + "Troy Benjegerdes" : "3", + "Undeclared Write-ins" : "1" + }, + "tallyResults" : [ { + "eliminated" : "Undeclared Write-ins", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "52243" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "Al Flowers" : "5", + "Aswar Rahman" : "9", + "Betsy Hodges" : "64", + "Captain Jack Sparrow" : "4", + "Charlie Gers" : "5", + "Christopher Zimmerman" : "0", + "David John Wilson" : "1", + "David Rosenfeld" : "3", + "Gregg A. Iverson" : "3", + "Ian Simpson" : "3", + "Jacob Frey" : "95", + "L.A. Nik" : "7", + "Nekima Levy-Pounds" : "69", + "Raymond Dehn" : "56", + "Ronald Lischeid" : "3", + "Theron Preston Washington" : "0", + "Tom Hoch" : "77", + "Troy Benjegerdes" : "3" + }, + "tallyResults" : [ { + "eliminated" : "Aswar Rahman", + "transfers" : { + "Betsy Hodges" : "2", + "Jacob Frey" : "3", + "Nekima Levy-Pounds" : "1", + "Tom Hoch" : "2", + "exhausted" : "1" + } + }, { + "eliminated" : "David Rosenfeld", + "transfers" : { + "Betsy Hodges" : "1", + "Jacob Frey" : "1", + "exhausted" : "1" + } + }, { + "eliminated" : "L.A. Nik", + "transfers" : { + "exhausted" : "7" + } + }, { + "eliminated" : "Christopher Zimmerman", + "transfers" : { } + }, { + "eliminated" : "Ronald Lischeid", + "transfers" : { + "Tom Hoch" : "2", + "exhausted" : "1" + } + }, { + "eliminated" : "Ian Simpson", + "transfers" : { + "Raymond Dehn" : "1", + "Tom Hoch" : "1", + "exhausted" : "1" + } + }, { + "eliminated" : "Charlie Gers", + "transfers" : { + "Nekima Levy-Pounds" : "1", + "Tom Hoch" : "1", + "exhausted" : "3" + } + }, { + "eliminated" : "Captain Jack Sparrow", + "transfers" : { + "Jacob Frey" : "2", + "exhausted" : "2" + } + }, { + "eliminated" : "Theron Preston Washington", + "transfers" : { } + }, { + "eliminated" : "David John Wilson", + "transfers" : { + "Nekima Levy-Pounds" : "1" + } + }, { + "eliminated" : "Gregg A. Iverson", + "transfers" : { + "Jacob Frey" : "2", + "exhausted" : "1" + } + }, { + "eliminated" : "Troy Benjegerdes", + "transfers" : { + "Jacob Frey" : "2", + "Raymond Dehn" : "1" + } + }, { + "eliminated" : "Al Flowers", + "transfers" : { + "Nekima Levy-Pounds" : "2", + "Raymond Dehn" : "1", + "Tom Hoch" : "1", + "exhausted" : "1" + } + } ], + "threshold" : "52200" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "Betsy Hodges" : "67", + "Jacob Frey" : "105", + "Nekima Levy-Pounds" : "74", + "Raymond Dehn" : "59", + "Tom Hoch" : "84" + }, + "tallyResults" : [ { + "eliminated" : "Nekima Levy-Pounds", + "transfers" : { + "Betsy Hodges" : "17", + "Jacob Frey" : "24", + "Raymond Dehn" : "18", + "Tom Hoch" : "5", + "exhausted" : "10" + } + } ], + "threshold" : "50933" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "Betsy Hodges" : "84", + "Jacob Frey" : "129", + "Raymond Dehn" : "77", + "Tom Hoch" : "89" + }, + "tallyResults" : [ { + "eliminated" : "Tom Hoch", + "transfers" : { + "Betsy Hodges" : "11", + "Jacob Frey" : "28", + "Raymond Dehn" : "19", + "exhausted" : "31" + } + } ], + "threshold" : "49874" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 5, + "tally" : { + "Betsy Hodges" : "95", + "Jacob Frey" : "157", + "Raymond Dehn" : "96" + }, + "tallyResults" : [ { + "eliminated" : "Betsy Hodges", + "transfers" : { + "Jacob Frey" : "36", + "Raymond Dehn" : "15", + "exhausted" : "44" + } + } ], + "threshold" : "46790" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 6, + "tally" : { + "Jacob Frey" : "193", + "Raymond Dehn" : "111" + }, + "tallyResults" : [ { + "elected" : "Jacob Frey", + "transfers" : { } + } ], + "threshold" : "40838" + } ], + "summary" : { + "finalThreshold" : "40838", + "numCandidates" : 19, + "numWinners" : 1, + "totalNumBallots" : "408", + "undervotes" : 0 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_config.json b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_config.json new file mode 100644 index 000000000..982fff029 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_config.json @@ -0,0 +1,115 @@ +{ + "tabulatorVersion": "TEST", + "outputSettings": { + "contestName": "Batch example", + "outputDirectory": "output", + "contestDate": "2017-11-07", + "contestJurisdiction": "Minneapolis, MN", + "contestOffice": "Mayor", + "tabulateByPrecinct": false, + "tabulateByBatch": true, + "generateCdfJson": true + }, + "cvrFileSources": [ + { + "filePath": "batch_example_cvr.xlsx", + "firstVoteColumnIndex": "2", + "firstVoteRowIndex": "2", + "idColumnIndex": "", + "batchColumnIndex": "1", + "provider": "ess", + "treatBlankAsUndeclaredWriteIn": false, + "overvoteLabel": "", + "skippedRankLabel": "undervote", + "undeclaredWriteInLabel": "UWI" + } ], + "candidates" : [ { + "name" : "Jacob Frey", + "code" : "", + "excluded" : false + }, { + "name" : "Tom Hoch", + "code" : "", + "excluded" : false + }, { + "name" : "Betsy Hodges", + "code" : "", + "excluded" : false + }, { + "name" : "Raymond Dehn", + "code" : "", + "excluded" : false + }, { + "name" : "Nekima Levy-Pounds", + "code" : "", + "excluded" : false + }, { + "name" : "Charlie Gers", + "code" : "", + "excluded" : false + }, { + "name" : "Aswar Rahman", + "code" : "", + "excluded" : false + }, { + "name" : "Al Flowers", + "code" : "", + "excluded" : false + }, { + "name" : "L.A. Nik", + "code" : "", + "excluded" : false + }, { + "name" : "David Rosenfeld", + "code" : "", + "excluded" : false + }, { + "name" : "Captain Jack Sparrow", + "code" : "", + "excluded" : false + }, { + "name" : "Gregg A. Iverson", + "code" : "", + "excluded" : false + }, { + "name" : "Ronald Lischeid", + "code" : "", + "excluded" : false + }, { + "name" : "David John Wilson", + "code" : "", + "excluded" : false + }, { + "name" : "Troy Benjegerdes", + "code" : "", + "excluded" : false + }, { + "name" : "Ian Simpson", + "code" : "", + "excluded" : false + }, { + "name" : "Christopher Zimmerman", + "code" : "", + "excluded" : false + }, { + "name" : "Theron Preston Washington", + "code" : "", + "excluded" : false + } ], + "rules" : { + "tiebreakMode": "random", + "overvoteRule": "alwaysSkipToNextRank", + "winnerElectionMode": "singleWinnerMajority", + "randomSeed": "0", + "numberOfWinners": "1", + "decimalPlacesForVoteArithmetic": "4", + "minimumVoteThreshold": "0", + "maxSkippedRanksAllowed": "1", + "maxRankingsAllowed": "3", + "nonIntegerWinningThreshold": false, + "hareQuota": false, + "batchElimination": true, + "exhaustOnDuplicateCandidate": false, + "rulesDescription": "Minneapolis Rules" + } +} diff --git a/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_cvr.xlsx b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_cvr.xlsx new file mode 100644 index 000000000..48efafa5a Binary files /dev/null and b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_cvr.xlsx differ diff --git a/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_cvr_cdf.json b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_cvr_cdf.json new file mode 100644 index 000000000..66638d2f2 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_cvr_cdf.json @@ -0,0 +1,20577 @@ +{ + "@type" : "CVR.CastVoteRecordReport", + "CVR" : [ { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-1", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-1-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-1-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-1-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-1-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-1-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-1-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-2", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-2-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-2-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-2-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-2-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-2-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-2-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-3", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-3-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-3-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-3-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-3-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-3-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-3-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-4", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-4-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-4-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-4-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-4-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-4-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-4-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-5", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-5-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-5-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-5-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-5-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-5-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-5-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-6", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-6", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-6-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-6-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-6-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-6-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-6-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-6-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-7", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-7", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-7-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-7-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-7-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-7-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-7-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-7-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-8", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-8", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-8-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-8-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-8-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-8-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-8-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-8-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-9", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-9", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-9-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-9-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-9-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-9-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-9-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-9-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-10", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-10", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-10-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-10-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-10-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-10-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-10-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-10-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-11", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-11", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-11-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-11-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-11-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-11-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-11-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-11-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-12", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-12", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-12-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-12-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-12-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-12-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-12-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-12-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-13", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-13", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-13-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-13-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-13-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-13-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-13-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-13-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-14", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-14", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-14-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-14-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-14-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-14-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-14-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-14-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-15", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-15", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-15-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-15-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-15-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-15-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-15-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-15-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-16", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-16", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-16-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-16-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-16-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-16-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-16-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-16-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-17", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-17", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-17-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-17-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-17-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-17-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-17-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-17-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-18", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-18", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-18-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-18-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-18-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-18-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-18-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-18-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-19", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-19", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-19-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-19-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-19-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-19-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-19-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-19-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-20", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-20", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-20-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-20-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-20-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-20-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-20-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-20-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-21", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-21", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-21-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-21-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-21-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-21-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-21-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-21-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-22", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-22", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-22-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-22-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-22-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-22-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-22-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-22-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-23", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-23", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-23-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-23-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-23-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-23-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-23-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-23-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-24", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-24", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-24-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-24-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-24-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-24-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-24-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-24-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-25", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-25", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-25-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-25-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-25-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-25-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-25-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-25-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-26", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-26", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-26-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-26-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-26-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-26-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-26-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-26-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-27", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-27", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-27-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-27-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-27-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-27-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-27-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-27-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-28", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-28", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-28-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-28-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-28-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-28-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-28-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-28-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-29", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-29", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-29-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-29-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-29-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-29-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-29-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-ronald_lischeid", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-29-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-30", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-30", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-30-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-30-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-30-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-30-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-30-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-30-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-31", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-31", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-31-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-31-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-31-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-31-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-31-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-31-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-32", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-32", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-32-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-32-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-32-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-32-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-32-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-32-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-33", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-33", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-33-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-33-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-33-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-33-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-33-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-33-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-34", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-34", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-34-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-34-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-34-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-34-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-34-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-34-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-35", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-35", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-35-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-35-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-35-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-35-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-35-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-35-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-36", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-36", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-36-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-36-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-36-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-36-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-36-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-36-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-37", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-37", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-37-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-37-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-37-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-37-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-37-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-37-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-38", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-38", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-38-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-38-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-38-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-38-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-38-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-38-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-39", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-39", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-39-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-39-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-39-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-39-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-39-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-39-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-40", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-40", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-40-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-40-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-40-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-40-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-40-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-40-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-41", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-41", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-41-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-41-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-41-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-41-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-41-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-41-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-42", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-42", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-42-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-42-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-42-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-42-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-42-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-42-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-43", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-43", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-43-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-43-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-43-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-43-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-43-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-david_rosenfeld", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-43-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-44", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-44", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-44-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-44-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-44-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-44-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-44-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-44-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-45", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-45", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-45-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-45-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-45-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-45-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-45-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-45-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-46", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-46", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-46-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-46-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-46-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-46-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-46-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-46-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-47", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-47", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-47-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-47-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-47-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-47-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-47-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-47-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-48", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-48", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-48-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-48-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-48-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-48-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-48-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-48-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-49", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-49", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-49-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-49-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-49-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-49-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-49-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-49-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-50", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-50", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-50-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-50-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-50-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-50-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-50-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-50-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-51", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-51", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-51-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-51-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-51-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-51-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-51-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-51-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-52", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-52", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-52-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-52-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-52-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-52-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-52-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-52-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-53", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-53", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-53-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-53-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-53-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-53-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-53-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-53-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-54", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-54", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-54-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-54-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-54-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-54-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-54-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-54-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-55", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-55", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-55-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-55-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-55-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-55-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-55-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-55-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-56", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-56", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-56-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-56-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-56-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-56-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-56-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-56-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-57", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-57", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-57-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-57-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-57-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-57-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-57-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-57-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-58", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-58", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-58-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-58-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-58-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-58-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-58-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-58-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-59", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-59", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-59-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-59-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-59-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-59-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-59-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-59-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-60", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-60", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-60-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-60-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-60-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-60-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-60-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-60-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-61", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-61", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-61-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-61-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-61-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-61-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-61-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-61-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-62", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-62", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-62-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-62-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-62-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-62-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-62-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-62-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-63", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-63", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-63-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-63-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-63-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-63-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-63-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-63-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-64", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-64", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-64-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-64-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-64-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-64-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-64-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-64-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-65", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-65", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-65-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-65-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-65-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-65-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-65-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-65-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-66", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-66", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-gregg_a._iverson", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-66-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-gregg_a._iverson", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-66-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-gregg_a._iverson", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-66-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-gregg_a._iverson", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-66-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-gregg_a._iverson", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-66-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-gregg_a._iverson", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-66-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-67", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-67", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-67-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-67-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-67-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-67-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-67-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-67-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-68", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-68", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-68-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-68-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-68-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-68-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-68-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-68-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-69", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-69", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-69-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-69-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-69-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-69-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-69-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-69-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-70", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-70", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-70-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-70-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-70-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-70-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-70-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-70-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-71", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-71", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-71-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-71-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-71-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-71-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-71-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-71-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-72", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-72", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-72-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-72-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-72-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-72-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-72-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-72-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-73", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-73", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-73-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-73-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-73-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-73-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-73-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-73-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-74", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-74", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-74-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-74-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-74-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-74-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-74-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-captain_jack_sparrow", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-74-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-75", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-75", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-75-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-75-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-75-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-75-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-75-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-75-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-76", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-76", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-76-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-76-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-76-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-76-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-76-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-76-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-77", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-77", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-77-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-77-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-77-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-77-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-77-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-77-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-78", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-78", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-78-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-78-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-78-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-78-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-78-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-78-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-79", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-79", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-79-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-79-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-79-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-79-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-79-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-79-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-80", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-80", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-80-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-80-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-80-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-80-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-80-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-80-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-81", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-81", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-81-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-81-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-81-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-81-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-81-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-81-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-82", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-82", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-82-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-82-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-82-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-82-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-82-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-al_flowers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-82-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-83", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-83", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-83-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-83-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-83-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-83-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-83-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-83-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-84", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-84", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-84-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-84-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-84-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-84-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-84-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-84-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-85", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-85", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-85-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-85-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-85-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-85-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-85-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-aswar_rahman", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-85-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-86", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-86", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-86-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-86-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-86-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-86-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-86-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-86-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-87", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-87", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-87-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-87-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-87-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-87-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-87-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-87-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-88", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-88", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-88-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-88-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-88-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-88-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-88-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-88-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-89", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-89", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-89-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-89-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-89-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-89-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-89-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-89-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-90", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-90", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-90-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-90-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-90-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-90-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-90-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-90-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-91", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-91", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-91-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-91-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-91-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-91-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-91-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-91-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-92", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-92", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-92-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-92-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-92-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-92-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-92-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-undeclared_write-ins", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-92-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-93", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-93", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-93-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-93-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-93-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-93-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-93-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-93-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-94", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-94", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-94-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-94-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-94-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-94-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-94-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + }, { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-94-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-95", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-95", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-95-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-95-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-95-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-95-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-95-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-tom_hoch", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-95-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-96", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-96", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-charlie_gers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-96-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-charlie_gers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-96-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-charlie_gers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-96-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-charlie_gers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-96-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-charlie_gers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-96-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-charlie_gers", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-96-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-97", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-97", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-97-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-97-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-97-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-97-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-97-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-97-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-98", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-98", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-98-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-98-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-98-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-98-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-98-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-betsy_hodges", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-98-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-99", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-99", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-99-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-99-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-99-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-99-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-99-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-99-round-5", + "ElectionId" : "election-001" + }, { + "@type" : "CVR", + "BallotPrePrintedId" : "batch_example_cvr.xlsx-100", + "CVRSnapshot" : [ { + "@id" : "ballot-batch_example_cvr.xlsx-100", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "unknown", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "original" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-100-round-1", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-100-round-2", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-100-round-3", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-100-round-4", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + }, { + "@id" : "ballot-batch_example_cvr.xlsx-100-round-5", + "@type" : "CVR.CVRSnapshot", + "CVRContest" : [ { + "@type" : "CVR.CVRContest", + "CVRContestSelection" : [ { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-raymond_dehn", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 1 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-nekima_levy-pounds", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "no", + "NumberVotes" : 1, + "Rank" : 2 + } ] + }, { + "@type" : "CVR.CVRContestSelection", + "ContestSelectionId" : "cs-jacob_frey", + "SelectionPosition" : [ { + "@type" : "CVR.SelectionPosition", + "HasIndication" : "yes", + "IsAllocable" : "yes", + "NumberVotes" : 1, + "Rank" : 3 + } ] + } ], + "ContestId" : "contest-001" + } ], + "Type" : "interpreted" + } ], + "CurrentSnapshotId" : "ballot-batch_example_cvr.xlsx-100-round-5", + "ElectionId" : "election-001" + } ], + "Election" : [ { + "@id" : "election-001", + "@type" : "Election", + "Candidate" : [ { + "@id" : "c-al_flowers", + "Name" : "Al Flowers" + }, { + "@id" : "c-aswar_rahman", + "Name" : "Aswar Rahman" + }, { + "@id" : "c-betsy_hodges", + "Name" : "Betsy Hodges" + }, { + "@id" : "c-captain_jack_sparrow", + "Name" : "Captain Jack Sparrow" + }, { + "@id" : "c-charlie_gers", + "Name" : "Charlie Gers" + }, { + "@id" : "c-christopher_zimmerman", + "Name" : "Christopher Zimmerman" + }, { + "@id" : "c-david_john_wilson", + "Name" : "David John Wilson" + }, { + "@id" : "c-david_rosenfeld", + "Name" : "David Rosenfeld" + }, { + "@id" : "c-gregg_a._iverson", + "Name" : "Gregg A. Iverson" + }, { + "@id" : "c-ian_simpson", + "Name" : "Ian Simpson" + }, { + "@id" : "c-jacob_frey", + "Name" : "Jacob Frey" + }, { + "@id" : "c-l.a._nik", + "Name" : "L.A. Nik" + }, { + "@id" : "c-nekima_levy-pounds", + "Name" : "Nekima Levy-Pounds" + }, { + "@id" : "c-raymond_dehn", + "Name" : "Raymond Dehn" + }, { + "@id" : "c-ronald_lischeid", + "Name" : "Ronald Lischeid" + }, { + "@id" : "c-theron_preston_washington", + "Name" : "Theron Preston Washington" + }, { + "@id" : "c-tom_hoch", + "Name" : "Tom Hoch" + }, { + "@id" : "c-troy_benjegerdes", + "Name" : "Troy Benjegerdes" + }, { + "@id" : "c-undeclared_write-ins", + "Name" : "Undeclared Write-ins" + } ], + "Contest" : [ { + "@id" : "contest-001", + "@type" : "CandidateContest", + "ContestSelection" : [ { + "@id" : "cs-al_flowers", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-al_flowers" ] + }, { + "@id" : "cs-aswar_rahman", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-aswar_rahman" ] + }, { + "@id" : "cs-betsy_hodges", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-betsy_hodges" ] + }, { + "@id" : "cs-captain_jack_sparrow", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-captain_jack_sparrow" ] + }, { + "@id" : "cs-charlie_gers", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-charlie_gers" ] + }, { + "@id" : "cs-christopher_zimmerman", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-christopher_zimmerman" ] + }, { + "@id" : "cs-david_john_wilson", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-david_john_wilson" ] + }, { + "@id" : "cs-david_rosenfeld", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-david_rosenfeld" ] + }, { + "@id" : "cs-gregg_a._iverson", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-gregg_a._iverson" ] + }, { + "@id" : "cs-ian_simpson", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-ian_simpson" ] + }, { + "@id" : "cs-jacob_frey", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-jacob_frey" ] + }, { + "@id" : "cs-l.a._nik", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-l.a._nik" ] + }, { + "@id" : "cs-nekima_levy-pounds", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-nekima_levy-pounds" ] + }, { + "@id" : "cs-raymond_dehn", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-raymond_dehn" ] + }, { + "@id" : "cs-ronald_lischeid", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-ronald_lischeid" ] + }, { + "@id" : "cs-theron_preston_washington", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-theron_preston_washington" ] + }, { + "@id" : "cs-tom_hoch", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-tom_hoch" ] + }, { + "@id" : "cs-troy_benjegerdes", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-troy_benjegerdes" ] + }, { + "@id" : "cs-undeclared_write-ins", + "@type" : "ContestSelection", + "CandidateIds" : [ "c-undeclared_write-ins" ] + } ], + "Name" : "Batch example" + } ], + "ElectionScopeId" : "gpu-election" + } ], + "GeneratedDate" : "2020-10-03T12:36:59-07:00", + "GpUnit" : [ { + "@id" : "gpu-election", + "@type" : "GpUnit", + "Name" : "Minneapolis, MN", + "OtherType" : "Election Scope Jurisdiction", + "Type" : "other" + }], + "ReportGeneratingDeviceIds" : [ "rd-001" ], + "ReportingDevice" : [ { + "@id" : "rd-001", + "@type" : "CVR.ReportingDevice", + "Application" : "RCTab", + "Manufacturer" : "Bright Spots" + } ], + "Version" : "1.0.0" +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_summary.csv new file mode 100644 index 000000000..68a39f444 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_summary.csv @@ -0,0 +1,46 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,Batch example +Jurisdiction,"Minneapolis, MN" +Office,Mayor +Date,2017-11-07 +Winner(s),Betsy Hodges +Final Threshold,42 + +Contest Summary +Number to be Elected,1 +Number of Candidates,19 +Total Number of Ballots,100 +Number of Undervotes,1 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer +Eliminated,Undeclared Write-ins,,,Aswar Rahman; David Rosenfeld; L.A. Nik; Christopher Zimmerman; Ronald Lischeid; Ian Simpson; Charlie Gers; Captain Jack Sparrow; Theron Preston Washington; David John Wilson; Gregg A. Iverson; Troy Benjegerdes; Al Flowers; Nekima Levy-Pounds,,,Tom Hoch,,,Raymond Dehn,,,,, +Elected,,,,,,,,,,,,,Betsy Hodges,, +Jacob Frey,28,28.28%,0,28,28.57%,2,30,31.25%,9,39,43.33%,2,41,49.39%,0 +Betsy Hodges,20,20.2%,0,20,20.4%,5,25,26.04%,3,28,31.11%,14,42,50.6%,0 +Tom Hoch,17,17.17%,0,17,17.34%,2,19,19.79%,-19,0,0.0%,0,0,0.0%,0 +Raymond Dehn,17,17.17%,0,17,17.34%,5,22,22.91%,1,23,25.55%,-23,0,0.0%,0 +Nekima Levy-Pounds,12,12.12%,0,12,12.24%,-12,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David Rosenfeld,1,1.01%,0,1,1.02%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,1,1.01%,0,1,1.02%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,1,1.01%,0,1,1.02%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,1,1.01%,0,1,1.02%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,1,1.01%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,99,,,98,,,96,,,90,,,83,, +Current Round Threshold,50,,,50,,,49,,,46,,,42,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,1,1,,2,3,,7,10,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,1,1,,2,3,,6,9,,7,16,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_summary.json b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_summary.json new file mode 100644 index 000000000..d590c799c --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/batch_example/batch_example_expected_summary.json @@ -0,0 +1,203 @@ +{ + "config" : { + "contest" : "Batch example", + "date" : "2017-11-07", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis, MN", + "office" : "Mayor" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "Al Flowers" : "1", + "Aswar Rahman" : "0", + "Betsy Hodges" : "20", + "Captain Jack Sparrow" : "1", + "Charlie Gers" : "1", + "Christopher Zimmerman" : "0", + "David John Wilson" : "0", + "David Rosenfeld" : "1", + "Gregg A. Iverson" : "0", + "Ian Simpson" : "0", + "Jacob Frey" : "28", + "L.A. Nik" : "0", + "Nekima Levy-Pounds" : "12", + "Raymond Dehn" : "17", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "17", + "Troy Benjegerdes" : "0", + "Undeclared Write-ins" : "1" + }, + "tallyResults" : [ { + "eliminated" : "Undeclared Write-ins", + "transfers" : { + "exhausted" : "1" + } + } ], + "threshold" : "50" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "Al Flowers" : "1", + "Aswar Rahman" : "0", + "Betsy Hodges" : "20", + "Captain Jack Sparrow" : "1", + "Charlie Gers" : "1", + "Christopher Zimmerman" : "0", + "David John Wilson" : "0", + "David Rosenfeld" : "1", + "Gregg A. Iverson" : "0", + "Ian Simpson" : "0", + "Jacob Frey" : "28", + "L.A. Nik" : "0", + "Nekima Levy-Pounds" : "12", + "Raymond Dehn" : "17", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "17", + "Troy Benjegerdes" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Aswar Rahman", + "transfers" : { } + }, { + "eliminated" : "David Rosenfeld", + "transfers" : { + "Tom Hoch" : "1" + } + }, { + "eliminated" : "L.A. Nik", + "transfers" : { } + }, { + "eliminated" : "Christopher Zimmerman", + "transfers" : { } + }, { + "eliminated" : "Ronald Lischeid", + "transfers" : { } + }, { + "eliminated" : "Ian Simpson", + "transfers" : { } + }, { + "eliminated" : "Charlie Gers", + "transfers" : { + "exhausted" : "1" + } + }, { + "eliminated" : "Captain Jack Sparrow", + "transfers" : { + "Jacob Frey" : "1" + } + }, { + "eliminated" : "Theron Preston Washington", + "transfers" : { } + }, { + "eliminated" : "David John Wilson", + "transfers" : { } + }, { + "eliminated" : "Gregg A. Iverson", + "transfers" : { } + }, { + "eliminated" : "Troy Benjegerdes", + "transfers" : { } + }, { + "eliminated" : "Al Flowers", + "transfers" : { + "Raymond Dehn" : "1" + } + }, { + "eliminated" : "Nekima Levy-Pounds", + "transfers" : { + "Betsy Hodges" : "5", + "Jacob Frey" : "1", + "Raymond Dehn" : "4", + "Tom Hoch" : "1", + "exhausted" : "1" + } + } ], + "threshold" : "50" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "1", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "Betsy Hodges" : "25", + "Jacob Frey" : "30", + "Raymond Dehn" : "22", + "Tom Hoch" : "19" + }, + "tallyResults" : [ { + "eliminated" : "Tom Hoch", + "transfers" : { + "Betsy Hodges" : "3", + "Jacob Frey" : "9", + "Raymond Dehn" : "1", + "exhausted" : "6" + } + } ], + "threshold" : "49" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "3", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "Betsy Hodges" : "28", + "Jacob Frey" : "39", + "Raymond Dehn" : "23" + }, + "tallyResults" : [ { + "eliminated" : "Raymond Dehn", + "transfers" : { + "Betsy Hodges" : "14", + "Jacob Frey" : "2", + "exhausted" : "7" + } + } ], + "threshold" : "46" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "10", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 5, + "tally" : { + "Betsy Hodges" : "42", + "Jacob Frey" : "41" + }, + "tallyResults" : [ { + "elected" : "Betsy Hodges", + "transfers" : { } + } ], + "threshold" : "42" + } ], + "summary" : { + "finalThreshold" : "42", + "numCandidates" : 19, + "numWinners" : 1, + "totalNumBallots" : "100", + "undervotes" : 1 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv new file mode 100644 index 000000000..2e3186151 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.csv @@ -0,0 +1,45 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,Missing Precinct example +Jurisdiction,"Minneapolis, MN" +Office,Mayor +Date,2017-11-07 +Winner(s),Jacob Frey +Final Threshold,3 +Precinct,MINNEAPOLIS W-13 P-13 + +Contest Summary +Number to be Elected,1 +Number of Candidates,19 +Total Number of Ballots,1 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer +Tom Hoch,1,100.0%,0,1,100.0%,0,1,100.0%,-1,0,0.0%,0 +Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Raymond Dehn,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Jacob Frey,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,100.0%,0 +Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Nekima Levy-Pounds,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,1,,,1,,,1,,,1,, +Current Round Threshold,3,,,3,,,3,,,3,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.json new file mode 100644 index 000000000..69fb263a5 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_MINNEAPOLIS_W-13_P-13_precinct_summary.json @@ -0,0 +1,151 @@ +{ + "config" : { + "contest" : "Missing Precinct example", + "date" : "2017-11-07", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis, MN", + "office" : "Mayor", + "precinct" : "MINNEAPOLIS W-13 P-13" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "Al Flowers" : "0", + "Aswar Rahman" : "0", + "Betsy Hodges" : "0", + "Captain Jack Sparrow" : "0", + "Charlie Gers" : "0", + "Christopher Zimmerman" : "0", + "David John Wilson" : "0", + "David Rosenfeld" : "0", + "Gregg A. Iverson" : "0", + "Ian Simpson" : "0", + "Jacob Frey" : "0", + "L.A. Nik" : "0", + "Nekima Levy-Pounds" : "0", + "Raymond Dehn" : "0", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "1", + "Troy Benjegerdes" : "0", + "Undeclared Write-ins" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Aswar Rahman", + "transfers" : { } + }, { + "eliminated" : "David Rosenfeld", + "transfers" : { } + }, { + "eliminated" : "Raymond Dehn", + "transfers" : { } + }, { + "eliminated" : "L.A. Nik", + "transfers" : { } + }, { + "eliminated" : "Undeclared Write-ins", + "transfers" : { } + }, { + "eliminated" : "Christopher Zimmerman", + "transfers" : { } + }, { + "eliminated" : "Ronald Lischeid", + "transfers" : { } + }, { + "eliminated" : "Ian Simpson", + "transfers" : { } + }, { + "eliminated" : "Charlie Gers", + "transfers" : { } + }, { + "eliminated" : "Captain Jack Sparrow", + "transfers" : { } + }, { + "eliminated" : "Theron Preston Washington", + "transfers" : { } + }, { + "eliminated" : "David John Wilson", + "transfers" : { } + }, { + "eliminated" : "Gregg A. Iverson", + "transfers" : { } + }, { + "eliminated" : "Troy Benjegerdes", + "transfers" : { } + }, { + "eliminated" : "Al Flowers", + "transfers" : { } + } ], + "threshold" : "3" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "0", + "Nekima Levy-Pounds" : "0", + "Tom Hoch" : "1" + }, + "tallyResults" : [ { + "eliminated" : "Nekima Levy-Pounds", + "transfers" : { } + } ], + "threshold" : "3" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "0", + "Tom Hoch" : "1" + }, + "tallyResults" : [ { + "eliminated" : "Tom Hoch", + "transfers" : { + "Jacob Frey" : "1" + } + } ], + "threshold" : "3" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "1" + }, + "tallyResults" : [ { + "elected" : "Jacob Frey", + "transfers" : { } + } ], + "threshold" : "3" + } ], + "summary" : { + "finalThreshold" : "3", + "numCandidates" : 19, + "numWinners" : 1, + "totalNumBallots" : "1", + "undervotes" : 0 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv new file mode 100644 index 000000000..afff1f35d --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.csv @@ -0,0 +1,45 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,Missing Precinct example +Jurisdiction,"Minneapolis, MN" +Office,Mayor +Date,2017-11-07 +Winner(s),Jacob Frey +Final Threshold,3 +Precinct,missing_precinct_id + +Contest Summary +Number to be Elected,1 +Number of Candidates,19 +Total Number of Ballots,1 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer +Jacob Frey,1,100.0%,0,1,100.0%,0,1,100.0%,0,1,100.0%,0 +Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Tom Hoch,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Raymond Dehn,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Nekima Levy-Pounds,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,1,,,1,,,1,,,1,, +Current Round Threshold,3,,,3,,,3,,,3,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.json new file mode 100644 index 000000000..cf6633e7a --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/missing_precinct_example/missing_precinct_example_expected_missing_precinct_id_precinct_summary.json @@ -0,0 +1,149 @@ +{ + "config" : { + "contest" : "Missing Precinct example", + "date" : "2017-11-07", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis, MN", + "office" : "Mayor", + "precinct" : "missing_precinct_id" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "Al Flowers" : "0", + "Aswar Rahman" : "0", + "Betsy Hodges" : "0", + "Captain Jack Sparrow" : "0", + "Charlie Gers" : "0", + "Christopher Zimmerman" : "0", + "David John Wilson" : "0", + "David Rosenfeld" : "0", + "Gregg A. Iverson" : "0", + "Ian Simpson" : "0", + "Jacob Frey" : "1", + "L.A. Nik" : "0", + "Nekima Levy-Pounds" : "0", + "Raymond Dehn" : "0", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "0", + "Troy Benjegerdes" : "0", + "Undeclared Write-ins" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Aswar Rahman", + "transfers" : { } + }, { + "eliminated" : "David Rosenfeld", + "transfers" : { } + }, { + "eliminated" : "Raymond Dehn", + "transfers" : { } + }, { + "eliminated" : "L.A. Nik", + "transfers" : { } + }, { + "eliminated" : "Undeclared Write-ins", + "transfers" : { } + }, { + "eliminated" : "Christopher Zimmerman", + "transfers" : { } + }, { + "eliminated" : "Ronald Lischeid", + "transfers" : { } + }, { + "eliminated" : "Ian Simpson", + "transfers" : { } + }, { + "eliminated" : "Charlie Gers", + "transfers" : { } + }, { + "eliminated" : "Captain Jack Sparrow", + "transfers" : { } + }, { + "eliminated" : "Theron Preston Washington", + "transfers" : { } + }, { + "eliminated" : "David John Wilson", + "transfers" : { } + }, { + "eliminated" : "Gregg A. Iverson", + "transfers" : { } + }, { + "eliminated" : "Troy Benjegerdes", + "transfers" : { } + }, { + "eliminated" : "Al Flowers", + "transfers" : { } + } ], + "threshold" : "3" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "1", + "Nekima Levy-Pounds" : "0", + "Tom Hoch" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Nekima Levy-Pounds", + "transfers" : { } + } ], + "threshold" : "3" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "1", + "Tom Hoch" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Tom Hoch", + "transfers" : { } + } ], + "threshold" : "3" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "1" + }, + "tallyResults" : [ { + "elected" : "Jacob Frey", + "transfers" : { } + } ], + "threshold" : "3" + } ], + "summary" : { + "finalThreshold" : "3", + "numCandidates" : 19, + "numWinners" : 1, + "totalNumBallots" : "1", + "undervotes" : 0 + } +} \ No newline at end of file diff --git a/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv b/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv new file mode 100644 index 000000000..5539f3e47 --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.csv @@ -0,0 +1,45 @@ +Contest Information +Generated By,RCTab 1.3.999 +CSV Format Version,1 +Type of Election,Single-Winner +Contest,Precinct example +Jurisdiction,"Minneapolis, MN" +Office,Mayor +Date,2017-11-07 +Winner(s),Betsy Hodges +Final Threshold,42 +Precinct,MINNEAPOLIS W-1 P-02 + +Contest Summary +Number to be Elected,1 +Number of Candidates,19 +Total Number of Ballots,1 +Number of Undervotes,0 + +Rounds,Round 1 Votes,% of vote,transfer,Round 2 Votes,% of vote,transfer,Round 3 Votes,% of vote,transfer,Round 4 Votes,% of vote,transfer,Round 5 Votes,% of vote,transfer +Nekima Levy-Pounds,1,100.0%,0,1,100.0%,-1,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Aswar Rahman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Tom Hoch,0,0.0%,0,0,0.0%,1,1,100.0%,-1,0,0.0%,0,0,0.0%,0 +David Rosenfeld,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Raymond Dehn,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +L.A. Nik,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Christopher Zimmerman,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Betsy Hodges,0,0.0%,0,0,0.0%,0,0,0.0%,1,1,100.0%,0,1,100.0%,0 +Ronald Lischeid,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Jacob Frey,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Ian Simpson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Charlie Gers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Captain Jack Sparrow,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Theron Preston Washington,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +David John Wilson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Gregg A. Iverson,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Troy Benjegerdes,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Al Flowers,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Undeclared Write-ins,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0,0,0.0%,0 +Active Ballots,1,,,1,,,1,,,1,,,1,, +Current Round Threshold,50,,,50,,,49,,,46,,,42,, +Inactive Ballots by Overvotes,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Skipped Rankings,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Exhausted Choices,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots by Repeated Rankings,0,,0,0,,0,0,,0,0,,0,0,,0 +Inactive Ballots Total,0,,0,0,,0,0,,0,0,,0,0,,0 diff --git a/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.json b/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.json new file mode 100644 index 000000000..4f4b1525d --- /dev/null +++ b/src/test/resources/network/brightspots/rcv/test_data/precinct_example/precinct_example_expected_MINNEAPOLIS_W-1_P-02_precinct_summary.json @@ -0,0 +1,183 @@ +{ + "config" : { + "contest" : "Precinct example", + "date" : "2017-11-07", + "generatedBy" : "RCTab 1.3.999", + "jurisdiction" : "Minneapolis, MN", + "office" : "Mayor", + "precinct" : "MINNEAPOLIS W-1 P-02" + }, + "jsonFormatVersion" : "1", + "results" : [ { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 1, + "tally" : { + "Al Flowers" : "0", + "Aswar Rahman" : "0", + "Betsy Hodges" : "0", + "Captain Jack Sparrow" : "0", + "Charlie Gers" : "0", + "Christopher Zimmerman" : "0", + "David John Wilson" : "0", + "David Rosenfeld" : "0", + "Gregg A. Iverson" : "0", + "Ian Simpson" : "0", + "Jacob Frey" : "0", + "L.A. Nik" : "0", + "Nekima Levy-Pounds" : "1", + "Raymond Dehn" : "0", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "0", + "Troy Benjegerdes" : "0", + "Undeclared Write-ins" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Undeclared Write-ins", + "transfers" : { } + } ], + "threshold" : "50" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 2, + "tally" : { + "Al Flowers" : "0", + "Aswar Rahman" : "0", + "Betsy Hodges" : "0", + "Captain Jack Sparrow" : "0", + "Charlie Gers" : "0", + "Christopher Zimmerman" : "0", + "David John Wilson" : "0", + "David Rosenfeld" : "0", + "Gregg A. Iverson" : "0", + "Ian Simpson" : "0", + "Jacob Frey" : "0", + "L.A. Nik" : "0", + "Nekima Levy-Pounds" : "1", + "Raymond Dehn" : "0", + "Ronald Lischeid" : "0", + "Theron Preston Washington" : "0", + "Tom Hoch" : "0", + "Troy Benjegerdes" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Aswar Rahman", + "transfers" : { } + }, { + "eliminated" : "David Rosenfeld", + "transfers" : { } + }, { + "eliminated" : "L.A. Nik", + "transfers" : { } + }, { + "eliminated" : "Christopher Zimmerman", + "transfers" : { } + }, { + "eliminated" : "Ronald Lischeid", + "transfers" : { } + }, { + "eliminated" : "Ian Simpson", + "transfers" : { } + }, { + "eliminated" : "Charlie Gers", + "transfers" : { } + }, { + "eliminated" : "Captain Jack Sparrow", + "transfers" : { } + }, { + "eliminated" : "Theron Preston Washington", + "transfers" : { } + }, { + "eliminated" : "David John Wilson", + "transfers" : { } + }, { + "eliminated" : "Gregg A. Iverson", + "transfers" : { } + }, { + "eliminated" : "Troy Benjegerdes", + "transfers" : { } + }, { + "eliminated" : "Al Flowers", + "transfers" : { } + }, { + "eliminated" : "Nekima Levy-Pounds", + "transfers" : { + "Tom Hoch" : "1" + } + } ], + "threshold" : "50" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 3, + "tally" : { + "Betsy Hodges" : "0", + "Jacob Frey" : "0", + "Raymond Dehn" : "0", + "Tom Hoch" : "1" + }, + "tallyResults" : [ { + "eliminated" : "Tom Hoch", + "transfers" : { + "Betsy Hodges" : "1" + } + } ], + "threshold" : "49" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 4, + "tally" : { + "Betsy Hodges" : "1", + "Jacob Frey" : "0", + "Raymond Dehn" : "0" + }, + "tallyResults" : [ { + "eliminated" : "Raymond Dehn", + "transfers" : { } + } ], + "threshold" : "46" + }, { + "inactiveBallots" : { + "exhaustedChoices" : "0", + "overvotes" : "0", + "repeatedRankings" : "0", + "skippedRankings" : "0" + }, + "round" : 5, + "tally" : { + "Betsy Hodges" : "1", + "Jacob Frey" : "0" + }, + "tallyResults" : [ { + "elected" : "Betsy Hodges", + "transfers" : { } + } ], + "threshold" : "42" + } ], + "summary" : { + "finalThreshold" : "42", + "numCandidates" : 19, + "numWinners" : 1, + "totalNumBallots" : "1", + "undervotes" : 0 + } +} \ No newline at end of file