From 41219595ea03a03836e0909eee324da5fd1f586d Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Fri, 19 Jan 2024 13:34:34 -0600 Subject: [PATCH 01/21] Use string unions instead of enums in the SDK This updates the SDK to use string unions instead of enums for `ProofStatus` and `CircuitStatus`. This allows us to have a single non-type export for the SDK so that we can use the CJS/ESM interop capability of tsup in the build process so that `require().default` isn't required. ``` > require('./dist/lib/index.js') _class { pollingInterval: 1000 } ``` Merges #56 LGTM given by: @katiemckeon --- package.json | 6 ++-- src/cli/deploy.ts | 8 ++--- src/lib/api/core/OpenAPI.ts | 2 +- src/lib/api/core/request.ts | 1 + src/lib/api/index.ts | 7 ++-- .../api/models/CircomCircuitInfoResponse.ts | 4 +-- src/lib/api/models/CircuitCreateInput.ts | 11 ------- src/lib/api/models/CircuitStatus.ts | 7 +--- src/lib/api/models/CircuitType.ts | 7 +--- .../api/models/GnarkCircuitInfoResponse.ts | 4 +-- .../api/models/Halo2CircuitInfoResponse.ts | 3 +- src/lib/api/models/NoirCircuitInfoResponse.ts | 4 +-- src/lib/api/models/ProofStatus.ts | 7 +--- src/lib/api/services/CircuitsService.ts | 32 +++++++++++++++++-- src/lib/api/services/ProofsService.ts | 24 ++++++++++++++ src/lib/client.ts | 10 ++---- src/lib/index.ts | 2 +- 17 files changed, 79 insertions(+), 60 deletions(-) delete mode 100644 src/lib/api/models/CircuitCreateInput.ts diff --git a/package.json b/package.json index 270d265..4b36a3e 100644 --- a/package.json +++ b/package.json @@ -49,9 +49,9 @@ "download-sindri-manifest-schema": "nwget https://sindri.app/api/v1/sindri-manifest-schema.json -O sindri-manifest.json && prettier --write sindri-manifest.json", "download-sindri-manifest-schema:dev": "nwget http://localhost/api/v1/sindri-manifest-schema.json -O sindri-manifest.json && prettier --write sindri-manifest.json", "download-sindri-manifest-schema:docker": "nwget http://host.docker.internal/api/v1/sindri-manifest-schema.json -O sindri-manifest.json && prettier --write sindri-manifest.json", - "generate-api": "rm -rf src/lib/api/ && openapi --client axios --input https://sindri.app/api/openapi.json --output src/lib/api/ && prettier --write src/lib/api/**/*", - "generate-api:dev": "rm -rf src/lib/api/ && openapi --client axios --input http://localhost/api/openapi.json --output src/lib/api/ && prettier --write src/lib/api/**/*", - "generate-api:docker": "rm -rf src/lib/api/ && openapi --client axios --input http://host.docker.internal/api/openapi.json --output src/lib/api/ && prettier --write src/lib/api/**/*", + "generate-api": "rm -rf src/lib/api/ && openapi --client axios --input https://sindri.app/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", + "generate-api:dev": "rm -rf src/lib/api/ && openapi --client axios --input http://localhost/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", + "generate-api:docker": "rm -rf src/lib/api/ && openapi --client axios --input http://host.docker.internal/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", "lint": "eslint '**/*.{js,ts}'", "format": "prettier --write '**/*.{js,json,md,ts}'", "test": "yarn build && ava", diff --git a/src/cli/deploy.ts b/src/cli/deploy.ts index 7895373..abf59e7 100644 --- a/src/cli/deploy.ts +++ b/src/cli/deploy.ts @@ -181,20 +181,20 @@ export const deployCommand = new Command() } const elapsedSeconds = ((Date.now() - startTime) / 1000).toFixed(1); - if (response.status === CircuitStatus.READY) { + if (response.status === "Ready") { logger.info( `Circuit compiled successfully after ${elapsedSeconds} seconds.`, ); break; - } else if (response.status === CircuitStatus.FAILED) { + } else if (response.status === "Failed") { logger.error( `Circuit compilation failed after ${elapsedSeconds} seconds: ` + (response.error ?? "Unknown error."), ); return process.exit(1); - } else if (response.status === CircuitStatus.QUEUED) { + } else if (response.status === "Queued") { logger.debug("Circuit compilation is queued."); - } else if (response.status === CircuitStatus.IN_PROGRESS) { + } else if (response.status === "In Progress") { logger.debug("Circuit compilation is in progress."); } } catch (error) { diff --git a/src/lib/api/core/OpenAPI.ts b/src/lib/api/core/OpenAPI.ts index a26abea..190f65e 100644 --- a/src/lib/api/core/OpenAPI.ts +++ b/src/lib/api/core/OpenAPI.ts @@ -21,7 +21,7 @@ export type OpenAPIConfig = { export const OpenAPI: OpenAPIConfig = { BASE: "https://sindri.app", - VERSION: "1.5.10", + VERSION: "1.5.33", WITH_CREDENTIALS: false, CREDENTIALS: "include", TOKEN: undefined, diff --git a/src/lib/api/core/request.ts b/src/lib/api/core/request.ts index 234363e..4ea423e 100644 --- a/src/lib/api/core/request.ts +++ b/src/lib/api/core/request.ts @@ -171,6 +171,7 @@ export const getHeaders = async ( const username = await resolve(options, config.USERNAME); const password = await resolve(options, config.PASSWORD); const additionalHeaders = await resolve(options, config.HEADERS); + // DO NOT REMOVE THIS, MANUAL EDIT! const formHeaders = (formData && "getHeaders" in formData && diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index a7d7278..a43047b 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -12,10 +12,9 @@ export type { APIKeyDoesNotExistResponse } from './models/APIKeyDoesNotExistResp export type { APIKeyErrorResponse } from './models/APIKeyErrorResponse'; export type { APIKeyResponse } from './models/APIKeyResponse'; export type { CircomCircuitInfoResponse } from './models/CircomCircuitInfoResponse'; -export type { CircuitCreateInput } from './models/CircuitCreateInput'; export type { CircuitDoesNotExistResponse } from './models/CircuitDoesNotExistResponse'; -export { CircuitStatus } from './models/CircuitStatus'; -export { CircuitType } from './models/CircuitType'; +export type { CircuitStatus } from './models/CircuitStatus'; +export type { CircuitType } from './models/CircuitType'; export type { ComingSoonResponse } from './models/ComingSoonResponse'; export type { ForgeInternalErrorResponse } from './models/ForgeInternalErrorResponse'; export type { ForgeInvalidUploadResponse } from './models/ForgeInvalidUploadResponse'; @@ -26,7 +25,7 @@ export type { ObtainApikeyInput } from './models/ObtainApikeyInput'; export type { ProofCannotBeCreatedResponse } from './models/ProofCannotBeCreatedResponse'; export type { ProofDoesNotExistResponse } from './models/ProofDoesNotExistResponse'; export type { ProofInfoResponse } from './models/ProofInfoResponse'; -export { ProofStatus } from './models/ProofStatus'; +export type { ProofStatus } from './models/ProofStatus'; export type { Schema } from './models/Schema'; export type { TeamDetail } from './models/TeamDetail'; export type { TeamMeResponse } from './models/TeamMeResponse'; diff --git a/src/lib/api/models/CircomCircuitInfoResponse.ts b/src/lib/api/models/CircomCircuitInfoResponse.ts index 5cde87b..6b21b26 100644 --- a/src/lib/api/models/CircomCircuitInfoResponse.ts +++ b/src/lib/api/models/CircomCircuitInfoResponse.ts @@ -11,9 +11,10 @@ import type { CircuitType } from "./CircuitType"; */ export type CircomCircuitInfoResponse = { circuit_id: string; - circuit_type: CircuitType; circuit_name: string; + circuit_type: CircuitType; date_created: string; + proving_scheme: string; status: CircuitStatus; compute_time?: number; compute_times?: any; @@ -30,7 +31,6 @@ export type CircomCircuitInfoResponse = { num_private_inputs?: number; num_public_inputs?: number; num_wires?: number; - proving_scheme: string; trusted_setup_file: string; witness_compiler: string; }; diff --git a/src/lib/api/models/CircuitCreateInput.ts b/src/lib/api/models/CircuitCreateInput.ts deleted file mode 100644 index e63d575..0000000 --- a/src/lib/api/models/CircuitCreateInput.ts +++ /dev/null @@ -1,11 +0,0 @@ -/* generated using openapi-typescript-codegen -- do no edit */ -/* istanbul ignore file */ -/* tslint:disable */ -/* eslint-disable */ - -/** - * Client input when creating a circuit. - */ -export type CircuitCreateInput = { - tags: Array; -}; diff --git a/src/lib/api/models/CircuitStatus.ts b/src/lib/api/models/CircuitStatus.ts index 2760868..f5b5c41 100644 --- a/src/lib/api/models/CircuitStatus.ts +++ b/src/lib/api/models/CircuitStatus.ts @@ -6,9 +6,4 @@ /** * CircuitStatus choices */ -export enum CircuitStatus { - QUEUED = "Queued", - IN_PROGRESS = "In Progress", - READY = "Ready", - FAILED = "Failed", -} +export type CircuitStatus = "Queued" | "In Progress" | "Ready" | "Failed"; diff --git a/src/lib/api/models/CircuitType.ts b/src/lib/api/models/CircuitType.ts index 79c967e..73b9828 100644 --- a/src/lib/api/models/CircuitType.ts +++ b/src/lib/api/models/CircuitType.ts @@ -6,9 +6,4 @@ /** * CircuitType choices */ -export enum CircuitType { - CIRCOM = "circom", - GNARK = "gnark", - HALO2 = "halo2", - NOIR = "noir", -} +export type CircuitType = "circom" | "gnark" | "halo2" | "noir"; diff --git a/src/lib/api/models/GnarkCircuitInfoResponse.ts b/src/lib/api/models/GnarkCircuitInfoResponse.ts index 26d044b..eeb9fc6 100644 --- a/src/lib/api/models/GnarkCircuitInfoResponse.ts +++ b/src/lib/api/models/GnarkCircuitInfoResponse.ts @@ -11,9 +11,10 @@ import type { CircuitType } from "./CircuitType"; */ export type GnarkCircuitInfoResponse = { circuit_id: string; - circuit_type: CircuitType; circuit_name: string; + circuit_type: CircuitType; date_created: string; + proving_scheme: string; status: CircuitStatus; compute_time?: number; compute_times?: any; @@ -27,5 +28,4 @@ export type GnarkCircuitInfoResponse = { curve: string; gnark_version: string; package_name: string; - proving_scheme: string; }; diff --git a/src/lib/api/models/Halo2CircuitInfoResponse.ts b/src/lib/api/models/Halo2CircuitInfoResponse.ts index 10b29fa..9da840f 100644 --- a/src/lib/api/models/Halo2CircuitInfoResponse.ts +++ b/src/lib/api/models/Halo2CircuitInfoResponse.ts @@ -11,9 +11,10 @@ import type { CircuitType } from "./CircuitType"; */ export type Halo2CircuitInfoResponse = { circuit_id: string; - circuit_type: CircuitType; circuit_name: string; + circuit_type: CircuitType; date_created: string; + proving_scheme: string; status: CircuitStatus; compute_time?: number; compute_times?: any; diff --git a/src/lib/api/models/NoirCircuitInfoResponse.ts b/src/lib/api/models/NoirCircuitInfoResponse.ts index ad23419..22253c0 100644 --- a/src/lib/api/models/NoirCircuitInfoResponse.ts +++ b/src/lib/api/models/NoirCircuitInfoResponse.ts @@ -11,9 +11,10 @@ import type { CircuitType } from "./CircuitType"; */ export type NoirCircuitInfoResponse = { circuit_id: string; - circuit_type: CircuitType; circuit_name: string; + circuit_type: CircuitType; date_created: string; + proving_scheme: string; status: CircuitStatus; compute_time?: number; compute_times?: any; @@ -26,5 +27,4 @@ export type NoirCircuitInfoResponse = { acir_opcodes?: number; circuit_size?: number; nargo_package_name: string; - proving_scheme: string; }; diff --git a/src/lib/api/models/ProofStatus.ts b/src/lib/api/models/ProofStatus.ts index dfa9774..6908685 100644 --- a/src/lib/api/models/ProofStatus.ts +++ b/src/lib/api/models/ProofStatus.ts @@ -6,9 +6,4 @@ /** * ProofStatus choices */ -export enum ProofStatus { - QUEUED = "Queued", - IN_PROGRESS = "In Progress", - READY = "Ready", - FAILED = "Failed", -} +export type ProofStatus = "Queued" | "In Progress" | "Ready" | "Failed"; diff --git a/src/lib/api/services/CircuitsService.ts b/src/lib/api/services/CircuitsService.ts index 4633fab..be1910c 100644 --- a/src/lib/api/services/CircuitsService.ts +++ b/src/lib/api/services/CircuitsService.ts @@ -2,10 +2,10 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ -import { FormData } from "formdata-node"; +import { FormData } from "lib/isomorphic"; // DO NOT REMOVE OR CHANGE THIS, MANUAL EDIT!!! +import type { ActionResponse } from "../models/ActionResponse"; import type { CircomCircuitInfoResponse } from "../models/CircomCircuitInfoResponse"; -import type { CircuitCreateInput } from "../models/CircuitCreateInput"; import type { GnarkCircuitInfoResponse } from "../models/GnarkCircuitInfoResponse"; import type { Halo2CircuitInfoResponse } from "../models/Halo2CircuitInfoResponse"; import type { NoirCircuitInfoResponse } from "../models/NoirCircuitInfoResponse"; @@ -28,7 +28,10 @@ export class CircuitsService { | FormData // DO NOT REMOVE THIS! | { files: Array; - payload?: CircuitCreateInput; + /** + * Tags for a circuit. + */ + tags?: Array; }, ): CancelablePromise< | CircomCircuitInfoResponse @@ -112,6 +115,29 @@ export class CircuitsService { }); } + /** + * Delete Circuit + * Mark the specified circuit and any related proofs as deleted. + * @param circuitId + * @returns ActionResponse OK + * @throws ApiError + */ + public static circuitDelete( + circuitId: string, + ): CancelablePromise { + return __request(OpenAPI, { + method: "DELETE", + url: "/api/v1/circuit/{circuit_id}/delete", + path: { + circuit_id: circuitId, + }, + errors: { + 404: `Not Found`, + 500: `Internal Server Error`, + }, + }); + } + /** * Circuit Proofs * Return list of ProofInfoResponse for proofs of circuit_id related to team. diff --git a/src/lib/api/services/ProofsService.ts b/src/lib/api/services/ProofsService.ts index 92877ac..f3a07c0 100644 --- a/src/lib/api/services/ProofsService.ts +++ b/src/lib/api/services/ProofsService.ts @@ -2,6 +2,7 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ +import type { ActionResponse } from "../models/ActionResponse"; import type { ProofInfoResponse } from "../models/ProofInfoResponse"; import type { CancelablePromise } from "../core/CancelablePromise"; @@ -76,4 +77,27 @@ export class ProofsService { }, }); } + + /** + * Delete Proof + * Mark the specified proof as deleted. + * @param proofId + * @returns ActionResponse OK + * @throws ApiError + */ + public static proofDelete( + proofId: string, + ): CancelablePromise { + return __request(OpenAPI, { + method: "DELETE", + url: "/api/v1/proof/{proof_id}/delete", + path: { + proof_id: proofId, + }, + errors: { + 404: `Not Found`, + 500: `Internal Server Error`, + }, + }); + } } diff --git a/src/lib/client.ts b/src/lib/client.ts index 81a5613..16d6ce0 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -458,10 +458,7 @@ export class Client { let response: CircuitInfoResponse; while (true) { response = await CircuitsService.circuitDetail(circuitId, false); - if ( - response.status === CircuitStatus.READY || - response.status === CircuitStatus.FAILED - ) { + if (response.status === "Ready" || response.status === "Failed") { break; } @@ -600,10 +597,7 @@ export class Client { let response: ProofInfoResponse; while (true) { response = await ProofsService.proofDetail(createResponse.proof_id); - if ( - response.status === ProofStatus.READY || - response.status === ProofStatus.FAILED - ) { + if (response.status === "Ready" || response.status === "Failed") { break; } diff --git a/src/lib/index.ts b/src/lib/index.ts index bc31460..36b4832 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -2,5 +2,5 @@ import { Client } from "./client"; export default new Client(); -export * from "./client"; +export type * from "./client"; export type { LogLevel } from "./logging"; From 001c130ed17ad0c52a7902be5c65fef7335561ce Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Fri, 19 Jan 2024 13:46:39 -0600 Subject: [PATCH 02/21] Rename `Client` to `SindriClient` This renames the `Client` class and associated type to `SindriClient`. This aligns it more closely with the Python SDK and makes the type name less ambiguous for users because `Client` is commonly used and ambiguous. Merges #57 LGTM given by: @katiemckeon --- src/lib/client.ts | 18 +++++++++--------- src/lib/index.ts | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/client.ts b/src/lib/client.ts index 16d6ce0..6b58859 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -66,7 +66,7 @@ export interface AuthOptions { * as the central entry point for the SDK, facilitating various operations such as compiling ZKP * circuits and generating proofs. * - * The {@link Client} class encapsulates all the necessary methods and properties required to + * The {@link SindriClient} class encapsulates all the necessary methods and properties required to * communicate effectively with the Sindri ZKP service, handling tasks like authentication, request * management, and response processing. * @@ -74,12 +74,12 @@ export interface AuthOptions { * and then utilizing its methods to interact with the service. * * @example - * // Create an instance of the `Client` class. - * const client = new Client({ apiKey: 'your-api-key' }); + * // Create an instance of the `SindriClient` class. + * const client = new SindriClient({ apiKey: 'your-api-key' }); * * // Use the client to interact with the Sindri ZKP service... */ -export class Client { +export class SindriClient { /** * Represents the polling interval in milliseconds used for querying the status of an endpoint. * This value determines the frequency at which the SDK polls an endpoint to check for any changes @@ -102,21 +102,21 @@ export class Client { public pollingInterval: number = 1000; /** - * Constructs a new instance of the {@link Client} class for interacting with the Sindri ZKP + * Constructs a new instance of the {@link SindriClient} class for interacting with the Sindri ZKP * service. This constructor initializes the client with the necessary authentication options. * * The provided `authOptions` parameter allows for specifying authentication credentials and * configurations required for the client to communicate securely with the service. See - * {@link Client.authorize} for more details about how authentication credentials are sourced. + * {@link SindriClient.authorize} for more details about how authentication credentials are sourced. * * @param authOptions - The authentication options for the client, including * credentials like API keys or tokens. Defaults to an empty object if not provided. * * @example - * // Instantiating the Client with authentication options - * const client = new Client({ apiKey: 'sindri-...-fskd' }); + * // Instantiating the SindriClient with authentication options + * const client = new SindriClient({ apiKey: 'sindri-...-fskd' }); * - * @see {@link Client.authorize} for information on retrieving this value. + * @see {@link SindriClient.authorize} for information on retrieving this value. */ constructor(authOptions: AuthOptions = {}) { this.authorize(authOptions); diff --git a/src/lib/index.ts b/src/lib/index.ts index 36b4832..28b2a90 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1,6 +1,6 @@ -import { Client } from "./client"; +import { SindriClient } from "./client"; -export default new Client(); +export default new SindriClient(); export type * from "./client"; export type { LogLevel } from "./logging"; From 9fc84d329b2f823c07a9455bcf7cd4272a7111c5 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Sat, 27 Jan 2024 09:57:29 -0600 Subject: [PATCH 03/21] Regenerate API with recent changes This includes a handful of recent changes in the upstream API: * `/user/me/` is a GET request instead of a POST. Minor shuffling of response * fields (*e.g.* `num_proofs` added). New password change endpoint. The `/user/me/` change is really the key one, this breaks compatibility with previous releases of `sindri login`. A `CommonCircuitInfoResponse` type is now included as a possible response type in the schema, but this was only added as a workaround for a bug with django-ninja. I opted to manually remove it from the generated API because otherwise I would have had to change the public client types in a way that doesn't reflect reality. Merges #65 LGTM given by: @KPreisner --- src/lib/api/core/OpenAPI.ts | 2 +- src/lib/api/index.ts | 76 +++++++++---------- .../api/models/CircomCircuitInfoResponse.ts | 20 +++-- .../api/models/GnarkCircuitInfoResponse.ts | 18 +++-- .../api/models/Halo2CircuitInfoResponse.ts | 19 +++-- src/lib/api/models/NoirCircuitInfoResponse.ts | 16 +++- src/lib/api/models/ProofInfoResponse.ts | 16 +++- src/lib/api/services/InternalService.ts | 37 ++++++++- 8 files changed, 139 insertions(+), 65 deletions(-) diff --git a/src/lib/api/core/OpenAPI.ts b/src/lib/api/core/OpenAPI.ts index 190f65e..a1dde9d 100644 --- a/src/lib/api/core/OpenAPI.ts +++ b/src/lib/api/core/OpenAPI.ts @@ -21,7 +21,7 @@ export type OpenAPIConfig = { export const OpenAPI: OpenAPIConfig = { BASE: "https://sindri.app", - VERSION: "1.5.33", + VERSION: "1.5.40", WITH_CREDENTIALS: false, CREDENTIALS: "include", TOKEN: undefined, diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index a43047b..a9aa8c3 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -2,43 +2,43 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ -export { ApiError } from './core/ApiError'; -export { CancelablePromise, CancelError } from './core/CancelablePromise'; -export { OpenAPI } from './core/OpenAPI'; -export type { OpenAPIConfig } from './core/OpenAPI'; +export { ApiError } from "./core/ApiError"; +export { CancelablePromise, CancelError } from "./core/CancelablePromise"; +export { OpenAPI } from "./core/OpenAPI"; +export type { OpenAPIConfig } from "./core/OpenAPI"; -export type { ActionResponse } from './models/ActionResponse'; -export type { APIKeyDoesNotExistResponse } from './models/APIKeyDoesNotExistResponse'; -export type { APIKeyErrorResponse } from './models/APIKeyErrorResponse'; -export type { APIKeyResponse } from './models/APIKeyResponse'; -export type { CircomCircuitInfoResponse } from './models/CircomCircuitInfoResponse'; -export type { CircuitDoesNotExistResponse } from './models/CircuitDoesNotExistResponse'; -export type { CircuitStatus } from './models/CircuitStatus'; -export type { CircuitType } from './models/CircuitType'; -export type { ComingSoonResponse } from './models/ComingSoonResponse'; -export type { ForgeInternalErrorResponse } from './models/ForgeInternalErrorResponse'; -export type { ForgeInvalidUploadResponse } from './models/ForgeInvalidUploadResponse'; -export type { GnarkCircuitInfoResponse } from './models/GnarkCircuitInfoResponse'; -export type { Halo2CircuitInfoResponse } from './models/Halo2CircuitInfoResponse'; -export type { NoirCircuitInfoResponse } from './models/NoirCircuitInfoResponse'; -export type { ObtainApikeyInput } from './models/ObtainApikeyInput'; -export type { ProofCannotBeCreatedResponse } from './models/ProofCannotBeCreatedResponse'; -export type { ProofDoesNotExistResponse } from './models/ProofDoesNotExistResponse'; -export type { ProofInfoResponse } from './models/ProofInfoResponse'; -export type { ProofStatus } from './models/ProofStatus'; -export type { Schema } from './models/Schema'; -export type { TeamDetail } from './models/TeamDetail'; -export type { TeamMeResponse } from './models/TeamMeResponse'; -export type { TokenObtainPairInputSchema } from './models/TokenObtainPairInputSchema'; -export type { TokenObtainPairOutputSchema } from './models/TokenObtainPairOutputSchema'; -export type { TokenRefreshInputSchema } from './models/TokenRefreshInputSchema'; -export type { TokenRefreshOutputSchema } from './models/TokenRefreshOutputSchema'; -export type { TokenVerifyInputSchema } from './models/TokenVerifyInputSchema'; -export type { UserMeResponse } from './models/UserMeResponse'; -export type { ValidationErrorResponse } from './models/ValidationErrorResponse'; +export type { ActionResponse } from "./models/ActionResponse"; +export type { APIKeyDoesNotExistResponse } from "./models/APIKeyDoesNotExistResponse"; +export type { APIKeyErrorResponse } from "./models/APIKeyErrorResponse"; +export type { APIKeyResponse } from "./models/APIKeyResponse"; +export type { CircomCircuitInfoResponse } from "./models/CircomCircuitInfoResponse"; +export type { CircuitDoesNotExistResponse } from "./models/CircuitDoesNotExistResponse"; +export type { CircuitStatus } from "./models/CircuitStatus"; +export type { CircuitType } from "./models/CircuitType"; +export type { ComingSoonResponse } from "./models/ComingSoonResponse"; +export type { ForgeInternalErrorResponse } from "./models/ForgeInternalErrorResponse"; +export type { ForgeInvalidUploadResponse } from "./models/ForgeInvalidUploadResponse"; +export type { GnarkCircuitInfoResponse } from "./models/GnarkCircuitInfoResponse"; +export type { Halo2CircuitInfoResponse } from "./models/Halo2CircuitInfoResponse"; +export type { NoirCircuitInfoResponse } from "./models/NoirCircuitInfoResponse"; +export type { ObtainApikeyInput } from "./models/ObtainApikeyInput"; +export type { ProofCannotBeCreatedResponse } from "./models/ProofCannotBeCreatedResponse"; +export type { ProofDoesNotExistResponse } from "./models/ProofDoesNotExistResponse"; +export type { ProofInfoResponse } from "./models/ProofInfoResponse"; +export type { ProofStatus } from "./models/ProofStatus"; +export type { Schema } from "./models/Schema"; +export type { TeamDetail } from "./models/TeamDetail"; +export type { TeamMeResponse } from "./models/TeamMeResponse"; +export type { TokenObtainPairInputSchema } from "./models/TokenObtainPairInputSchema"; +export type { TokenObtainPairOutputSchema } from "./models/TokenObtainPairOutputSchema"; +export type { TokenRefreshInputSchema } from "./models/TokenRefreshInputSchema"; +export type { TokenRefreshOutputSchema } from "./models/TokenRefreshOutputSchema"; +export type { TokenVerifyInputSchema } from "./models/TokenVerifyInputSchema"; +export type { UserMeResponse } from "./models/UserMeResponse"; +export type { ValidationErrorResponse } from "./models/ValidationErrorResponse"; -export { AuthorizationService } from './services/AuthorizationService'; -export { CircuitsService } from './services/CircuitsService'; -export { InternalService } from './services/InternalService'; -export { ProofsService } from './services/ProofsService'; -export { TokenService } from './services/TokenService'; +export { AuthorizationService } from "./services/AuthorizationService"; +export { CircuitsService } from "./services/CircuitsService"; +export { InternalService } from "./services/InternalService"; +export { ProofsService } from "./services/ProofsService"; +export { TokenService } from "./services/TokenService"; diff --git a/src/lib/api/models/CircomCircuitInfoResponse.ts b/src/lib/api/models/CircomCircuitInfoResponse.ts index 6b21b26..2ba6714 100644 --- a/src/lib/api/models/CircomCircuitInfoResponse.ts +++ b/src/lib/api/models/CircomCircuitInfoResponse.ts @@ -14,23 +14,29 @@ export type CircomCircuitInfoResponse = { circuit_name: string; circuit_type: CircuitType; date_created: string; + num_proofs: number; proving_scheme: string; status: CircuitStatus; + team: string; + /** + * Total compute time in ISO8601 format. This does not include the Queued time. + */ compute_time?: number; + /** + * Total compute time in seconds. This does not include the Queued time. + */ + compute_time_sec?: number; compute_times?: any; - file_sizes?: Record; - metadata?: Record; + /** + * Total size of stored file(s) in bytes. + */ + file_size?: number; uploaded_file_name: string; - worker_hardware?: Record; verification_key?: Record; error?: string; curve: string; - degree?: number; num_constraints?: number; num_outputs?: number; num_private_inputs?: number; num_public_inputs?: number; - num_wires?: number; - trusted_setup_file: string; - witness_compiler: string; }; diff --git a/src/lib/api/models/GnarkCircuitInfoResponse.ts b/src/lib/api/models/GnarkCircuitInfoResponse.ts index eeb9fc6..33568db 100644 --- a/src/lib/api/models/GnarkCircuitInfoResponse.ts +++ b/src/lib/api/models/GnarkCircuitInfoResponse.ts @@ -14,18 +14,26 @@ export type GnarkCircuitInfoResponse = { circuit_name: string; circuit_type: CircuitType; date_created: string; + num_proofs: number; proving_scheme: string; status: CircuitStatus; + team: string; + /** + * Total compute time in ISO8601 format. This does not include the Queued time. + */ compute_time?: number; + /** + * Total compute time in seconds. This does not include the Queued time. + */ + compute_time_sec?: number; compute_times?: any; - file_sizes?: Record; - metadata?: Record; + /** + * Total size of stored file(s) in bytes. + */ + file_size?: number; uploaded_file_name: string; - worker_hardware?: Record; verification_key?: Record; error?: string; - circuit_struct_name: string; curve: string; gnark_version: string; - package_name: string; }; diff --git a/src/lib/api/models/Halo2CircuitInfoResponse.ts b/src/lib/api/models/Halo2CircuitInfoResponse.ts index 9da840f..c266246 100644 --- a/src/lib/api/models/Halo2CircuitInfoResponse.ts +++ b/src/lib/api/models/Halo2CircuitInfoResponse.ts @@ -14,21 +14,28 @@ export type Halo2CircuitInfoResponse = { circuit_name: string; circuit_type: CircuitType; date_created: string; + num_proofs: number; proving_scheme: string; status: CircuitStatus; + team: string; + /** + * Total compute time in ISO8601 format. This does not include the Queued time. + */ compute_time?: number; + /** + * Total compute time in seconds. This does not include the Queued time. + */ + compute_time_sec?: number; compute_times?: any; - file_sizes?: Record; - metadata?: Record; + /** + * Total size of stored file(s) in bytes. + */ + file_size?: number; uploaded_file_name: string; - worker_hardware?: Record; verification_key?: Record; error?: string; class_name: string; curve: string; degree: number; halo2_version: string; - package_name: string; - thread_builder: string; - trusted_setup_file: string; }; diff --git a/src/lib/api/models/NoirCircuitInfoResponse.ts b/src/lib/api/models/NoirCircuitInfoResponse.ts index 22253c0..26bd0d1 100644 --- a/src/lib/api/models/NoirCircuitInfoResponse.ts +++ b/src/lib/api/models/NoirCircuitInfoResponse.ts @@ -14,14 +14,24 @@ export type NoirCircuitInfoResponse = { circuit_name: string; circuit_type: CircuitType; date_created: string; + num_proofs: number; proving_scheme: string; status: CircuitStatus; + team: string; + /** + * Total compute time in ISO8601 format. This does not include the Queued time. + */ compute_time?: number; + /** + * Total compute time in seconds. This does not include the Queued time. + */ + compute_time_sec?: number; compute_times?: any; - file_sizes?: Record; - metadata?: Record; + /** + * Total size of stored file(s) in bytes. + */ + file_size?: number; uploaded_file_name: string; - worker_hardware?: Record; verification_key?: Record; error?: string; acir_opcodes?: number; diff --git a/src/lib/api/models/ProofInfoResponse.ts b/src/lib/api/models/ProofInfoResponse.ts index 90a739a..01e4203 100644 --- a/src/lib/api/models/ProofInfoResponse.ts +++ b/src/lib/api/models/ProofInfoResponse.ts @@ -17,15 +17,23 @@ export type ProofInfoResponse = { date_created: string; perform_verify: boolean; status: ProofStatus; + team: string; + /** + * Total compute time in ISO8601 format. This does not include the Queued time. + */ compute_time?: number; + /** + * Total compute time in seconds. This does not include the Queued time. + */ + compute_time_sec?: number; compute_times?: any; - file_sizes?: Record; - metadata?: Record; + /** + * Total size of stored file(s) in bytes. + */ + file_size?: number; proof_input?: Record; proof?: Record; - prover_implementation?: Record; public?: any; - worker_hardware?: Record; verification_key?: Record; error?: string; }; diff --git a/src/lib/api/services/InternalService.ts b/src/lib/api/services/InternalService.ts index b357472..e8011b6 100644 --- a/src/lib/api/services/InternalService.ts +++ b/src/lib/api/services/InternalService.ts @@ -2,6 +2,7 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ +import type { ActionResponse } from "../models/ActionResponse"; import type { TeamMeResponse } from "../models/TeamMeResponse"; import type { UserMeResponse } from "../models/UserMeResponse"; @@ -10,6 +11,40 @@ import { OpenAPI } from "../core/OpenAPI"; import { request as __request } from "../core/request"; export class InternalService { + /** + * Change user password (requires JWT authentication) + * Change password for a user. + * + * This endpoint requires JWT authentication in order + * to know which user is making the request. It expects to receive + * an authenticated user in `request.auth`. + * + * We subsequently verify the old password and then update the user's password. + * @param formData + * @returns ActionResponse OK + * @throws ApiError + */ + public static passwordChangeWithJwtAuth(formData: { + /** + * Old password. + */ + old_password: string; + /** + * New password. + */ + new_password: string; + }): CancelablePromise { + return __request(OpenAPI, { + method: "POST", + url: "/api/v1/password/change", + formData: formData, + mediaType: "application/x-www-form-urlencoded", + errors: { + 422: `Unprocessable Entity`, + }, + }); + } + /** * Return the JSON schema for `sindri.json` manifest files * Return the JSON schema for `sindri.json` manifest files @@ -48,7 +83,7 @@ export class InternalService { */ public static userMeWithJwtAuth(): CancelablePromise { return __request(OpenAPI, { - method: "POST", + method: "GET", url: "/api/v1/user/me", }); } From cabbd99c15aa82efb685b26e9619c760c38e2639 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 31 Jan 2024 12:32:59 -0600 Subject: [PATCH 04/21] Add node version testing matrix and specify compatible engines This adds a testing matrix that covers node versions 18-21, and specifies the minimum node engine version in `package.json` as v18.3.0. One blocker to supporting earlier versions is that `buffer.File` was added in v18.3.0. I took a stab at removing this, but ran into a lot of issues trying to get things to work without it. v16 was EOLed last year though, so I don't think this is that major of an issue. It will be easier to test against earlier versions now with the testing matrix if we do decide we want to support them. One notable thing is that the `--loader` vs `--import` argument depends on versions in fairly complex ways. I think that it's roughly `--import` for `>=18.19.0 < 19.0.0 || >=v20.6.0` and `--loader` for everything else, and I have a commit in here with something like that working in the ava config, but ultimately went with running ava with tsx like `tsx ./node_modules/.bin/ava` because I'm more confident that this will work with any node version (despite the fact that it's a bit hackier). Closes #64 Merges #67 --- .github/workflows/ci.yaml | 20 +++-- .tool-versions | 3 +- Dockerfile | 10 ++- ava.config.mjs | 1 - package.json | 29 +++---- yarn.lock | 154 ++++++++++++++++++++++++++++++++++++-- 6 files changed, 190 insertions(+), 27 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 37809a0..029fd32 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,6 +9,9 @@ on: jobs: lint-and-test: + strategy: + matrix: + version: [18, 19, 20, 21] runs-on: ubuntu-latest steps: - name: Checkout code @@ -18,12 +21,12 @@ jobs: id: setup-node uses: actions/setup-node@v3 with: - node-version: 18.18.2 + node-version: ${{ matrix.version }} cache: yarn - name: Install JavaScript Dependencies run: | - yarn install --frozen-lockfile + yarn install --frozen-lockfile --ignore-engines - name: Lint if: success() || failure() @@ -40,11 +43,18 @@ jobs: run: | yarn build - - name: Install Chrome Dependencies - if: success() || failure() + # We only run the browser tests for the development version of node because the browser environment + # is independent of the node version, so all that matters is the build we deploy works in the browser. + - name: Conditionally Install Chrome Dependencies + if: (success() || failure()) && matrix.version == 18 run: | sudo apt-get install -y libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgbm1 libasound2 libpangocairo-1.0-0 libxss1 libgtk-3-0 + - name: Conditionally Remove Browser Tests + if: (success() || failure()) && matrix.version != 18 + run: | + rm test/browser.test.ts + - name: Test if: success() || failure() run: | @@ -61,7 +71,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18.18.2 + node-version: 18.19.0 registry-url: "https://registry.npmjs.org" - name: Extract Version from Tag diff --git a/.tool-versions b/.tool-versions index 5b6587a..c8b51a4 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1,2 @@ -nodejs v18.18.2 +nodejs v18.19.0 +yarn 1.22.19 diff --git a/Dockerfile b/Dockerfile index e46449b..9845e28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.18.2-slim as development +FROM node:18.19.0-slim as development ENV NODE_ENV=development # Optionally convert the user to another UID/GUID to match host user file permissions. @@ -50,10 +50,16 @@ WORKDIR /sindri/ # Link the `sindri-js` project. # We need at least `package.json` and a stub for the CLI to create the symlinks, # then we'll bind mount over this with the real project at runtime with docker compose. +# Running `npm link` requires `patch-package` to be in the PATH as a `postinstall` script, +# so we create a small stub script to satisfy this requirement and then delete it. COPY ./package.json /sindri/package.json RUN mkdir -p dist/cli/ && \ touch dist/cli/index.js && \ chmod u+x dist/cli/index.js && \ - npm link + echo "#! /bin/sh" > patch-package && \ + chmod u+x patch-package && \ + export PATH="./:$PATH" && \ + npm link && \ + rm patch-package CMD ["/bin/sh", "-c", "yarn install && yarn build:watch"] diff --git a/ava.config.mjs b/ava.config.mjs index e150149..9105264 100644 --- a/ava.config.mjs +++ b/ava.config.mjs @@ -12,7 +12,6 @@ export default { ts: "module", }, files: ["test/**/*.test.ts"], - nodeArguments: ["--loader=tsx"], // Increase the timeout if we expect to make live API calls. timeout: ["dryrun", "record", "update", "wild"].includes( process.env.NOCK_BACK_MODE ?? "lockdown", diff --git a/package.json b/package.json index 4b36a3e..947e222 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,9 @@ "templates/", "tsconfig.json" ], + "engines": { + "node": ">=18.13.0" + }, "main": "dist/lib/index.js", "module": "dist/lib/index.mjs", "bin": { @@ -54,10 +57,10 @@ "generate-api:docker": "rm -rf src/lib/api/ && openapi --client axios --input http://host.docker.internal/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", "lint": "eslint '**/*.{js,ts}'", "format": "prettier --write '**/*.{js,json,md,ts}'", - "test": "yarn build && ava", - "test:fast": "ava", + "test": "yarn build && yarn test:fast", + "test:fast": "tsx ./node_modules/.bin/ava", "test:record": "NOCK_BACK_MODE=update yarn test", - "test:watch": "NODE_ENV=development NOCK_BACK_MODE=dryrun nodemon --watch src/ --watch test/ --ext js,cjs,mjs,ts,cts,mts --exec 'tsup --silent && ava'", + "test:watch": "NODE_ENV=development NOCK_BACK_MODE=dryrun nodemon --watch src/ --watch test/ --ext js,cjs,mjs,ts,cts,mts --exec 'tsup --silent && tsx ./node_modules/.bin/ava'", "type-check": "tsc --noEmit", "/***** Hooks *****/": "", "postinstall": "patch-package" @@ -74,6 +77,16 @@ "dependencies": { "@commander-js/extra-typings": "^11.1.0", "@inquirer/prompts": "^3.3.0", + "@tsconfig/node18": "^18.2.2", + "@types/get-port": "^4.2.0", + "@types/gzip-js": "^0.3.5", + "@types/ignore-walk": "^4.0.3", + "@types/lodash": "^4.14.202", + "@types/node": "^20.9.1", + "@types/nunjucks": "^3.2.6", + "@types/proxy": "^1.0.4", + "@types/tar": "^6.1.10", + "@types/tar-js": "^0.3.5", "axios": "^1.6.2", "commander": "^11.1.0", "env-paths": "^2.2.1", @@ -90,16 +103,6 @@ "rc": "^1.2.8", "tar": "^6.2.0", "tar-js": "^0.3.0", - "@tsconfig/node18": "^18.2.2", - "@types/get-port": "^4.2.0", - "@types/gzip-js": "^0.3.5", - "@types/ignore-walk": "^4.0.3", - "@types/lodash": "^4.14.202", - "@types/node": "^20.9.1", - "@types/nunjucks": "^3.2.6", - "@types/proxy": "^1.0.4", - "@types/tar": "^6.1.10", - "@types/tar-js": "^0.3.5", "zod": "^3.22.4" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index e0508e8..1864f45 100644 --- a/yarn.lock +++ b/yarn.lock @@ -57,11 +57,21 @@ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.11.tgz#2acd20be6d4f0458bc8c784103495ff24f13b1d3" integrity sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g== +"@esbuild/aix-ppc64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f" + integrity sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA== + "@esbuild/android-arm64@0.19.11": version "0.19.11" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.11.tgz#b45d000017385c9051a4f03e17078abb935be220" integrity sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q== +"@esbuild/android-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4" + integrity sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA== + "@esbuild/android-arm64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz#276c5f99604054d3dbb733577e09adae944baa90" @@ -72,6 +82,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.11.tgz#f46f55414e1c3614ac682b29977792131238164c" integrity sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw== +"@esbuild/android-arm@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824" + integrity sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w== + "@esbuild/android-arm@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.5.tgz#4a3cbf14758166abaae8ba9c01a80e68342a4eec" @@ -82,6 +97,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.11.tgz#bfc01e91740b82011ef503c48f548950824922b2" integrity sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg== +"@esbuild/android-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d" + integrity sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew== + "@esbuild/android-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.5.tgz#21a3d11cd4613d2d3c5ccb9e746c254eb9265b0a" @@ -92,6 +112,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz#533fb7f5a08c37121d82c66198263dcc1bed29bf" integrity sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ== +"@esbuild/darwin-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e" + integrity sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g== + "@esbuild/darwin-arm64@0.19.5": version "0.19.5" resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.5.tgz" @@ -102,6 +127,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.11.tgz#62f3819eff7e4ddc656b7c6815a31cf9a1e7d98e" integrity sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g== +"@esbuild/darwin-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd" + integrity sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A== + "@esbuild/darwin-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.5.tgz#2c553e97a6d2b4ae76a884e35e6cbab85a990bbf" @@ -112,6 +142,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.11.tgz#d478b4195aa3ca44160272dab85ef8baf4175b4a" integrity sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA== +"@esbuild/freebsd-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487" + integrity sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA== + "@esbuild/freebsd-arm64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.5.tgz#d554f556718adb31917a0da24277bf84b6ee87f3" @@ -122,6 +157,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.11.tgz#7bdcc1917409178257ca6a1a27fe06e797ec18a2" integrity sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw== +"@esbuild/freebsd-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c" + integrity sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg== + "@esbuild/freebsd-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.5.tgz#288f7358a3bb15d99e73c65c9adaa3dabb497432" @@ -129,9 +169,14 @@ "@esbuild/linux-arm64@0.19.11": version "0.19.11" - resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz#58ad4ff11685fcc735d7ff4ca759ab18fcfe4545" integrity sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg== +"@esbuild/linux-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b" + integrity sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA== + "@esbuild/linux-arm64@0.19.5": version "0.19.5" resolved "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.5.tgz" @@ -142,6 +187,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.11.tgz#ce82246d873b5534d34de1e5c1b33026f35e60e3" integrity sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q== +"@esbuild/linux-arm@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef" + integrity sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w== + "@esbuild/linux-arm@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.5.tgz#0acef93aa3e0579e46d33b666627bddb06636664" @@ -152,6 +202,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.11.tgz#cbae1f313209affc74b80f4390c4c35c6ab83fa4" integrity sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA== +"@esbuild/linux-ia32@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601" + integrity sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA== + "@esbuild/linux-ia32@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.5.tgz#b6e5c9e80b42131cbd6b1ddaa48c92835f1ed67f" @@ -162,6 +217,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.11.tgz#5f32aead1c3ec8f4cccdb7ed08b166224d4e9121" integrity sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg== +"@esbuild/linux-loong64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299" + integrity sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA== + "@esbuild/linux-loong64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.5.tgz#e5f0cf95a180158b01ff5f417da796a1c09dfbea" @@ -172,6 +232,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.11.tgz#38eecf1cbb8c36a616261de858b3c10d03419af9" integrity sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg== +"@esbuild/linux-mips64el@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec" + integrity sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w== + "@esbuild/linux-mips64el@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.5.tgz#ae36fb86c7d5f641f3a0c8472e83dcb6ea36a408" @@ -182,6 +247,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.11.tgz#9c5725a94e6ec15b93195e5a6afb821628afd912" integrity sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA== +"@esbuild/linux-ppc64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8" + integrity sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg== + "@esbuild/linux-ppc64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.5.tgz#7960cb1666f0340ddd9eef7b26dcea3835d472d0" @@ -192,6 +262,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.11.tgz#2dc4486d474a2a62bbe5870522a9a600e2acb916" integrity sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ== +"@esbuild/linux-riscv64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf" + integrity sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg== + "@esbuild/linux-riscv64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.5.tgz#32207df26af60a3a9feea1783fc21b9817bade19" @@ -202,6 +277,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.11.tgz#4ad8567df48f7dd4c71ec5b1753b6f37561a65a8" integrity sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q== +"@esbuild/linux-s390x@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8" + integrity sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg== + "@esbuild/linux-s390x@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.5.tgz#b38d5681db89a3723862dfa792812397b1510a7d" @@ -212,6 +292,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.11.tgz#b7390c4d5184f203ebe7ddaedf073df82a658766" integrity sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA== +"@esbuild/linux-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78" + integrity sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg== + "@esbuild/linux-x64@0.19.5": version "0.19.5" resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz" @@ -222,6 +307,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.11.tgz#d633c09492a1721377f3bccedb2d821b911e813d" integrity sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ== +"@esbuild/netbsd-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b" + integrity sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA== + "@esbuild/netbsd-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.5.tgz#3b5c1fb068f26bfc681d31f682adf1bea4ef0702" @@ -232,6 +322,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.11.tgz#17388c76e2f01125bf831a68c03a7ffccb65d1a2" integrity sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw== +"@esbuild/openbsd-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0" + integrity sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw== + "@esbuild/openbsd-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.5.tgz#ca6830316ca68056c5c88a875f103ad3235e00db" @@ -242,6 +337,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.11.tgz#e320636f00bb9f4fdf3a80e548cb743370d41767" integrity sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ== +"@esbuild/sunos-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30" + integrity sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA== + "@esbuild/sunos-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.5.tgz#9efc4eb9539a7be7d5a05ada52ee43cda0d8e2dd" @@ -252,6 +352,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.11.tgz#c778b45a496e90b6fc373e2a2bb072f1441fe0ee" integrity sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ== +"@esbuild/win32-arm64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae" + integrity sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A== + "@esbuild/win32-arm64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.5.tgz#29f8184afa7a02a956ebda4ed638099f4b8ff198" @@ -262,6 +367,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.11.tgz#481a65fee2e5cce74ec44823e6b09ecedcc5194c" integrity sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg== +"@esbuild/win32-ia32@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67" + integrity sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ== + "@esbuild/win32-ia32@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.5.tgz#f3de07afb292ecad651ae4bb8727789de2d95b05" @@ -272,6 +382,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.11.tgz#a5d300008960bb39677c46bf16f53ec70d8dee04" integrity sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw== +"@esbuild/win32-x64@0.19.12": + version "0.19.12" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae" + integrity sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA== + "@esbuild/win32-x64@0.19.5": version "0.19.5" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.5.tgz#faad84c41ba12e3a0acb52571df9bff37bee75f6" @@ -1683,7 +1798,7 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -esbuild@^0.19.11, esbuild@~0.19.10: +esbuild@^0.19.11: version "0.19.11" resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.19.11.tgz" integrity sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA== @@ -1740,6 +1855,35 @@ esbuild@^0.19.2: "@esbuild/win32-ia32" "0.19.5" "@esbuild/win32-x64" "0.19.5" +esbuild@~0.19.10: + version "0.19.12" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.12.tgz#dc82ee5dc79e82f5a5c3b4323a2a641827db3e04" + integrity sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg== + optionalDependencies: + "@esbuild/aix-ppc64" "0.19.12" + "@esbuild/android-arm" "0.19.12" + "@esbuild/android-arm64" "0.19.12" + "@esbuild/android-x64" "0.19.12" + "@esbuild/darwin-arm64" "0.19.12" + "@esbuild/darwin-x64" "0.19.12" + "@esbuild/freebsd-arm64" "0.19.12" + "@esbuild/freebsd-x64" "0.19.12" + "@esbuild/linux-arm" "0.19.12" + "@esbuild/linux-arm64" "0.19.12" + "@esbuild/linux-ia32" "0.19.12" + "@esbuild/linux-loong64" "0.19.12" + "@esbuild/linux-mips64el" "0.19.12" + "@esbuild/linux-ppc64" "0.19.12" + "@esbuild/linux-riscv64" "0.19.12" + "@esbuild/linux-s390x" "0.19.12" + "@esbuild/linux-x64" "0.19.12" + "@esbuild/netbsd-x64" "0.19.12" + "@esbuild/openbsd-x64" "0.19.12" + "@esbuild/sunos-x64" "0.19.12" + "@esbuild/win32-arm64" "0.19.12" + "@esbuild/win32-ia32" "0.19.12" + "@esbuild/win32-x64" "0.19.12" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" @@ -2204,7 +2348,7 @@ get-stream@^6.0.0, get-stream@^6.0.1: get-tsconfig@^4.7.2: version "4.7.2" - resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce" integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A== dependencies: resolve-pkg-maps "^1.0.0" @@ -3576,7 +3720,7 @@ resolve-from@^5.0.0: resolve-pkg-maps@^1.0.0: version "1.0.0" - resolved "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== reusify@^1.0.4: @@ -4103,7 +4247,7 @@ tsup@^7.3.0: tsx@^4.7.0: version "4.7.0" - resolved "https://registry.npmjs.org/tsx/-/tsx-4.7.0.tgz" + resolved "https://registry.yarnpkg.com/tsx/-/tsx-4.7.0.tgz#1689cfe7dda495ca1f9a66d4cad79cb57b9f6f4a" integrity sha512-I+t79RYPlEYlHn9a+KzwrvEwhJg35h/1zHsLC2JXvhC2mdynMv6Zxzvhv5EMV6VF5qJlLlkSnMVvdZV3PSIGcg== dependencies: esbuild "~0.19.10" From 8de1c67daaa4912a160a0f5db58ba4b97e64bce9 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 31 Jan 2024 12:58:11 -0600 Subject: [PATCH 05/21] Bump the setup-node action version The v3 version based on node v16 is deprecated, v4 uses node v20. Merges #68 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 029fd32..8f2ccd9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ jobs: - name: Setup Node.js id: setup-node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.version }} cache: yarn From df4e7eec71ae536ff34322b8c3c4cc75c9fc61e7 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 31 Jan 2024 13:14:01 -0600 Subject: [PATCH 06/21] Remove `@types/get-port` stub dependency The types are already provided by `get-port`, this was a stub that logs a warning upon installation. Merges #69 --- package.json | 1 - yarn.lock | 9 +-------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/package.json b/package.json index 947e222..7e03099 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,6 @@ "@commander-js/extra-typings": "^11.1.0", "@inquirer/prompts": "^3.3.0", "@tsconfig/node18": "^18.2.2", - "@types/get-port": "^4.2.0", "@types/gzip-js": "^0.3.5", "@types/ignore-walk": "^4.0.3", "@types/lodash": "^4.14.202", diff --git a/yarn.lock b/yarn.lock index 1864f45..0c396b6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -813,13 +813,6 @@ resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz" integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== -"@types/get-port@^4.2.0": - version "4.2.0" - resolved "https://registry.npmjs.org/@types/get-port/-/get-port-4.2.0.tgz" - integrity sha512-Iv2FAb5RnIk/eFO2CTu8k+0VMmIR15pKbcqRWi+s3ydW+aKXlN2yemP92SrO++ERyJx+p6Ie1ggbLBMbU1SjiQ== - dependencies: - get-port "*" - "@types/gzip-js@^0.3.5": version "0.3.5" resolved "https://registry.npmjs.org/@types/gzip-js/-/gzip-js-0.3.5.tgz" @@ -2329,7 +2322,7 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: has-symbols "^1.0.3" hasown "^2.0.0" -get-port@*, get-port@^7.0.0: +get-port@^7.0.0: version "7.0.0" resolved "https://registry.npmjs.org/get-port/-/get-port-7.0.0.tgz" integrity sha512-mDHFgApoQd+azgMdwylJrv2DX47ywGq1i5VFJE7fZ0dttNq3iQMfsU4IvEgBHojA3KqEudyu7Vq+oN8kNaNkWw== From 9abae31dd987f69e22b216755e4ee2ef8e4f57fe Mon Sep 17 00:00:00 2001 From: Katie McKeon <62887234+katiemckeon@users.noreply.github.com> Date: Mon, 12 Feb 2024 16:58:40 -0600 Subject: [PATCH 07/21] Update noir scaffold version field (#71) Previously our `sindri init` scaffold built a noir circuit with Nargo.toml specifying the compiler version as `0.19.3`. Since the `sindri.json` does not contain a `noirVersion` field, the most recent API release will assume you intend to use 0.23.0. This will cause a Nargo compilation error. This PR introduces a `noirVersion` field supplied by the user to pass into the `Nargo.toml` and `sindri.json`. The options for this field match our current support. --- src/cli/init.ts | 13 +++++++++++++ templates/noir/Nargo.toml | 2 +- templates/noir/sindri.json | 3 ++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/cli/init.ts b/src/cli/init.ts index f8676da..a0861ee 100644 --- a/src/cli/init.ts +++ b/src/cli/init.ts @@ -236,6 +236,18 @@ export const initCommand = new Command() return true; }, }); + const noirVersion: "0.17.0" | "0.18.0" | "0.19.4" | "0.22.0" | "0.23.0" = + await select({ + message: "Noir Version:", + default: "0.23.0", + choices: [ + { name: "0.17.0", value: "0.17.0" }, + { name: "0.18.0", value: "0.18.0" }, + { name: "0.19.4", value: "0.19.4" }, + { name: "0.22.0", value: "0.22.0" }, + { name: "0.23.0", value: "0.23.0" }, + ], + }); const provingScheme: "barretenberg" = await select({ message: "Proving Scheme:", default: "barretenberg", @@ -243,6 +255,7 @@ export const initCommand = new Command() }); Object.assign(context, { packageName, + noirVersion, provingScheme, }); } else { diff --git a/templates/noir/Nargo.toml b/templates/noir/Nargo.toml index 201aa6c..b653b51 100644 --- a/templates/noir/Nargo.toml +++ b/templates/noir/Nargo.toml @@ -2,6 +2,6 @@ name = "{{ packageName }}" type = "bin" authors = [""] -compiler_version = "0.19.3" +compiler_version = "{{ noirVersion }}" [dependencies] diff --git a/templates/noir/sindri.json b/templates/noir/sindri.json index a8831a2..e2b02ab 100644 --- a/templates/noir/sindri.json +++ b/templates/noir/sindri.json @@ -2,5 +2,6 @@ "$schema": "https://sindri.app/api/v1/sindri-manifest-schema.json", "name": "{{ circuitName }}", "circuitType": "noir", - "provingScheme": "{{ provingScheme }}" + "provingScheme": "{{ provingScheme }}", + "noirVersion": "{{ noirVersion }}" } From 52216e9cd3730132fbe2c999b62f12a030ab6b30 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Thu, 22 Feb 2024 11:06:36 -0700 Subject: [PATCH 08/21] Modularize SDK client Previously, there was no way for users to create new instances of `SindriClient` because both the logger and the internal generated API client operated on a global level. This updates all of that so that instances are fully independent, and adds a `SindriClient.create()` method to initialize new client instances. These can use different credentials, have a different log level, etc. As part of the modularization, I configured openapi-typescript-codegen to use a persistent `request.ts` module that we can customize. This allows our special handling of `FormData` to live outside of the code that gets clobbered with each regeneration. I also hacked in a `logger` field in the `OpenAPIConfig` class which `request.ts` uses to add debug logging around all API requests/responses. I made significant progress on getting the CLI to use the client consistently. All of the commands use it for all logging and requests now, but we still have two parallel implementations of the packaging and polling for circuit deployment so that's a significant last piece that still needs to be addressed. Because the client requests are now logged internally, I was able to remove all of that explicit logging from the CLI commands. This means there's no longer the fancy logic around not logging repeated poll responses if the status hasn't changed, but I think it's worth it to have the request logging be more uniform and universal. Making these changes required regenerating the internal API client, so this pulls in miscellaneous backend API changes that have taken place. Nothing particularly major, adding `noir_version` to Noir circuit responses is one example, but these are mixed in here. Connects #60 Closes #58 Closes #70 Merges #73 --- package.json | 6 +- sindri-manifest.json | 310 +++++++++++------- src/cli/config.ts | 7 +- src/cli/deploy.ts | 77 ++--- src/cli/index.ts | 17 +- src/cli/init.ts | 34 +- src/cli/lint.ts | 40 +-- src/cli/login.ts | 66 ++-- src/cli/logout.ts | 19 +- src/cli/utils.ts | 8 +- src/cli/whoami.ts | 19 +- src/lib/api/ApiClient.ts | 47 +++ src/lib/api/core/AxiosHttpRequest.ts | 25 ++ src/lib/api/core/BaseHttpRequest.ts | 13 + src/lib/api/core/OpenAPI.ts | 8 +- src/lib/api/core/request.ts | 55 +++- src/lib/api/index.ts | 80 ++--- .../api/models/CircomCircuitInfoResponse.ts | 7 +- src/lib/api/models/CircuitInfoResponse.ts | 18 + ...itStatus.ts => ForgeValueErrorResponse.ts} | 7 +- .../api/models/GnarkCircuitInfoResponse.ts | 7 +- .../api/models/Halo2CircuitInfoResponse.ts | 7 +- .../models/{ProofStatus.ts => JobStatus.ts} | 4 +- src/lib/api/models/NoirCircuitInfoResponse.ts | 8 +- src/lib/api/models/ProofInfoResponse.ts | 4 +- src/lib/api/services/AuthorizationService.ts | 27 +- src/lib/api/services/CircuitsService.ts | 66 ++-- src/lib/api/services/InternalService.ts | 21 +- src/lib/api/services/ProofsService.ts | 19 +- src/lib/api/services/TokenService.ts | 17 +- src/lib/client.ts | 116 ++++--- src/lib/config.ts | 44 ++- src/lib/logging.ts | 38 ++- 33 files changed, 736 insertions(+), 505 deletions(-) create mode 100644 src/lib/api/ApiClient.ts create mode 100644 src/lib/api/core/AxiosHttpRequest.ts create mode 100644 src/lib/api/core/BaseHttpRequest.ts create mode 100644 src/lib/api/models/CircuitInfoResponse.ts rename src/lib/api/models/{CircuitStatus.ts => ForgeValueErrorResponse.ts} (55%) rename src/lib/api/models/{ProofStatus.ts => JobStatus.ts} (59%) diff --git a/package.json b/package.json index 7e03099..2fa986b 100644 --- a/package.json +++ b/package.json @@ -52,9 +52,9 @@ "download-sindri-manifest-schema": "nwget https://sindri.app/api/v1/sindri-manifest-schema.json -O sindri-manifest.json && prettier --write sindri-manifest.json", "download-sindri-manifest-schema:dev": "nwget http://localhost/api/v1/sindri-manifest-schema.json -O sindri-manifest.json && prettier --write sindri-manifest.json", "download-sindri-manifest-schema:docker": "nwget http://host.docker.internal/api/v1/sindri-manifest-schema.json -O sindri-manifest.json && prettier --write sindri-manifest.json", - "generate-api": "rm -rf src/lib/api/ && openapi --client axios --input https://sindri.app/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", - "generate-api:dev": "rm -rf src/lib/api/ && openapi --client axios --input http://localhost/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", - "generate-api:docker": "rm -rf src/lib/api/ && openapi --client axios --input http://host.docker.internal/api/openapi.json --output src/lib/api/ --useUnionTypes && prettier --write src/lib/api/**/*", + "generate-api": "mv src/lib/api/core/request.ts tmp-request.ts && rm -rf src/lib/api/ && openapi --client axios --input https://sindri.app/api/openapi.json --name ApiClient --output src/lib/api/ --request tmp-request.ts --useUnionTypes && rm tmp-request.ts && prettier --write src/lib/api/**/*", + "generate-api:dev": "mv src/lib/api/core/request.ts tmp-request.ts && rm -rf src/lib/api/ && openapi --client axios --input http://localhost/api/openapi.json --name ApiClient --output src/lib/api/ --request tmp-request.ts --useUnionTypes && rm tmp-request.ts && prettier --write src/lib/api/**/*", + "generate-api:docker": "mv src/lib/api/core/request.ts tmp-request.ts && rm -rf src/lib/api/ && openapi --client axios --input http://host.docker.internal/api/openapi.json --name ApiClient --output src/lib/api/ --request tmp-request.ts --useUnionTypes && rm tmp-request.ts && prettier --write src/lib/api/**/*", "lint": "eslint '**/*.{js,ts}'", "format": "prettier --write '**/*.{js,json,md,ts}'", "test": "yarn build && yarn test:fast", diff --git a/sindri-manifest.json b/sindri-manifest.json index e499c5d..6355692 100644 --- a/sindri-manifest.json +++ b/sindri-manifest.json @@ -2,65 +2,76 @@ "$id": "https://sindri.app/api/v1/sindri-manifest-schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "SindriManifest", - "description": "Discriminated union type for `sindri.json` manifest files.\n\nThis is only used for serializing the JSON Schema currently, but it would be nice to use it more\nbroadly once we improve the typing on the union types. We should be able to use\n`SindriManifest.parse_obj()` instead of `get_validate_sindri_manifest()` and other\nsimplifications.", + "description": "Sindri Manifest file schema for `sindri.json` files.", "anyOf": [ { - "$ref": "#/definitions/CircomSindri" + "$ref": "#/definitions/CircomSindriManifest" }, { - "$ref": "#/definitions/GnarkSindri" + "$ref": "#/definitions/GnarkSindriManifest" }, { - "$ref": "#/definitions/Halo2AxiomV022Sindri" + "$ref": "#/definitions/Halo2AxiomV022SindriManifest" }, { - "$ref": "#/definitions/Halo2AxiomV030Sindri" + "$ref": "#/definitions/Halo2AxiomV030SindriManifest" }, { - "$ref": "#/definitions/Halo2ChiquitoSindri" - }, - { - "$ref": "#/definitions/NoirSindri" + "$ref": "#/definitions/NoirSindriManifest" } ], "definitions": { - "SindriCircuitTypeOptions": { - "title": "SindriCircuitTypeOptions", - "description": "circuit_type options", - "enum": ["circom", "gnark", "halo2", "noir"], - "type": "string" - }, "CircomCurveOptions": { "title": "CircomCurveOptions", - "description": "An enumeration.", + "description": "The supported Circom curves.", "enum": ["bn254"], "type": "string" }, "CircomProvingSchemeOptions": { "title": "CircomProvingSchemeOptions", - "description": "An enumeration.", + "description": "The supported Circom proving schemes.", "enum": ["groth16"], "type": "string" }, "CircomWitnessCompilerOptions": { "title": "CircomWitnessCompilerOptions", - "description": "An enumeration.", + "description": "The supported Circom witness compilers.", "enum": ["c++", "wasm"], "type": "string" }, - "CircomSindri": { - "title": "CircomSindri", - "description": "Circom Sindri Manifest", + "CircomSindriManifest": { + "title": "Sindri Manifest for Circom Circuits", + "description": "Sindri Manifest for Circom circuits.", "type": "object", "properties": { "circuitType": { - "$ref": "#/definitions/SindriCircuitTypeOptions" + "title": "Circuit Type", + "description": "The (frontend) development framework that your circuit is written with.", + "enum": ["circom"], + "type": "string" }, "name": { - "title": "Name", + "title": "Circuit Name", + "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", + "pattern": "^[a-zA-Z0-9_-]+$", + "error_messages": { + "regex": "`name` must be a valid slug." + }, + "type": "string" + }, + "circuitPath": { + "title": "Circuit Path", + "description": "Path to a `.circom` circuit file with a main component (defaults to `./circuit.circom`).", + "default": "./circuit.circom", + "pattern": "^[^/].*\\.circom$", + "error_messages": { + "regex": "`circuit_path` must be a valid relative path to your main `.circom` file." + }, "type": "string" }, "curve": { + "title": "Proving Curve", + "description": "The curve over which the proof is executed.", "default": "bn254", "allOf": [ { @@ -69,6 +80,7 @@ ] }, "provingScheme": { + "description": "The backend proving scheme.", "default": "groth16", "allOf": [ { @@ -77,6 +89,7 @@ ] }, "witnessCompiler": { + "description": "The circuit witness compiler.", "default": "c++", "allOf": [ { @@ -88,9 +101,7 @@ "type": "string", "title": "Sindri Manifest JSON Schema URL", "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] + "examples": ["https://sindri.app/api/v1/sindri-manifest-schema.json"] } }, "required": ["circuitType", "name"], @@ -98,7 +109,7 @@ }, "GnarkCurveOptions": { "title": "GnarkCurveOptions", - "description": "An enumeration.", + "description": "The supported Gnark curves.", "enum": [ "bls12-377", "bls12-381", @@ -111,33 +122,48 @@ }, "GnarkVersionOptions": { "title": "GnarkVersionOptions", - "description": "An enumeration.", + "description": "The supported Gnark framework versions.", "enum": ["v0.8.1", "v0.9.0"], "type": "string" }, "GnarkProvingSchemeOptions": { "title": "GnarkProvingSchemeOptions", - "description": "An enumeration.", + "description": "The supported Gnark proving schemes.", "enum": ["groth16"], "type": "string" }, - "GnarkSindri": { - "title": "GnarkSindri", - "description": "Gnark Sindri Manifest", + "GnarkSindriManifest": { + "title": "Sindri Manifest for Gnark Circuits", + "description": "Sindri Manifest for Gnark circuits.", "type": "object", "properties": { "circuitType": { - "$ref": "#/definitions/SindriCircuitTypeOptions" + "title": "Circuit Type", + "description": "The (frontend) development framework that your circuit is written with.", + "enum": ["gnark"], + "type": "string" }, "name": { - "title": "Name", + "title": "Circuit Name", + "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", + "pattern": "^[a-zA-Z0-9_-]+$", + "error_messages": { + "regex": "`name` must be a valid slug." + }, "type": "string" }, "circuitStructName": { "title": "Circuit Struct Name", + "description": "The name of the Go struct which defines your circuit inputs.", + "pattern": "^[A-Z][A-Za-z0-9_]*$", + "error_messages": { + "regex": "`circuitStructName` must be a valid Go exported struct name." + }, "type": "string" }, "curve": { + "title": "Proving Curve", + "description": "The curve over which the proof is executed.", "default": "bn254", "allOf": [ { @@ -146,13 +172,24 @@ ] }, "gnarkVersion": { - "$ref": "#/definitions/GnarkVersionOptions" + "description": "The version of the Gnark framework that your circuit uses.", + "allOf": [ + { + "$ref": "#/definitions/GnarkVersionOptions" + } + ] }, "packageName": { - "title": "Package Name", + "title": "Go Package Name", + "description": "The name of the Go package containing your circuit definition.", + "pattern": "^[a-z][a-z0-9]*$", + "error_messages": { + "regex": "`packageName` must be a valid Go package name." + }, "type": "string" }, "provingScheme": { + "description": "The backend proving scheme.", "default": "groth16", "allOf": [ { @@ -164,9 +201,7 @@ "type": "string", "title": "Sindri Manifest JSON Schema URL", "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] + "examples": ["https://sindri.app/api/v1/sindri-manifest-schema.json"] } }, "required": [ @@ -178,46 +213,75 @@ ], "additionalProperties": false }, - "Halo2VersionOptions": { - "title": "Halo2VersionOptions", - "description": "An enumeration.", - "enum": ["axiom-v0.2.2", "axiom-v0.3.0", "chiquito"], + "Halo2ProvingSchemeOptions": { + "title": "Halo2ProvingSchemeOptions", + "description": "The supported Halo2 proving schemes.", + "enum": ["shplonk"], "type": "string" }, - "Halo2AxiomV022Sindri": { - "title": "Halo2AxiomV022Sindri", - "description": "Halo2 Axiom V0.2.2 Sindri Manifest", + "Halo2AxiomV022SindriManifest": { + "title": "Sindri Manifest for Axiom v0.2.2 Halo2 Circuits", + "description": "Sindri Manifest for Axiom v0.2.2 circuits built with the Halo2 framework.", "type": "object", "properties": { "circuitType": { - "$ref": "#/definitions/SindriCircuitTypeOptions" + "title": "Circuit Type", + "description": "The (frontend) development framework that your circuit is written with.", + "enum": ["halo2"], + "type": "string" }, "name": { - "title": "Name", + "title": "Circuit Name", + "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", + "pattern": "^[a-zA-Z0-9_-]+$", + "error_messages": { + "regex": "`name` must be a valid slug." + }, "type": "string" }, "className": { - "title": "Class Name", + "title": "Circuit Class Name", + "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", + "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", + "error_messages": { + "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." + }, "type": "string" }, "degree": { "title": "Degree", + "description": "Specifies that the circuit will have 2^degree rows.", "type": "integer" }, "halo2Version": { - "$ref": "#/definitions/Halo2VersionOptions" + "title": "Halo2 Version", + "description": "The Halo2 frontend that your circuit is written with.", + "enum": ["axiom-v0.2.2"], + "type": "string" }, "packageName": { - "title": "Package Name", + "title": "Rust Package Name", + "description": "The name of the Rust package containing your circuit.", + "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", + "error_messages": { + "regex": "`packageName` must be a valid Rust crate name." + }, "type": "string" }, + "provingScheme": { + "description": "The backend proving scheme.", + "default": "shplonk", + "allOf": [ + { + "$ref": "#/definitions/Halo2ProvingSchemeOptions" + } + ] + }, "$schema": { "type": "string", "title": "Sindri Manifest JSON Schema URL", "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] + "examples": ["https://sindri.app/api/v1/sindri-manifest-schema.json"] } }, "required": [ @@ -230,35 +294,67 @@ ], "additionalProperties": false }, - "Halo2AxiomV030Sindri": { - "title": "Halo2AxiomV030Sindri", - "description": "Halo2 Axiom V0.3.0 Sindri Manifest", + "Halo2AxiomV030SindriManifest": { + "title": "Sindri Manifest for Axiom v0.3.0 Halo2 Circuits", + "description": "Sindri Manifest for Axiom v0.3.0 circuits built with the Halo2 framework.", "type": "object", "properties": { "circuitType": { - "$ref": "#/definitions/SindriCircuitTypeOptions" + "title": "Circuit Type", + "description": "The (frontend) development framework that your circuit is written with.", + "enum": ["halo2"], + "type": "string" }, "name": { - "title": "Name", + "title": "Circuit Name", + "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", + "pattern": "^[a-zA-Z0-9_-]+$", + "error_messages": { + "regex": "`name` must be a valid slug." + }, "type": "string" }, "className": { - "title": "Class Name", + "title": "Circuit Class Name", + "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", + "pattern": "^([A-Za-z_][A-Za-z0-9_]*::)+[A-Za-z_][A-Za-z0-9_]*$", + "error_messages": { + "regex": "`className` must be a valid and fully qualifed Rust path to a struct including the crate name." + }, "type": "string" }, "degree": { "title": "Degree", + "description": "Specifies that the circuit will have 2^degree rows.", "type": "integer" }, "halo2Version": { - "$ref": "#/definitions/Halo2VersionOptions" + "title": "Halo2 Version", + "description": "The Halo2 frontend that your circuit is written with.", + "enum": ["axiom-v0.3.0"], + "type": "string" }, "packageName": { - "title": "Package Name", + "title": "Rust Package Name", + "description": "The name of the Rust package containing your circuit.", + "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", + "error_messages": { + "regex": "`packageName` must be a valid Rust crate name." + }, "type": "string" }, + "provingScheme": { + "description": "The backend proving scheme.", + "default": "shplonk", + "allOf": [ + { + "$ref": "#/definitions/Halo2ProvingSchemeOptions" + } + ] + }, "threadBuilder": { "title": "Thread Builder", + "description": "The type of multi-threaded witness generator used. Choose GateThreadBuilder for simple circuits or RlcThreadBuilder for advanced applications that require sources of randomness.", "enum": ["GateThreadBuilder", "RlcThreadBuilder"], "type": "string" }, @@ -266,9 +362,7 @@ "type": "string", "title": "Sindri Manifest JSON Schema URL", "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] + "examples": ["https://sindri.app/api/v1/sindri-manifest-schema.json"] } }, "required": [ @@ -282,71 +376,40 @@ ], "additionalProperties": false }, - "Halo2ChiquitoSindri": { - "title": "Halo2ChiquitoSindri", - "description": "Halo2 Chiquito Sindri Manifest", - "type": "object", - "properties": { - "circuitType": { - "$ref": "#/definitions/SindriCircuitTypeOptions" - }, - "name": { - "title": "Name", - "type": "string" - }, - "className": { - "title": "Class Name", - "type": "string" - }, - "degree": { - "title": "Degree", - "type": "integer" - }, - "halo2Version": { - "$ref": "#/definitions/Halo2VersionOptions" - }, - "packageName": { - "title": "Package Name", - "type": "string" - }, - "$schema": { - "type": "string", - "title": "Sindri Manifest JSON Schema URL", - "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] - } - }, - "required": [ - "circuitType", - "name", - "className", - "degree", - "halo2Version", - "packageName" - ], - "additionalProperties": false - }, "NoirProvingSchemeOptions": { "title": "NoirProvingSchemeOptions", - "description": "An enumeration.", + "description": "The supported Noir proving schemes.", "enum": ["barretenberg"], "type": "string" }, - "NoirSindri": { - "title": "NoirSindri", - "description": "Noir Sindri Manifest", + "NoirVersionOptions": { + "title": "NoirVersionOptions", + "description": "The supported Noir Compiler and Prover versions.", + "enum": ["latest", "0.17.0", "0.18.0", "0.19.4", "0.22.0", "0.23.0"], + "type": "string" + }, + "NoirSindriManifest": { + "title": "Sindri Manifest for Noir Circuits", + "description": "Sindri Manifest for Noir circuits.", "type": "object", "properties": { "circuitType": { - "$ref": "#/definitions/SindriCircuitTypeOptions" + "title": "Circuit Type", + "description": "The (frontend) development framework that your circuit is written with.", + "enum": ["noir"], + "type": "string" }, "name": { - "title": "Name", + "title": "Circuit Name", + "description": "The circuit name used to uniquely identify the circuit within your organization. Similar to a GitHub project name or a Docker image name.", + "pattern": "^[a-zA-Z0-9_-]+$", + "error_messages": { + "regex": "`name` must be a valid slug." + }, "type": "string" }, "provingScheme": { + "description": "The backend proving scheme.", "default": "barretenberg", "allOf": [ { @@ -354,13 +417,20 @@ } ] }, + "noirVersion": { + "description": "Noir compiler version (defaults to `latest`).", + "default": "latest", + "allOf": [ + { + "$ref": "#/definitions/NoirVersionOptions" + } + ] + }, "$schema": { "type": "string", "title": "Sindri Manifest JSON Schema URL", "description": "The URL pointing to a Sindri JSON Manifest schema definition.", - "examples": [ - "https://sindri.app/api/v1/sindri-manifest-schema.json" - ] + "examples": ["https://sindri.app/api/v1/sindri-manifest-schema.json"] } }, "required": ["circuitType", "name"], diff --git a/src/cli/config.ts b/src/cli/config.ts index 8d24a96..c0238fa 100644 --- a/src/cli/config.ts +++ b/src/cli/config.ts @@ -1,14 +1,15 @@ import { Command } from "@commander-js/extra-typings"; -import { Config } from "lib/config"; import { print } from "lib/logging"; +import sindri from "lib"; export const configListCommand = new Command() .name("list") .description("Show the current config.") .action(async () => { - const config = new Config(); - print(config.config); + // Reload the config because the log level was `silent` when the config was initially loaded. + sindri._config!.reload(); + print(sindri._config!.config); }); export const configCommand = new Command() diff --git a/src/cli/deploy.ts b/src/cli/deploy.ts index abf59e7..16d574e 100644 --- a/src/cli/deploy.ts +++ b/src/cli/deploy.ts @@ -9,8 +9,8 @@ import walk from "ignore-walk"; import tar from "tar"; import { findFileUpwards } from "cli/utils"; -import { ApiError, CircuitsService, CircuitStatus, OpenAPI } from "lib/api"; -import { logger } from "lib/logging"; +import sindri from "lib"; +import { ApiError } from "lib/api"; export const deployCommand = new Command() .name("deploy") @@ -22,7 +22,7 @@ export const deployCommand = new Command() // Validate the tags and "untagged" option. if (untagged) { if (tags.length !== 1 || tags[0] !== "latest") { - logger.error( + sindri.logger.error( "You cannot use both the `--tag` and `--untagged` options together.", ); return process.exit(1); @@ -30,7 +30,7 @@ export const deployCommand = new Command() } else { for (const tag of tags) { if (!/^[-a-zA-Z0-9_]+$/.test(tag)) { - logger.error( + sindri.logger.error( `"${tag}" is not a valid tag. Tags may only contain alphanumeric characters, ` + "underscores, and hyphens.", ); @@ -42,21 +42,21 @@ export const deployCommand = new Command() // Find `sindri.json` and move into the root of the project directory. const directoryPath = path.resolve(directory); if (!existsSync(directoryPath)) { - logger.error( + sindri.logger.error( `The "${directoryPath}" directory does not exist. Aborting.`, ); return process.exit(1); } const sindriJsonPath = findFileUpwards(/^sindri.json$/i, directoryPath); if (!sindriJsonPath) { - logger.error( + sindri.logger.error( `No "sindri.json" file was found in or above "${directoryPath}". Aborting.`, ); return process.exit(1); } - logger.debug(`Found "sindri.json" at "${sindriJsonPath}".`); + sindri.logger.debug(`Found "sindri.json" at "${sindriJsonPath}".`); const rootDirectory = path.dirname(sindriJsonPath); - logger.debug(`Changing current directory to "${rootDirectory}".`); + sindri.logger.debug(`Changing current directory to "${rootDirectory}".`); process.chdir(rootDirectory); // Load `sindri.json`. @@ -66,26 +66,26 @@ export const deployCommand = new Command() encoding: "utf-8", }); sindriJson = JSON.parse(sindriJsonContent); - logger.debug( + sindri.logger.debug( `Successfully loaded "sindri.json" from "${sindriJsonPath}":`, ); - logger.debug(sindriJson); + sindri.logger.debug(sindriJson); } catch (error) { - logger.fatal( + sindri.logger.fatal( `Error loading "${sindriJsonPath}", perhaps it is not valid JSON?`, ); - logger.error(error); + sindri.logger.error(error); return process.exit(1); } if (!("name" in sindriJson)) { - logger.error('No "name" field found in "sindri.json". Aborting.'); + sindri.logger.error('No "name" field found in "sindri.json". Aborting.'); return process.exit(1); } const circuitName = sindriJson.name; // Check that the API client is authorized. - if (!OpenAPI.TOKEN || !OpenAPI.BASE) { - logger.warn("You must login first with `sindri login`."); + if (!sindri.apiKey || !sindri.baseUrl) { + sindri.logger.warn("You must login first with `sindri login`."); return process.exit(1); } @@ -108,7 +108,7 @@ export const deployCommand = new Command() } const formData = new FormData(); const tarballFilename = `${circuitName}.tar.gz`; - logger.info( + sindri.logger.info( `Creating "${tarballFilename}" package with ${files.length} files.`, ); formData.append( @@ -119,7 +119,9 @@ export const deployCommand = new Command() { gzip: true, onwarn: (code: string, message: string) => { - logger.warn(`While creating tarball: ${code} - ${message}`); + sindri.logger.warn( + `While creating tarball: ${code} - ${message}`, + ); }, prefix: `${circuitName}/`, sync: true, @@ -144,64 +146,57 @@ export const deployCommand = new Command() // Upload the tarball. let circuitId: string | undefined; try { - logger.info("Circuit compilation initiated."); - const response = await CircuitsService.circuitCreate(formData); + sindri.logger.info("Circuit compilation initiated."); + const response = await sindri._client.circuits.circuitCreate(formData); circuitId = response.circuit_id; - logger.debug("/api/v1/circuit/create/ response:"); - logger.debug(response); } catch (error) { if (error instanceof ApiError && error.status === 401) { - logger.error( + sindri.logger.error( "Your credentials are invalid. Please log in again with `sindri login`.", ); } else { - logger.fatal("An unknown error occurred."); - logger.error(error); + sindri.logger.fatal("An unknown error occurred."); + sindri.logger.error(error); return process.exit(1); } } if (!circuitId) { - logger.error("No circuit ID was returned from the API. Aborting."); + sindri.logger.error("No circuit ID was returned from the API. Aborting."); return process.exit(1); } // Poll for circuit compilation to complete. const startTime = Date.now(); - let previousStatus: CircuitStatus | undefined; while (true) { try { - logger.debug("Polling for circuit compilation status."); - const response = await CircuitsService.circuitDetail(circuitId, false); - - // Only log this when the status changes because it's noisy. - if (previousStatus !== response.status) { - previousStatus = response.status; - logger.debug(`/api/v1/circuit/${circuitId}/detail/ response:`); - logger.debug(response); - } + sindri.logger.debug("Polling for circuit compilation status."); + const response = await sindri._client.circuits.circuitDetail( + circuitId, + false, + ); const elapsedSeconds = ((Date.now() - startTime) / 1000).toFixed(1); if (response.status === "Ready") { - logger.info( + sindri.logger.info( `Circuit compiled successfully after ${elapsedSeconds} seconds.`, ); break; } else if (response.status === "Failed") { - logger.error( + sindri.logger.error( `Circuit compilation failed after ${elapsedSeconds} seconds: ` + (response.error ?? "Unknown error."), ); return process.exit(1); } else if (response.status === "Queued") { - logger.debug("Circuit compilation is queued."); + sindri.logger.debug("Circuit compilation is queued."); } else if (response.status === "In Progress") { - logger.debug("Circuit compilation is in progress."); + sindri.logger.debug("Circuit compilation is in progress."); } } catch (error) { - logger.fatal( + sindri.logger.fatal( "An unknown error occurred while polling for compilation to finish.", ); - logger.error(error); + sindri.logger.error(error); return process.exit(1); } diff --git a/src/cli/index.ts b/src/cli/index.ts index 41f924c..3244a29 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -1,5 +1,4 @@ #! /usr/bin/env node -import assert from "assert"; import { argv, exit } from "process"; import { Command } from "@commander-js/extra-typings"; @@ -13,12 +12,12 @@ import { logoutCommand } from "cli/logout"; import { whoamiCommand } from "cli/whoami"; import { loadPackageJson } from "cli/utils"; import sindri from "lib"; -import { logger } from "lib/logging"; export const program = new Command() .name("sindri") .description("The Sindri CLI client.") .version(loadPackageJson().version ?? "unknown") + .enablePositionalOptions() .option("-d, --debug", "Enable debug logging.", false) .option( "-q, --quiet", @@ -37,23 +36,19 @@ export const program = new Command() // Set the logging level. const { debug, quiet } = command.opts(); if (debug && quiet) { - logger.error( + sindri.logLevel = "error"; + sindri.logger.error( "You cannot specify both the `--debug` and `--quiet` arguments.", ); return exit(1); } if (debug) { - logger.level = "trace"; + sindri.logLevel = "trace"; } else if (quiet) { - logger.level = "silent"; + sindri.logLevel = "silent"; } else { - logger.level = "info"; + sindri.logLevel = "info"; } - logger.debug(`Set log level to "${logger.level}".`); - - // Make sure the client is loaded and initialized before any subcommands run. - // Note that this also initializes the config. - assert(sindri); }); if (require.main === module) { diff --git a/src/cli/init.ts b/src/cli/init.ts index a0861ee..142a2a4 100644 --- a/src/cli/init.ts +++ b/src/cli/init.ts @@ -7,7 +7,7 @@ import { Command } from "@commander-js/extra-typings"; import { confirm, input, select } from "@inquirer/prompts"; import { scaffoldDirectory } from "cli/utils"; -import { logger } from "lib/logging"; +import sindri from "lib"; export const initCommand = new Command() .name("init") @@ -26,7 +26,7 @@ export const initCommand = new Command() if (!existsSync(directoryPath)) { mkdirSync(directoryPath, { recursive: true }); } else if (!statSync(directoryPath).isDirectory()) { - logger.warn( + sindri.logger.warn( `File "${directoryPath}" exists and is not a directory, aborting.`, ); return process.exit(1); @@ -42,7 +42,7 @@ export const initCommand = new Command() default: false, }); if (!proceed) { - logger.info("Aborting."); + sindri.logger.info("Aborting."); return process.exit(1); } } @@ -259,23 +259,23 @@ export const initCommand = new Command() provingScheme, }); } else { - logger.fatal(`Sorry, ${circuitType} is not yet supported.`); + sindri.logger.fatal(`Sorry, ${circuitType} is not yet supported.`); return process.exit(1); } // Perform the scaffolding. - logger.info( + sindri.logger.info( `Proceeding to generate scaffolded project in "${directoryPath}".`, ); - await scaffoldDirectory("common", directoryPath, context); - await scaffoldDirectory(circuitType, directoryPath, context); + await scaffoldDirectory("common", directoryPath, context, sindri.logger); + await scaffoldDirectory(circuitType, directoryPath, context, sindri.logger); // We use this in `common` right now to keep the directory tracked, we can remove this once we // add files there. const gitKeepFile = path.join(directoryPath, ".gitkeep"); if (existsSync(gitKeepFile)) { rmSync(gitKeepFile); } - logger.info("Project scaffolding successful."); + sindri.logger.info("Project scaffolding successful."); // Install dependencies. if (circuitType === "circom") { @@ -284,13 +284,13 @@ export const initCommand = new Command() execSync("npm --version"); npmInstalled = true; } catch { - logger.warn( + sindri.logger.warn( "NPM is not installed, cannot install circomlib as a dependency. " + "You will need to install NPM and run `npm install` yourself.", ); } if (npmInstalled) { - logger.info("Installing circomlib."); + sindri.logger.info("Installing circomlib."); execSync("npm install", { cwd: directoryPath }); } } @@ -301,7 +301,7 @@ export const initCommand = new Command() execSync("git --version"); gitInstalled = true; } catch { - logger.debug( + sindri.logger.debug( "Git is not installed, skipping git initialization questions.", ); } @@ -312,14 +312,18 @@ export const initCommand = new Command() default: true, }); if (initializeGit) { - logger.info(`Initializing git repository in "${directoryPath}".`); + sindri.logger.info( + `Initializing git repository in "${directoryPath}".`, + ); try { execSync("git init .", { cwd: directoryPath }); execSync("git add .", { cwd: directoryPath }); execSync("git commit -m 'Initial commit.'", { cwd: directoryPath }); - logger.info("Successfully initialized git repository."); + sindri.logger.info("Successfully initialized git repository."); } catch (error) { - logger.error("Error occurred while initializing the git repository."); + sindri.logger.error( + "Error occurred while initializing the git repository.", + ); // Node.js doesn't seem to have a typed version of this error, so we assert it as // something that's at least in the right ballpark. const execError = error as NodeJS.ErrnoException & { @@ -338,7 +342,7 @@ export const initCommand = new Command() execError[key] = ""; } }); - logger.error(execError); + sindri.logger.error(execError); } } } diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 43cbd0d..bfcdea3 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -7,7 +7,7 @@ import type { Schema } from "jsonschema"; import { Validator as JsonValidator } from "jsonschema"; import { findFileUpwards, loadSindriManifestJsonSchema } from "cli/utils"; -import { logger } from "lib/logging"; +import sindri from "lib"; export const lintCommand = new Command() .name("lint") @@ -29,9 +29,9 @@ export const lintCommand = new Command() if (!sindriManifestJsonSchema) { throw new Error('No "sindri-manifest.json" file found.'); } - logger.debug('Successfully loaded "sindri-manifest.json".'); + sindri.logger.debug('Successfully loaded "sindri-manifest.json".'); } catch (error) { - logger.error( + sindri.logger.error( 'No "sindri-manifest.json" JSON Schema file found. Aborting.', ); return process.exit(1); @@ -40,21 +40,21 @@ export const lintCommand = new Command() // Find `sindri.json` and move into the root of the project directory. const directoryPath = path.resolve(directory); if (!existsSync(directoryPath)) { - logger.error( + sindri.logger.error( `The "${directoryPath}" directory does not exist. Aborting.`, ); return process.exit(1); } const sindriJsonPath = findFileUpwards(/^sindri.json$/i, directoryPath); if (!sindriJsonPath) { - logger.error( + sindri.logger.error( `No "sindri.json" file was found in or above "${directoryPath}". Aborting.`, ); return process.exit(1); } - logger.debug(`Found "sindri.json" at "${sindriJsonPath}".`); + sindri.logger.debug(`Found "sindri.json" at "${sindriJsonPath}".`); const rootDirectory = path.dirname(sindriJsonPath); - logger.debug(`Changing current directory to "${rootDirectory}".`); + sindri.logger.debug(`Changing current directory to "${rootDirectory}".`); process.chdir(directoryPath); // Load `sindri.json`. @@ -64,15 +64,15 @@ export const lintCommand = new Command() encoding: "utf-8", }); sindriJson = JSON.parse(sindriJsonContent); - logger.debug( + sindri.logger.debug( `Successfully loaded "sindri.json" from "${sindriJsonPath}":`, ); - logger.debug(sindriJson); + sindri.logger.debug(sindriJson); } catch (error) { - logger.fatal( + sindri.logger.fatal( `Error loading "${sindriJsonPath}", perhaps it is not valid JSON?`, ); - logger.error(error); + sindri.logger.error(error); return process.exit(1); } @@ -84,9 +84,11 @@ export const lintCommand = new Command() { nestedErrors: true }, ); if (validationStatus.valid) { - logger.info(`Sindri manifest file "${sindriJsonPath}" is valid.`); + sindri.logger.info(`Sindri manifest file "${sindriJsonPath}" is valid.`); } else { - logger.warn(`Sindri manifest file "${sindriJsonPath}" contains errors:`); + sindri.logger.warn( + `Sindri manifest file "${sindriJsonPath}" contains errors:`, + ); for (const error of validationStatus.errors) { const prefix = error.property @@ -95,7 +97,7 @@ export const lintCommand = new Command() (typeof error.schema === "object" && error.schema.title ? `:${error.schema.title}` : ""); - logger.error(`${prefix} ${error.message}`); + sindri.logger.error(`${prefix} ${error.message}`); errorCount += 1; } } @@ -103,24 +105,24 @@ export const lintCommand = new Command() // Check for a project README. const readmePath = path.join(rootDirectory, "README.md"); if (!existsSync(readmePath)) { - logger.warn( + sindri.logger.warn( `No project README was found at "${readmePath}", consider adding one.`, ); warningCount += 1; } else { - logger.debug(`README file found at "${readmePath}".`); + sindri.logger.debug(`README file found at "${readmePath}".`); } // Summarize the errors and warnings. if (errorCount === 0 && warningCount === 0) { - logger.info("No issues found, good job!"); + sindri.logger.info("No issues found, good job!"); } else { - logger.warn( + sindri.logger.warn( `Found ${errorCount + warningCount} problems ` + `(${errorCount} errors, ${warningCount} warnings).`, ); if (errorCount > 0) { - logger.error(`Linting failed with ${errorCount} errors.`); + sindri.logger.error(`Linting failed with ${errorCount} errors.`); return process.exit(1); } } diff --git a/src/cli/login.ts b/src/cli/login.ts index 15bacb4..91052f5 100644 --- a/src/cli/login.ts +++ b/src/cli/login.ts @@ -9,15 +9,9 @@ import { select, } from "@inquirer/prompts"; -import { - ApiError, - AuthorizationService, - InternalService, - OpenAPI, - TokenService, -} from "lib/api"; +import sindri from "lib"; +import { ApiError, type TeamMeResponse } from "lib/api"; import { Config } from "lib/config"; -import { logger } from "lib/logging"; export const loginCommand = new Command() .name("login") @@ -25,40 +19,37 @@ export const loginCommand = new Command() .option( "-u, --base-url ", "The base URL for the Sindri API. Mainly useful for development.", - OpenAPI.BASE, + "https://sindri.app", ) .action(async ({ baseUrl }) => { - // Check if they're already authenticated, and prompt for confirmation if so. const config = new Config(); + // Check if they're already authenticated, and prompt for confirmation if so. const auth = config.auth; - if (auth) { - let authenticated: boolean = false; + if (!auth) { + let teamMeResponse: TeamMeResponse | undefined; try { - const teamMeResult = await InternalService.teamMe(); - logger.debug("/api/v1/team/me/ response:"); - logger.debug(teamMeResult); - authenticated = true; + teamMeResponse = await sindri._client.internal.teamMe(); } catch (error) { if (error instanceof ApiError && error.status === 401) { - logger.warn( + sindri.logger.warn( "Existing credentials found, but invalid. Please continue logging in to update them.", ); } else { - logger.fatal("An unknown error occurred."); - logger.error(error); + sindri.logger.fatal("An unknown error occurred."); + sindri.logger.error(error); return process.exit(1); } } - if (authenticated) { + if (teamMeResponse) { const proceed = await confirm({ message: - `You are already logged in as ${auth.teamSlug} on ${auth.baseUrl}, ` + + `You are already logged in as ${teamMeResponse.team.slug} on ${sindri.baseUrl}, ` + "are you sure you want to proceed?", default: false, }); if (!proceed) { - logger.info("Aborting."); + sindri.logger.info("Aborting."); return; } } @@ -75,19 +66,16 @@ export const loginCommand = new Command() // Generate an API key for one of their teams. try { // Generate a JWT token to authenticate the user. - OpenAPI.BASE = baseUrl; - const tokenResult = await TokenService.bf740E1AControllerObtainToken({ - username, - password, - }); - logger.debug("/api/token/ response:"); - logger.debug(tokenResult); - OpenAPI.TOKEN = tokenResult.access; + sindri._clientConfig.BASE = baseUrl; + const tokenResult = + await sindri._client.token.fd3Aaa7BControllerObtainToken({ + username, + password, + }); + sindri._clientConfig.TOKEN = tokenResult.access; // Fetch their teams and have the user select one. - const userResult = await InternalService.userMeWithJwtAuth(); - logger.debug("/api/v1/user/me/ response:"); - logger.debug(userResult); + const userResult = await sindri._client.internal.userMeWithJwtAuth(); const teamId = await select({ message: "Select a Organization:", choices: userResult.teams.map(({ id, slug }) => ({ @@ -101,14 +89,12 @@ export const loginCommand = new Command() } // Generate an API key. - OpenAPI.HEADERS = { "Sindri-Team-Id": `${teamId}` }; - const apiKeyResult = await AuthorizationService.apikeyGenerate({ + sindri._clientConfig.HEADERS = { "Sindri-Team-Id": `${teamId}` }; + const apiKeyResult = await sindri._client.authorization.apikeyGenerate({ username, password, name, }); - logger.debug("/api/apikey/generate/ response:"); - logger.debug(apiKeyResult); const apiKey = apiKeyResult.api_key; const apiKeyId = apiKeyResult.id; const apiKeyName = apiKeyResult.name; @@ -127,12 +113,12 @@ export const loginCommand = new Command() teamSlug: team.slug, }, }); - logger.info( + sindri.logger.info( "You have successfully authorized the client with your Sindri account.", ); } catch (error) { - logger.fatal("An irrecoverable error occurred."); - logger.error(error); + sindri.logger.fatal("An irrecoverable error occurred."); + sindri.logger.error(error); process.exit(1); } }); diff --git a/src/cli/logout.ts b/src/cli/logout.ts index 59064a3..2ee279f 100644 --- a/src/cli/logout.ts +++ b/src/cli/logout.ts @@ -1,9 +1,8 @@ import { Command } from "@commander-js/extra-typings"; import { confirm } from "@inquirer/prompts"; -import { AuthorizationService } from "lib/api"; +import sindri from "lib"; import { Config } from "lib/config"; -import { logger } from "lib/logging"; export const logoutCommand = new Command() .name("logout") @@ -13,7 +12,7 @@ export const logoutCommand = new Command() const config = new Config(); const auth = config.auth; if (!auth) { - logger.error("You must log in first with `sindri login`."); + sindri.logger.error("You must log in first with `sindri login`."); return; } @@ -24,21 +23,19 @@ export const logoutCommand = new Command() }); if (revokeKey) { try { - const response = await AuthorizationService.apikeyDelete(auth.apiKeyId); - logger.info(`Successfully revoked "${auth.apiKeyName}" key.`); - logger.debug(`/api/v1/apikey/${auth.apiKeyId}/delete/ response:`); - logger.debug(response); + await sindri._client.authorization.apikeyDelete(auth.apiKeyId); + sindri.logger.info(`Successfully revoked "${auth.apiKeyName}" key.`); } catch (error) { - logger.warn( + sindri.logger.warn( `Error revoking "${auth.apiKeyName}" key, proceeding to clear credentials anyway.`, ); - logger.error(error); + sindri.logger.error(error); } } else { - logger.warn("Skipping revocation of existing key."); + sindri.logger.warn("Skipping revocation of existing key."); } // Clear the existing credentials. config.update({ auth: null }); - logger.info("You have successfully logged out."); + sindri.logger.info("You have successfully logged out."); }); diff --git a/src/cli/utils.ts b/src/cli/utils.ts index 1001c20..d21dedf 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -7,7 +7,7 @@ import type { Schema } from "jsonschema"; import nunjucks from "nunjucks"; import type { PackageJson } from "type-fest"; -import { logger } from "lib/logging"; +import type { Logger } from "lib/logging"; const currentFilePath = fileURLToPath(import.meta.url); const currentDirectoryPath = path.dirname(currentFilePath); @@ -114,11 +114,13 @@ export function locatePackageJson(): string { * @param outputDirectory - The path to the output directory where the populated templates will be * written. * @param context - The nunjucks template context. + * @param logger - The logger to use for debug messages. */ export async function scaffoldDirectory( templateDirectory: string, outputDirectory: string, context: object, + logger?: Logger, ): Promise { // Normalize the paths and create the output directory if necessary. const fullOutputDirectory = path.resolve(outputDirectory); @@ -163,7 +165,7 @@ export async function scaffoldDirectory( // Ensure the output directory exists. if (!(await fileExists(outputPath))) { await mkdir(outputPath, { recursive: true }); - logger.debug(`Created directory: "${outputPath}"`); + logger?.debug(`Created directory: "${outputPath}"`); } if (!(await stat(outputPath)).isDirectory()) { throw new Error(`"File ${outputPath} exists and is not a directory.`); @@ -189,7 +191,7 @@ export async function scaffoldDirectory( const template = await readFile(inputPath, { encoding: "utf-8" }); const renderedTemplate = render(template, context); await writeFile(outputPath, renderedTemplate, { encoding: "utf-8" }); - logger.debug(`Rendered "${inputPath}" template to "${outputPath}".`); + logger?.debug(`Rendered "${inputPath}" template to "${outputPath}".`); }; await processPath(fullTemplateDirectory, fullOutputDirectory); } diff --git a/src/cli/whoami.ts b/src/cli/whoami.ts index 19b2542..37a1abf 100644 --- a/src/cli/whoami.ts +++ b/src/cli/whoami.ts @@ -2,32 +2,31 @@ import process from "process"; import { Command } from "@commander-js/extra-typings"; -import { ApiError, InternalService, OpenAPI } from "lib/api"; -import { logger, print } from "lib/logging"; +import sindri from "lib"; +import { ApiError } from "lib/api"; +import { print } from "lib/logging"; export const whoamiCommand = new Command() .name("whoami") .description("Display the currently authorized organization name.") .action(async () => { // Check that the API client is authorized. - if (!OpenAPI.TOKEN || !OpenAPI.BASE) { - logger.warn("You must login first with `sindri login`."); + if (!sindri.apiKey || !sindri.baseUrl) { + sindri.logger.warn("You must login first with `sindri login`."); return process.exit(1); } try { - const response = await InternalService.teamMe(); - logger.debug("/api/v1/team/me/ response:"); - logger.debug(response); + const response = await sindri._client.internal.teamMe(); print(response.team.slug); } catch (error) { if (error instanceof ApiError && error.status === 401) { - logger.error( + sindri.logger.error( "Your credentials are invalid. Please log in again with `sindri login`.", ); } else { - logger.fatal("An unknown error occurred."); - logger.error(error); + sindri.logger.fatal("An unknown error occurred."); + sindri.logger.error(error); return process.exit(1); } } diff --git a/src/lib/api/ApiClient.ts b/src/lib/api/ApiClient.ts new file mode 100644 index 0000000..ab68930 --- /dev/null +++ b/src/lib/api/ApiClient.ts @@ -0,0 +1,47 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ +import type { BaseHttpRequest } from './core/BaseHttpRequest'; +import type { OpenAPIConfig } from './core/OpenAPI'; +import { AxiosHttpRequest } from './core/AxiosHttpRequest'; + +import { AuthorizationService } from './services/AuthorizationService'; +import { CircuitsService } from './services/CircuitsService'; +import { InternalService } from './services/InternalService'; +import { ProofsService } from './services/ProofsService'; +import { TokenService } from './services/TokenService'; + +type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest; + +export class ApiClient { + + public readonly authorization: AuthorizationService; + public readonly circuits: CircuitsService; + public readonly internal: InternalService; + public readonly proofs: ProofsService; + public readonly token: TokenService; + + public readonly request: BaseHttpRequest; + + constructor(config?: Partial, HttpRequest: HttpRequestConstructor = AxiosHttpRequest) { + this.request = new HttpRequest({ + BASE: config?.BASE ?? 'https://sindri.app', + VERSION: config?.VERSION ?? '1.6.7', + WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false, + CREDENTIALS: config?.CREDENTIALS ?? 'include', + TOKEN: config?.TOKEN, + USERNAME: config?.USERNAME, + PASSWORD: config?.PASSWORD, + HEADERS: config?.HEADERS, + ENCODE_PATH: config?.ENCODE_PATH, + }); + + this.authorization = new AuthorizationService(this.request); + this.circuits = new CircuitsService(this.request); + this.internal = new InternalService(this.request); + this.proofs = new ProofsService(this.request); + this.token = new TokenService(this.request); + } +} + diff --git a/src/lib/api/core/AxiosHttpRequest.ts b/src/lib/api/core/AxiosHttpRequest.ts new file mode 100644 index 0000000..f2bc926 --- /dev/null +++ b/src/lib/api/core/AxiosHttpRequest.ts @@ -0,0 +1,25 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ +import type { ApiRequestOptions } from "./ApiRequestOptions"; +import { BaseHttpRequest } from "./BaseHttpRequest"; +import type { CancelablePromise } from "./CancelablePromise"; +import type { OpenAPIConfig } from "./OpenAPI"; +import { request as __request } from "./request"; + +export class AxiosHttpRequest extends BaseHttpRequest { + constructor(config: OpenAPIConfig) { + super(config); + } + + /** + * Request method + * @param options The request options from the service + * @returns CancelablePromise + * @throws ApiError + */ + public override request(options: ApiRequestOptions): CancelablePromise { + return __request(this.config, options); + } +} diff --git a/src/lib/api/core/BaseHttpRequest.ts b/src/lib/api/core/BaseHttpRequest.ts new file mode 100644 index 0000000..f078115 --- /dev/null +++ b/src/lib/api/core/BaseHttpRequest.ts @@ -0,0 +1,13 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ +import type { ApiRequestOptions } from "./ApiRequestOptions"; +import type { CancelablePromise } from "./CancelablePromise"; +import type { OpenAPIConfig } from "./OpenAPI"; + +export abstract class BaseHttpRequest { + constructor(public readonly config: OpenAPIConfig) {} + + public abstract request(options: ApiRequestOptions): CancelablePromise; +} diff --git a/src/lib/api/core/OpenAPI.ts b/src/lib/api/core/OpenAPI.ts index a1dde9d..d7833fa 100644 --- a/src/lib/api/core/OpenAPI.ts +++ b/src/lib/api/core/OpenAPI.ts @@ -2,6 +2,8 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ +import type { Logger } from "lib/logging"; // DO NOT REMOVE + import type { ApiRequestOptions } from "./ApiRequestOptions"; type Resolver = (options: ApiRequestOptions) => Promise; @@ -17,11 +19,15 @@ export type OpenAPIConfig = { PASSWORD?: string | Resolver | undefined; HEADERS?: Headers | Resolver | undefined; ENCODE_PATH?: ((path: string) => string) | undefined; + // DO NOT REMOVE + // Shoehorn the logger into the OpenAPIConfig type because it's the only shared data structure + // between the SDK client class and the request methods `requests.ts` module. + logger?: Logger; // DO NOT REMOVE }; export const OpenAPI: OpenAPIConfig = { BASE: "https://sindri.app", - VERSION: "1.5.40", + VERSION: "1.6.7", WITH_CREDENTIALS: false, CREDENTIALS: "include", TOKEN: undefined, diff --git a/src/lib/api/core/request.ts b/src/lib/api/core/request.ts index 4ea423e..93495b3 100644 --- a/src/lib/api/core/request.ts +++ b/src/lib/api/core/request.ts @@ -1,4 +1,10 @@ -/* generated using openapi-typescript-codegen -- do no edit */ +/* This file was originally generated by `openapi-typescript-codegen`, but we've customized it and + * it is no longer regenerated. The key changes: + * + * * Support pre-constructed `FormData` instances, and make `FormData` isomorphic. + * * Add request/response logging for all API requests in `request()`. + */ + /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ @@ -9,7 +15,8 @@ import type { AxiosResponse, AxiosInstance, } from "axios"; -import { FormData } from "lib/isomorphic"; // DO NOT REMOVE OR CHANGE THIS, MANUAL EDIT!!! +// Manual edit to use our isomorphic `FormData`. +import { FormData } from "lib/isomorphic"; import { ApiError } from "./ApiError"; import type { ApiRequestOptions } from "./ApiRequestOptions"; @@ -120,7 +127,6 @@ export const getFormData = ( ): FormData | undefined => { if (options.formData) { // This is a manual edit to allow `FormData` to be passed in directly. - // DO NOT REMOVE THIS! if (options.formData instanceof FormData) { return options.formData; } @@ -171,7 +177,7 @@ export const getHeaders = async ( const username = await resolve(options, config.USERNAME); const password = await resolve(options, config.PASSWORD); const additionalHeaders = await resolve(options, config.HEADERS); - // DO NOT REMOVE THIS, MANUAL EDIT! + // Manual edit to support `FormData` implementations that don't include `getHeaders()`. const formHeaders = (formData && "getHeaders" in formData && @@ -249,7 +255,8 @@ export const sendRequest = async ( onCancel(() => source.cancel("The user aborted a request.")); try { - return await axiosClient.request(requestConfig); + const response = await axiosClient.request(requestConfig); + return response; } catch (error) { const axiosError = error as AxiosError; if (axiosError.response) { @@ -332,13 +339,34 @@ export const request = ( axiosClient: AxiosInstance = axios, ): CancelablePromise => { return new CancelablePromise(async (resolve, reject, onCancel) => { + // Get a nicely formatted timedelta to display after requests. + const startTime = Date.now(); + const getElapsedTime = (): string => { + const ellapsedMilliseconds = Date.now() - startTime; + if (ellapsedMilliseconds < 1000) { + return `${ellapsedMilliseconds} ms`; + } + const ellapsedSeconds = ellapsedMilliseconds / 1000; + if (ellapsedSeconds < 60) { + return `${ellapsedSeconds.toFixed(2)} s`; + } + const ellapsedMinutes = ellapsedSeconds / 60; + if (ellapsedMinutes < 60) { + return `${ellapsedMinutes.toFixed(2)} m`; + } + const ellapsedHours = ellapsedMinutes / 60; + return `${ellapsedHours.toFixed(2)} h`; + }; + + const url = getUrl(config, options); + const logPrefix = `${options.method} ${url}`; try { - const url = getUrl(config, options); const formData = getFormData(options); const body = getRequestBody(options); const headers = await getHeaders(config, options, formData); if (!onCancel.isCancelled) { + config.logger?.debug(`${logPrefix} requested`); const response = await sendRequest( config, options, @@ -362,12 +390,27 @@ export const request = ( statusText: response.statusText, body: responseHeader ?? responseBody, }; + const responseMessage = `${logPrefix} ${response.status} ${ + response.statusText + } (${getElapsedTime()})`; + if (!result.body || typeof result.body === "string") { + config.logger?.debug( + `${responseMessage} - ${result.body || ""}`, + ); + } else { + config.logger?.debug(result.body, responseMessage); + } catchErrorCodes(options, result); resolve(result.body); } } catch (error) { + const errorMessage = + error instanceof Error ? error.message : "Unknown error"; + config.logger?.debug( + `${logPrefix} ERROR (${getElapsedTime()}) - ${errorMessage}`, + ); reject(error); } }); diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index a9aa8c3..732a2ed 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -2,43 +2,47 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ -export { ApiError } from "./core/ApiError"; -export { CancelablePromise, CancelError } from "./core/CancelablePromise"; -export { OpenAPI } from "./core/OpenAPI"; -export type { OpenAPIConfig } from "./core/OpenAPI"; +export { ApiClient } from './ApiClient'; -export type { ActionResponse } from "./models/ActionResponse"; -export type { APIKeyDoesNotExistResponse } from "./models/APIKeyDoesNotExistResponse"; -export type { APIKeyErrorResponse } from "./models/APIKeyErrorResponse"; -export type { APIKeyResponse } from "./models/APIKeyResponse"; -export type { CircomCircuitInfoResponse } from "./models/CircomCircuitInfoResponse"; -export type { CircuitDoesNotExistResponse } from "./models/CircuitDoesNotExistResponse"; -export type { CircuitStatus } from "./models/CircuitStatus"; -export type { CircuitType } from "./models/CircuitType"; -export type { ComingSoonResponse } from "./models/ComingSoonResponse"; -export type { ForgeInternalErrorResponse } from "./models/ForgeInternalErrorResponse"; -export type { ForgeInvalidUploadResponse } from "./models/ForgeInvalidUploadResponse"; -export type { GnarkCircuitInfoResponse } from "./models/GnarkCircuitInfoResponse"; -export type { Halo2CircuitInfoResponse } from "./models/Halo2CircuitInfoResponse"; -export type { NoirCircuitInfoResponse } from "./models/NoirCircuitInfoResponse"; -export type { ObtainApikeyInput } from "./models/ObtainApikeyInput"; -export type { ProofCannotBeCreatedResponse } from "./models/ProofCannotBeCreatedResponse"; -export type { ProofDoesNotExistResponse } from "./models/ProofDoesNotExistResponse"; -export type { ProofInfoResponse } from "./models/ProofInfoResponse"; -export type { ProofStatus } from "./models/ProofStatus"; -export type { Schema } from "./models/Schema"; -export type { TeamDetail } from "./models/TeamDetail"; -export type { TeamMeResponse } from "./models/TeamMeResponse"; -export type { TokenObtainPairInputSchema } from "./models/TokenObtainPairInputSchema"; -export type { TokenObtainPairOutputSchema } from "./models/TokenObtainPairOutputSchema"; -export type { TokenRefreshInputSchema } from "./models/TokenRefreshInputSchema"; -export type { TokenRefreshOutputSchema } from "./models/TokenRefreshOutputSchema"; -export type { TokenVerifyInputSchema } from "./models/TokenVerifyInputSchema"; -export type { UserMeResponse } from "./models/UserMeResponse"; -export type { ValidationErrorResponse } from "./models/ValidationErrorResponse"; +export { ApiError } from './core/ApiError'; +export { BaseHttpRequest } from './core/BaseHttpRequest'; +export { CancelablePromise, CancelError } from './core/CancelablePromise'; +export { OpenAPI } from './core/OpenAPI'; +export type { OpenAPIConfig } from './core/OpenAPI'; -export { AuthorizationService } from "./services/AuthorizationService"; -export { CircuitsService } from "./services/CircuitsService"; -export { InternalService } from "./services/InternalService"; -export { ProofsService } from "./services/ProofsService"; -export { TokenService } from "./services/TokenService"; +export type { ActionResponse } from './models/ActionResponse'; +export type { APIKeyDoesNotExistResponse } from './models/APIKeyDoesNotExistResponse'; +export type { APIKeyErrorResponse } from './models/APIKeyErrorResponse'; +export type { APIKeyResponse } from './models/APIKeyResponse'; +export type { CircomCircuitInfoResponse } from './models/CircomCircuitInfoResponse'; +export type { CircuitDoesNotExistResponse } from './models/CircuitDoesNotExistResponse'; +export type { CircuitInfoResponse } from './models/CircuitInfoResponse'; +export type { CircuitType } from './models/CircuitType'; +export type { ComingSoonResponse } from './models/ComingSoonResponse'; +export type { ForgeInternalErrorResponse } from './models/ForgeInternalErrorResponse'; +export type { ForgeInvalidUploadResponse } from './models/ForgeInvalidUploadResponse'; +export type { ForgeValueErrorResponse } from './models/ForgeValueErrorResponse'; +export type { GnarkCircuitInfoResponse } from './models/GnarkCircuitInfoResponse'; +export type { Halo2CircuitInfoResponse } from './models/Halo2CircuitInfoResponse'; +export type { JobStatus } from './models/JobStatus'; +export type { NoirCircuitInfoResponse } from './models/NoirCircuitInfoResponse'; +export type { ObtainApikeyInput } from './models/ObtainApikeyInput'; +export type { ProofCannotBeCreatedResponse } from './models/ProofCannotBeCreatedResponse'; +export type { ProofDoesNotExistResponse } from './models/ProofDoesNotExistResponse'; +export type { ProofInfoResponse } from './models/ProofInfoResponse'; +export type { Schema } from './models/Schema'; +export type { TeamDetail } from './models/TeamDetail'; +export type { TeamMeResponse } from './models/TeamMeResponse'; +export type { TokenObtainPairInputSchema } from './models/TokenObtainPairInputSchema'; +export type { TokenObtainPairOutputSchema } from './models/TokenObtainPairOutputSchema'; +export type { TokenRefreshInputSchema } from './models/TokenRefreshInputSchema'; +export type { TokenRefreshOutputSchema } from './models/TokenRefreshOutputSchema'; +export type { TokenVerifyInputSchema } from './models/TokenVerifyInputSchema'; +export type { UserMeResponse } from './models/UserMeResponse'; +export type { ValidationErrorResponse } from './models/ValidationErrorResponse'; + +export { AuthorizationService } from './services/AuthorizationService'; +export { CircuitsService } from './services/CircuitsService'; +export { InternalService } from './services/InternalService'; +export { ProofsService } from './services/ProofsService'; +export { TokenService } from './services/TokenService'; diff --git a/src/lib/api/models/CircomCircuitInfoResponse.ts b/src/lib/api/models/CircomCircuitInfoResponse.ts index 2ba6714..7782e25 100644 --- a/src/lib/api/models/CircomCircuitInfoResponse.ts +++ b/src/lib/api/models/CircomCircuitInfoResponse.ts @@ -3,8 +3,7 @@ /* tslint:disable */ /* eslint-disable */ -import type { CircuitStatus } from "./CircuitStatus"; -import type { CircuitType } from "./CircuitType"; +import type { JobStatus } from "./JobStatus"; /** * Response for getting Circom circuit info. @@ -12,11 +11,11 @@ import type { CircuitType } from "./CircuitType"; export type CircomCircuitInfoResponse = { circuit_id: string; circuit_name: string; - circuit_type: CircuitType; + circuit_type: "circom"; date_created: string; num_proofs: number; proving_scheme: string; - status: CircuitStatus; + status: JobStatus; team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. diff --git a/src/lib/api/models/CircuitInfoResponse.ts b/src/lib/api/models/CircuitInfoResponse.ts new file mode 100644 index 0000000..cd94bd8 --- /dev/null +++ b/src/lib/api/models/CircuitInfoResponse.ts @@ -0,0 +1,18 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ + +import type { CircomCircuitInfoResponse } from "./CircomCircuitInfoResponse"; +import type { GnarkCircuitInfoResponse } from "./GnarkCircuitInfoResponse"; +import type { Halo2CircuitInfoResponse } from "./Halo2CircuitInfoResponse"; +import type { NoirCircuitInfoResponse } from "./NoirCircuitInfoResponse"; + +/** + * Response for getting circuit info. + */ +export type CircuitInfoResponse = + | CircomCircuitInfoResponse + | Halo2CircuitInfoResponse + | GnarkCircuitInfoResponse + | NoirCircuitInfoResponse; diff --git a/src/lib/api/models/CircuitStatus.ts b/src/lib/api/models/ForgeValueErrorResponse.ts similarity index 55% rename from src/lib/api/models/CircuitStatus.ts rename to src/lib/api/models/ForgeValueErrorResponse.ts index f5b5c41..9d32d00 100644 --- a/src/lib/api/models/CircuitStatus.ts +++ b/src/lib/api/models/ForgeValueErrorResponse.ts @@ -4,6 +4,9 @@ /* eslint-disable */ /** - * CircuitStatus choices + * Response for ForgeValueError */ -export type CircuitStatus = "Queued" | "In Progress" | "Ready" | "Failed"; +export type ForgeValueErrorResponse = { + error: string; + message?: string; +}; diff --git a/src/lib/api/models/GnarkCircuitInfoResponse.ts b/src/lib/api/models/GnarkCircuitInfoResponse.ts index 33568db..781d0d2 100644 --- a/src/lib/api/models/GnarkCircuitInfoResponse.ts +++ b/src/lib/api/models/GnarkCircuitInfoResponse.ts @@ -3,8 +3,7 @@ /* tslint:disable */ /* eslint-disable */ -import type { CircuitStatus } from "./CircuitStatus"; -import type { CircuitType } from "./CircuitType"; +import type { JobStatus } from "./JobStatus"; /** * Response for getting Gnark circuit info. @@ -12,11 +11,11 @@ import type { CircuitType } from "./CircuitType"; export type GnarkCircuitInfoResponse = { circuit_id: string; circuit_name: string; - circuit_type: CircuitType; + circuit_type: "gnark"; date_created: string; num_proofs: number; proving_scheme: string; - status: CircuitStatus; + status: JobStatus; team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. diff --git a/src/lib/api/models/Halo2CircuitInfoResponse.ts b/src/lib/api/models/Halo2CircuitInfoResponse.ts index c266246..cf66663 100644 --- a/src/lib/api/models/Halo2CircuitInfoResponse.ts +++ b/src/lib/api/models/Halo2CircuitInfoResponse.ts @@ -3,8 +3,7 @@ /* tslint:disable */ /* eslint-disable */ -import type { CircuitStatus } from "./CircuitStatus"; -import type { CircuitType } from "./CircuitType"; +import type { JobStatus } from "./JobStatus"; /** * Response for getting Halo2 circuit info. @@ -12,11 +11,11 @@ import type { CircuitType } from "./CircuitType"; export type Halo2CircuitInfoResponse = { circuit_id: string; circuit_name: string; - circuit_type: CircuitType; + circuit_type: "halo2"; date_created: string; num_proofs: number; proving_scheme: string; - status: CircuitStatus; + status: JobStatus; team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. diff --git a/src/lib/api/models/ProofStatus.ts b/src/lib/api/models/JobStatus.ts similarity index 59% rename from src/lib/api/models/ProofStatus.ts rename to src/lib/api/models/JobStatus.ts index 6908685..c226783 100644 --- a/src/lib/api/models/ProofStatus.ts +++ b/src/lib/api/models/JobStatus.ts @@ -4,6 +4,6 @@ /* eslint-disable */ /** - * ProofStatus choices + * JobStatus choices */ -export type ProofStatus = "Queued" | "In Progress" | "Ready" | "Failed"; +export type JobStatus = "Queued" | "In Progress" | "Ready" | "Failed"; diff --git a/src/lib/api/models/NoirCircuitInfoResponse.ts b/src/lib/api/models/NoirCircuitInfoResponse.ts index 26bd0d1..943509e 100644 --- a/src/lib/api/models/NoirCircuitInfoResponse.ts +++ b/src/lib/api/models/NoirCircuitInfoResponse.ts @@ -3,8 +3,7 @@ /* tslint:disable */ /* eslint-disable */ -import type { CircuitStatus } from "./CircuitStatus"; -import type { CircuitType } from "./CircuitType"; +import type { JobStatus } from "./JobStatus"; /** * Response for getting Noir circuit info. @@ -12,11 +11,11 @@ import type { CircuitType } from "./CircuitType"; export type NoirCircuitInfoResponse = { circuit_id: string; circuit_name: string; - circuit_type: CircuitType; + circuit_type: "noir"; date_created: string; num_proofs: number; proving_scheme: string; - status: CircuitStatus; + status: JobStatus; team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. @@ -37,4 +36,5 @@ export type NoirCircuitInfoResponse = { acir_opcodes?: number; circuit_size?: number; nargo_package_name: string; + noir_version: string; }; diff --git a/src/lib/api/models/ProofInfoResponse.ts b/src/lib/api/models/ProofInfoResponse.ts index 01e4203..0591001 100644 --- a/src/lib/api/models/ProofInfoResponse.ts +++ b/src/lib/api/models/ProofInfoResponse.ts @@ -4,7 +4,7 @@ /* eslint-disable */ import type { CircuitType } from "./CircuitType"; -import type { ProofStatus } from "./ProofStatus"; +import type { JobStatus } from "./JobStatus"; /** * Response for getting proof info. @@ -16,7 +16,7 @@ export type ProofInfoResponse = { circuit_type: CircuitType; date_created: string; perform_verify: boolean; - status: ProofStatus; + status: JobStatus; team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. diff --git a/src/lib/api/services/AuthorizationService.ts b/src/lib/api/services/AuthorizationService.ts index dde1047..f90dd38 100644 --- a/src/lib/api/services/AuthorizationService.ts +++ b/src/lib/api/services/AuthorizationService.ts @@ -7,10 +7,11 @@ import type { APIKeyResponse } from "../models/APIKeyResponse"; import type { ObtainApikeyInput } from "../models/ObtainApikeyInput"; import type { CancelablePromise } from "../core/CancelablePromise"; -import { OpenAPI } from "../core/OpenAPI"; -import { request as __request } from "../core/request"; +import type { BaseHttpRequest } from "../core/BaseHttpRequest"; export class AuthorizationService { + constructor(public readonly httpRequest: BaseHttpRequest) {} + /** * Generate API Key * Generates a long-term API Key from your account's username and password. @@ -18,16 +19,17 @@ export class AuthorizationService { * @returns APIKeyResponse OK * @throws ApiError */ - public static apikeyGenerate( + public apikeyGenerate( requestBody: ObtainApikeyInput, ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/apikey/generate", body: requestBody, mediaType: "application/json", errors: { 401: `Unauthorized`, + 412: `Precondition Failed`, }, }); } @@ -39,15 +41,18 @@ export class AuthorizationService { * @returns APIKeyResponse Created * @throws ApiError */ - public static apikeyGenerateWithAuth( + public apikeyGenerateWithAuth( name: string = "", ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/v1/apikey/generate", query: { name: name, }, + errors: { + 412: `Precondition Failed`, + }, }); } @@ -57,8 +62,8 @@ export class AuthorizationService { * @returns APIKeyResponse OK * @throws ApiError */ - public static apikeyList(): CancelablePromise> { - return __request(OpenAPI, { + public apikeyList(): CancelablePromise> { + return this.httpRequest.request({ method: "GET", url: "/api/v1/apikey/list", errors: { @@ -74,10 +79,8 @@ export class AuthorizationService { * @returns ActionResponse OK * @throws ApiError */ - public static apikeyDelete( - apikeyId: string, - ): CancelablePromise { - return __request(OpenAPI, { + public apikeyDelete(apikeyId: string): CancelablePromise { + return this.httpRequest.request({ method: "DELETE", url: "/api/v1/apikey/{apikey_id}/delete", path: { diff --git a/src/lib/api/services/CircuitsService.ts b/src/lib/api/services/CircuitsService.ts index be1910c..1ae343a 100644 --- a/src/lib/api/services/CircuitsService.ts +++ b/src/lib/api/services/CircuitsService.ts @@ -2,28 +2,25 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ -import { FormData } from "lib/isomorphic"; // DO NOT REMOVE OR CHANGE THIS, MANUAL EDIT!!! import type { ActionResponse } from "../models/ActionResponse"; -import type { CircomCircuitInfoResponse } from "../models/CircomCircuitInfoResponse"; -import type { GnarkCircuitInfoResponse } from "../models/GnarkCircuitInfoResponse"; -import type { Halo2CircuitInfoResponse } from "../models/Halo2CircuitInfoResponse"; -import type { NoirCircuitInfoResponse } from "../models/NoirCircuitInfoResponse"; +import type { CircuitInfoResponse } from "../models/CircuitInfoResponse"; import type { ProofInfoResponse } from "../models/ProofInfoResponse"; import type { CancelablePromise } from "../core/CancelablePromise"; -import { OpenAPI } from "../core/OpenAPI"; -import { request as __request } from "../core/request"; +import type { BaseHttpRequest } from "../core/BaseHttpRequest"; export class CircuitsService { + constructor(public readonly httpRequest: BaseHttpRequest) {} + /** * Create Circuit * Create a circuit. * @param formData - * @returns any Created + * @returns CircuitInfoResponse Created * @throws ApiError */ - public static circuitCreate( + public circuitCreate( formData: // This is a manual edit to allow `FormData` to be passed in directly: | FormData // DO NOT REMOVE THIS! | { @@ -33,13 +30,8 @@ export class CircuitsService { */ tags?: Array; }, - ): CancelablePromise< - | CircomCircuitInfoResponse - | Halo2CircuitInfoResponse - | GnarkCircuitInfoResponse - | NoirCircuitInfoResponse - > { - return __request(OpenAPI, { + ): CancelablePromise { + return this.httpRequest.request({ method: "POST", url: "/api/v1/circuit/create", formData: formData, @@ -57,20 +49,13 @@ export class CircuitsService { * Circuit List * Return a list of CircuitInfoResponse for circuits related to user. * @param includeVerificationKey - * @returns any OK + * @returns CircuitInfoResponse OK * @throws ApiError */ - public static circuitList( + public circuitList( includeVerificationKey: boolean = false, - ): CancelablePromise< - Array< - | CircomCircuitInfoResponse - | Halo2CircuitInfoResponse - | GnarkCircuitInfoResponse - | NoirCircuitInfoResponse - > - > { - return __request(OpenAPI, { + ): CancelablePromise> { + return this.httpRequest.request({ method: "GET", url: "/api/v1/circuit/list", query: { @@ -87,19 +72,14 @@ export class CircuitsService { * Get info for existing circuit * @param circuitId * @param includeVerificationKey - * @returns any OK + * @returns CircuitInfoResponse OK * @throws ApiError */ - public static circuitDetail( + public circuitDetail( circuitId: string, includeVerificationKey: boolean = true, - ): CancelablePromise< - | CircomCircuitInfoResponse - | Halo2CircuitInfoResponse - | GnarkCircuitInfoResponse - | NoirCircuitInfoResponse - > { - return __request(OpenAPI, { + ): CancelablePromise { + return this.httpRequest.request({ method: "GET", url: "/api/v1/circuit/{circuit_id}/detail", path: { @@ -122,10 +102,8 @@ export class CircuitsService { * @returns ActionResponse OK * @throws ApiError */ - public static circuitDelete( - circuitId: string, - ): CancelablePromise { - return __request(OpenAPI, { + public circuitDelete(circuitId: string): CancelablePromise { + return this.httpRequest.request({ method: "DELETE", url: "/api/v1/circuit/{circuit_id}/delete", path: { @@ -149,14 +127,14 @@ export class CircuitsService { * @returns ProofInfoResponse OK * @throws ApiError */ - public static circuitProofs( + public circuitProofs( circuitId: string, includeProofInput: boolean = false, includeProof: boolean = false, includePublic: boolean = false, includeVerificationKey: boolean = false, ): CancelablePromise> { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "GET", url: "/api/v1/circuit/{circuit_id}/proofs", path: { @@ -183,7 +161,7 @@ export class CircuitsService { * @returns ProofInfoResponse Created * @throws ApiError */ - public static proofCreate( + public proofCreate( circuitId: string, formData: { /** @@ -200,7 +178,7 @@ export class CircuitsService { prover_implementation?: string; }, ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/v1/circuit/{circuit_id}/prove", path: { diff --git a/src/lib/api/services/InternalService.ts b/src/lib/api/services/InternalService.ts index e8011b6..768e68b 100644 --- a/src/lib/api/services/InternalService.ts +++ b/src/lib/api/services/InternalService.ts @@ -7,10 +7,11 @@ import type { TeamMeResponse } from "../models/TeamMeResponse"; import type { UserMeResponse } from "../models/UserMeResponse"; import type { CancelablePromise } from "../core/CancelablePromise"; -import { OpenAPI } from "../core/OpenAPI"; -import { request as __request } from "../core/request"; +import type { BaseHttpRequest } from "../core/BaseHttpRequest"; export class InternalService { + constructor(public readonly httpRequest: BaseHttpRequest) {} + /** * Change user password (requires JWT authentication) * Change password for a user. @@ -24,7 +25,7 @@ export class InternalService { * @returns ActionResponse OK * @throws ApiError */ - public static passwordChangeWithJwtAuth(formData: { + public passwordChangeWithJwtAuth(formData: { /** * Old password. */ @@ -34,7 +35,7 @@ export class InternalService { */ new_password: string; }): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/v1/password/change", formData: formData, @@ -51,8 +52,8 @@ export class InternalService { * @returns any OK * @throws ApiError */ - public static sindriManifestSchema(): CancelablePromise> { - return __request(OpenAPI, { + public sindriManifestSchema(): CancelablePromise> { + return this.httpRequest.request({ method: "GET", url: "/api/v1/sindri-manifest-schema.json", }); @@ -64,8 +65,8 @@ export class InternalService { * @returns TeamMeResponse OK * @throws ApiError */ - public static teamMe(): CancelablePromise { - return __request(OpenAPI, { + public teamMe(): CancelablePromise { + return this.httpRequest.request({ method: "GET", url: "/api/v1/team/me", }); @@ -81,8 +82,8 @@ export class InternalService { * @returns UserMeResponse OK * @throws ApiError */ - public static userMeWithJwtAuth(): CancelablePromise { - return __request(OpenAPI, { + public userMeWithJwtAuth(): CancelablePromise { + return this.httpRequest.request({ method: "GET", url: "/api/v1/user/me", }); diff --git a/src/lib/api/services/ProofsService.ts b/src/lib/api/services/ProofsService.ts index f3a07c0..7bcc70b 100644 --- a/src/lib/api/services/ProofsService.ts +++ b/src/lib/api/services/ProofsService.ts @@ -6,10 +6,11 @@ import type { ActionResponse } from "../models/ActionResponse"; import type { ProofInfoResponse } from "../models/ProofInfoResponse"; import type { CancelablePromise } from "../core/CancelablePromise"; -import { OpenAPI } from "../core/OpenAPI"; -import { request as __request } from "../core/request"; +import type { BaseHttpRequest } from "../core/BaseHttpRequest"; export class ProofsService { + constructor(public readonly httpRequest: BaseHttpRequest) {} + /** * Proof List * Return list of ProofInfoResponse for proofs related to team. @@ -20,13 +21,13 @@ export class ProofsService { * @returns ProofInfoResponse OK * @throws ApiError */ - public static proofList( + public proofList( includeProofInput: boolean = false, includeProof: boolean = false, includePublic: boolean = false, includeVerificationKey: boolean = false, ): CancelablePromise> { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "GET", url: "/api/v1/proof/list", query: { @@ -52,14 +53,14 @@ export class ProofsService { * @returns ProofInfoResponse OK * @throws ApiError */ - public static proofDetail( + public proofDetail( proofId: string, includeProofInput: boolean = true, includeProof: boolean = true, includePublic: boolean = true, includeVerificationKey: boolean = true, ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "GET", url: "/api/v1/proof/{proof_id}/detail", path: { @@ -85,10 +86,8 @@ export class ProofsService { * @returns ActionResponse OK * @throws ApiError */ - public static proofDelete( - proofId: string, - ): CancelablePromise { - return __request(OpenAPI, { + public proofDelete(proofId: string): CancelablePromise { + return this.httpRequest.request({ method: "DELETE", url: "/api/v1/proof/{proof_id}/delete", path: { diff --git a/src/lib/api/services/TokenService.ts b/src/lib/api/services/TokenService.ts index 1054238..34a1eb0 100644 --- a/src/lib/api/services/TokenService.ts +++ b/src/lib/api/services/TokenService.ts @@ -10,20 +10,21 @@ import type { TokenRefreshOutputSchema } from "../models/TokenRefreshOutputSchem import type { TokenVerifyInputSchema } from "../models/TokenVerifyInputSchema"; import type { CancelablePromise } from "../core/CancelablePromise"; -import { OpenAPI } from "../core/OpenAPI"; -import { request as __request } from "../core/request"; +import type { BaseHttpRequest } from "../core/BaseHttpRequest"; export class TokenService { + constructor(public readonly httpRequest: BaseHttpRequest) {} + /** * Obtain Token * @param requestBody * @returns TokenObtainPairOutputSchema OK * @throws ApiError */ - public static bf740E1AControllerObtainToken( + public fd3Aaa7BControllerObtainToken( requestBody: TokenObtainPairInputSchema, ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/token/pair", body: requestBody, @@ -37,10 +38,10 @@ export class TokenService { * @returns TokenRefreshOutputSchema OK * @throws ApiError */ - public static db93F15ControllerRefreshToken( + public b87E0720ControllerRefreshToken( requestBody: TokenRefreshInputSchema, ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/token/refresh", body: requestBody, @@ -54,10 +55,10 @@ export class TokenService { * @returns Schema OK * @throws ApiError */ - public static abc17FbControllerVerifyToken( + public d1C092ControllerVerifyToken( requestBody: TokenVerifyInputSchema, ): CancelablePromise { - return __request(OpenAPI, { + return this.httpRequest.request({ method: "POST", url: "/api/token/verify", body: requestBody, diff --git a/src/lib/client.ts b/src/lib/client.ts index 6b58859..5cb774b 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -7,14 +7,7 @@ import walk from "ignore-walk"; import tar from "tar"; import Tar from "tar-js"; -import { - CircuitsService, - CircuitStatus, - CircuitType, - OpenAPI, - ProofsService, - ProofStatus, -} from "lib/api"; +import { ApiClient, CircuitType, JobStatus, OpenAPIConfig } from "lib/api"; import type { CircomCircuitInfoResponse, Halo2CircuitInfoResponse, @@ -22,8 +15,8 @@ import type { NoirCircuitInfoResponse, ProofInfoResponse, } from "lib/api"; -import { loadConfig } from "lib/config"; -import { logger, LogLevel } from "lib/logging"; +import { Config } from "lib/config"; +import { createLogger, type Logger, type LogLevel } from "lib/logging"; import { File, FormData } from "lib/isomorphic"; import type { BrowserFile, @@ -33,11 +26,12 @@ import type { } from "lib/isomorphic"; // Re-export types from the API. -export { CircuitStatus, CircuitType, ProofStatus }; export type { CircomCircuitInfoResponse, + CircuitType, GnarkCircuitInfoResponse, Halo2CircuitInfoResponse, + JobStatus, NoirCircuitInfoResponse, ProofInfoResponse, }; @@ -47,6 +41,9 @@ export type CircuitInfoResponse = | GnarkCircuitInfoResponse | NoirCircuitInfoResponse; +// Re-export other internal types. +export type { Logger, LogLevel }; + /** * The options for authenticating with the API. */ @@ -80,6 +77,15 @@ export interface AuthOptions { * // Use the client to interact with the Sindri ZKP service... */ export class SindriClient { + /** @hidden */ + readonly _client: ApiClient; + /** @hidden */ + readonly _clientConfig: OpenAPIConfig; + /** @hidden */ + readonly _config: Config | undefined; + + readonly logger: Logger; + /** * Represents the polling interval in milliseconds used for querying the status of an endpoint. * This value determines the frequency at which the SDK polls an endpoint to check for any changes @@ -119,6 +125,13 @@ export class SindriClient { * @see {@link SindriClient.authorize} for information on retrieving this value. */ constructor(authOptions: AuthOptions = {}) { + this._client = new ApiClient(); + this._clientConfig = this._client.request.config; + this.logger = createLogger(); + if (!process.env.BROWSER_BUILD) { + this._config = new Config(this.logger); + } + this._clientConfig.logger = this.logger; this.authorize(authOptions); } @@ -142,10 +155,13 @@ export class SindriClient { * } */ get apiKey(): string | null { - if (OpenAPI.TOKEN && typeof OpenAPI.TOKEN !== "string") { + if ( + this._clientConfig.TOKEN && + typeof this._clientConfig.TOKEN !== "string" + ) { return null; } - return OpenAPI.TOKEN || null; + return this._clientConfig.TOKEN || null; } /** @@ -160,7 +176,7 @@ export class SindriClient { * console.log(`Current base URL: ${client.baseUrl}`); */ get baseUrl(): string { - return OpenAPI.BASE; + return this._clientConfig.BASE; } /** Retrieves the current log level of the client. The log level determines the verbosity of logs @@ -174,7 +190,7 @@ export class SindriClient { */ get logLevel(): LogLevel { // We don't specify any custom log levels, so we can narrow the type to exclude strings. - return logger.level as LogLevel; + return this.logger.level as LogLevel; } /** @@ -188,7 +204,8 @@ export class SindriClient { * client.logLevel = "debug"; */ set logLevel(level: LogLevel) { - logger.level = level; + this.logger.level = level; + this.logger.debug(`Set log level to "${this.logger.level}".`); } /** @@ -218,23 +235,44 @@ export class SindriClient { */ authorize(authOptions: AuthOptions): boolean { if (process.env.BROWSER_BUILD) { - OpenAPI.BASE = authOptions.baseUrl || "https://sindri.app"; - OpenAPI.TOKEN = authOptions.apiKey; + this._clientConfig.BASE = authOptions.baseUrl || "https://sindri.app"; + this._clientConfig.TOKEN = authOptions.apiKey; } else { - const config = loadConfig(); - OpenAPI.BASE = + this._config!.reload(); + this._clientConfig.BASE = authOptions.baseUrl || process.env.SINDRI_BASE_URL || - config.auth?.baseUrl || - OpenAPI.BASE || + this._config!.auth?.baseUrl || + this._clientConfig.BASE || "https://sindri.app"; - OpenAPI.TOKEN = - authOptions.apiKey || process.env.SINDRI_API_KEY || config.auth?.apiKey; + this._clientConfig.TOKEN = + authOptions.apiKey || + process.env.SINDRI_API_KEY || + this._config!.auth?.apiKey; } - return !!(OpenAPI.BASE && OpenAPI.TOKEN); + return !!(this._clientConfig.BASE && this._clientConfig.TOKEN); } - // }[tags=["latest"]] + /** + * Creates a new {@link SindriClient} client instance. The class itself is not exported, so use + * this method on the exported (or any other) client instance to create a new instance. The new + * instance can be configured and used completely independently from any other instances. For + * example it can use different credentials or a different log level. + * + * @param authOptions - The authentication options for the client, including + * credentials like API keys or tokens. Defaults to an empty object if not provided. + * + * @example + * import sindri from 'sindri'; + * + * // Equivalent to: const myClient = new SindriClient({ ... }); + * const myClient = sindri.create({ apiKey: 'sindri-mykey-1234'}); + * + * @returns The new client instance. + */ + create(authOptions: AuthOptions | undefined): SindriClient { + return new SindriClient(authOptions); + } /** * Asynchronously creates and deploys a new circuit, initiating its compilation process. This @@ -371,7 +409,7 @@ export class SindriClient { cwd: project, gzip: true, onwarn: (code: string, message: string) => { - logger.warn(`While creating tarball: ${code} - ${message}`); + this.logger.warn(`While creating tarball: ${code} - ${message}`); }, prefix: `${circuitName}/`, sync: true, @@ -443,21 +481,21 @@ export class SindriClient { // Note that it's import the boundary matches the Chrome format because the test runner checks // payloads for this format in order to compare non-deterministic gzips. // TODO: These header changes are global, we need to make them local to this request. - const oldHeaders = OpenAPI.HEADERS; - OpenAPI.HEADERS = { + const oldHeaders = this._clientConfig.HEADERS; + this._clientConfig.HEADERS = { "Content-Type": "multipart/form-data; boundary=----WebKitFormBoundary0buQ8d6EhWcs9X9d", }; - const createResponsePromise = CircuitsService.circuitCreate( + const createResponsePromise = this._client.circuits.circuitCreate( formData as NodeFormData, ); const createResponse = await createResponsePromise; - OpenAPI.HEADERS = oldHeaders; + this._clientConfig.HEADERS = oldHeaders; const circuitId = createResponse.circuit_id; let response: CircuitInfoResponse; while (true) { - response = await CircuitsService.circuitDetail(circuitId, false); + response = await this._client.circuits.circuitDetail(circuitId, false); if (response.status === "Ready" || response.status === "Failed") { break; } @@ -488,7 +526,7 @@ export class SindriClient { * console.log("Proofs:', proofs); */ async getAllCircuitProofs(circuitId: string): Promise { - return await CircuitsService.circuitProofs(circuitId); + return await this._client.circuits.circuitProofs(circuitId); } /** @@ -504,7 +542,7 @@ export class SindriClient { * console.log("Circuits:", circuits); */ async getAllCircuits(): Promise { - return await CircuitsService.circuitList(); + return await this._client.circuits.circuitList(); } /** @@ -524,7 +562,7 @@ export class SindriClient { * console.log("How many proofs?", proofs.length); */ async getAllProofs(): Promise { - return await ProofsService.proofList(); + return await this._client.proofs.proofList(); } /** @@ -544,7 +582,7 @@ export class SindriClient { * console.log('Circuit details:', circuit); */ async getCircuit(circuitId: string): Promise { - return await CircuitsService.circuitDetail(circuitId); + return await this._client.circuits.circuitDetail(circuitId); } /** @@ -564,7 +602,7 @@ export class SindriClient { * console.log("Proof details:", proof); */ async getProof(proofId: string): Promise { - return await ProofsService.proofDetail(proofId); + return await this._client.proofs.proofDetail(proofId); } /** @@ -591,12 +629,12 @@ export class SindriClient { circuitId: string, proofInput: string, ): Promise { - const createResponse = await CircuitsService.proofCreate(circuitId, { + const createResponse = await this._client.circuits.proofCreate(circuitId, { proof_input: proofInput, }); let response: ProofInfoResponse; while (true) { - response = await ProofsService.proofDetail(createResponse.proof_id); + response = await this._client.proofs.proofDetail(createResponse.proof_id); if (response.status === "Ready" || response.status === "Failed") { break; } diff --git a/src/lib/config.ts b/src/lib/config.ts index b2551df..a795f15 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -5,8 +5,7 @@ import envPaths from "env-paths"; import _ from "lodash"; import { z } from "zod"; -import { OpenAPI } from "lib/api"; -import { logger } from "lib/logging"; +import { type Logger } from "lib/logging"; const getConfigPath = (): string => { const paths = envPaths("sindri", { @@ -34,26 +33,26 @@ type ConfigSchema = z.infer; const defaultConfig: ConfigSchema = ConfigSchema.parse({}); -export const loadConfig = (): ConfigSchema => { +export const loadConfig = (logger?: Logger): ConfigSchema => { const configPath = getConfigPath(); if (fs.existsSync(configPath)) { - logger.debug(`Loading config from "${configPath}".`); + logger?.debug(`Loading config from "${configPath}".`); try { const configFileContents: string = fs.readFileSync(configPath, { encoding: "utf-8", }); const loadedConfig = ConfigSchema.parse(JSON.parse(configFileContents)); - logger.debug("Config loaded successfully."); + logger?.debug("Config loaded successfully."); return loadedConfig; } catch (error) { - logger.warn( + logger?.warn( `The config schema in "${configPath}" is invalid and will not be used.\n` + `To remove it and start fresh, run:\n rm ${configPath}`, ); - logger.debug(error); + logger?.debug(error); } } - logger.debug( + logger?.debug( `Config file "${configPath}" does not exist, initializing default config.`, ); return _.cloneDeep(defaultConfig); @@ -61,19 +60,11 @@ export const loadConfig = (): ConfigSchema => { export class Config { protected _config!: ConfigSchema; - protected static instance: Config; + protected readonly logger: Logger | undefined; - constructor() { - if (!Config.instance) { - this._config = loadConfig(); - Config.instance = this; - // Prepare API the client with the loaded credentials. - if (this._config.auth) { - OpenAPI.BASE = this._config.auth.baseUrl; - OpenAPI.TOKEN = this._config.auth.apiKey; - } - } - return Config.instance; + constructor(logger?: Logger) { + this.logger = logger; + this.reload(); } get auth(): ConfigSchema["auth"] { @@ -84,10 +75,14 @@ export class Config { return _.cloneDeep(this._config); } + reload() { + this._config = loadConfig(this.logger); + } + update(configData: Partial) { // Merge and validate the configs. - logger.debug("Merging in config update:"); - logger.debug(configData); + this.logger?.debug("Merging in config update:"); + this.logger?.debug(configData); const newConfig: ConfigSchema = _.cloneDeep(this._config); _.merge(newConfig, configData); this._config = ConfigSchema.parse(newConfig); @@ -100,7 +95,10 @@ export class Config { } // Write out the new config. - logger.debug(`Writing merged config to "${configPath}":`, this._config); + this.logger?.debug( + `Writing merged config to "${configPath}":`, + this._config, + ); fs.writeFileSync(configPath, JSON.stringify(this._config, null, 2), { encoding: "utf-8", }); diff --git a/src/lib/logging.ts b/src/lib/logging.ts index 1e383db..abec978 100644 --- a/src/lib/logging.ts +++ b/src/lib/logging.ts @@ -1,6 +1,8 @@ -import pino from "pino"; +import pino, { type BaseLogger as Logger } from "pino"; import pretty from "pino-pretty"; +export type { Logger }; + /** * The minimum log level to print. */ @@ -13,20 +15,24 @@ export type LogLevel = | "debug" | "trace"; -export const logger = pino( - process.env.BROWSER_BUILD - ? { - browser: { asObject: true }, - } - : pretty({ - colorize: true, - destination: 2, - ignore: "hostname,pid", - levelFirst: false, - sync: true, - }), -); - -logger.level = process.env.NODE_ENV === "production" ? "silent" : "info"; +export const createLogger = (level?: LogLevel): Logger => { + const logger = pino( + process.env.BROWSER_BUILD + ? { + browser: { asObject: true }, + } + : pretty({ + colorize: true, + destination: 2, + ignore: "hostname,pid", + levelFirst: false, + sync: true, + }), + ); + logger.level = + level ?? process.env.NODE_ENV === "production" ? "silent" : "info"; + return logger; +}; +export const logger = createLogger(); export const print = console.log; From d4611ae707f47f7fcbfe0ac2d29d2fde3099fcd5 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Thu, 22 Feb 2024 11:42:03 -0700 Subject: [PATCH 09/21] Bump puppeteer to v22 for browser tests The chromium download for v21 is getting 500 errors, this resolves the issue and uses a more current version of chromium. Merges #75 --- package.json | 2 +- test/utils/usePage.ts | 2 +- yarn.lock | 337 +++++++++++++++++++++++------------------- 3 files changed, 185 insertions(+), 156 deletions(-) diff --git a/package.json b/package.json index 2fa986b..e2e58ac 100644 --- a/package.json +++ b/package.json @@ -122,7 +122,7 @@ "openapi-typescript-codegen": "^0.25.0", "parse-multipart-data": "^1.5.0", "prettier": "^3.1.0", - "puppeteer": "^21.7.0", + "puppeteer": "^22.2.0", "rollup": "^4.9.5", "tsup": "^7.3.0", "tsx": "^4.7.0", diff --git a/test/utils/usePage.ts b/test/utils/usePage.ts index 4a19a4e..8843c49 100644 --- a/test/utils/usePage.ts +++ b/test/utils/usePage.ts @@ -95,7 +95,7 @@ export const usePage = async ({ ), ); t.context.browser = await puppeteer.launch({ - headless: "new", + headless: true, // Ignore certificate errors because the proxy uses a self-signed certificate. ignoreHTTPSErrors: true, args: [ diff --git a/yarn.lock b/yarn.lock index 0c396b6..31cf162 100644 --- a/yarn.lock +++ b/yarn.lock @@ -27,7 +27,7 @@ "@babel/code-frame@^7.0.0": version "7.23.5" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: "@babel/highlight" "^7.23.4" @@ -35,12 +35,12 @@ "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== "@babel/highlight@^7.23.4": version "7.23.4" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: "@babel/helper-validator-identifier" "^7.22.20" @@ -647,16 +647,17 @@ picocolors "^1.0.0" tslib "^2.6.0" -"@puppeteer/browsers@1.9.1": - version "1.9.1" - resolved "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.9.1.tgz" - integrity sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA== +"@puppeteer/browsers@2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-2.1.0.tgz#2683d3c908ecfc9af6b63111b5037679d3cebfd8" + integrity sha512-xloWvocjvryHdUjDam/ZuGMh7zn4Sn3ZAaV4Ah2e2EwEt90N3XphZlSsU3n0VDc1F7kggCjMuH0UuxfPQ5mD9w== dependencies: debug "4.3.4" extract-zip "2.0.1" progress "2.0.3" - proxy-agent "6.3.1" - tar-fs "3.0.4" + proxy-agent "6.4.0" + semver "7.6.0" + tar-fs "3.0.5" unbzip2-stream "1.4.3" yargs "17.7.2" @@ -800,7 +801,7 @@ "@tootallnate/quickjs-emscripten@^0.23.0": version "0.23.0" - resolved "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz" + resolved "https://registry.yarnpkg.com/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz#db4ecfd499a9765ab24002c3b696d02e6d32a12c" integrity sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA== "@tsconfig/node18@^18.2.2": @@ -888,7 +889,7 @@ "@types/yauzl@^2.9.1": version "2.10.3" - resolved "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz" + resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.3.tgz#e9b2808b4f109504a03cda958259876f61017999" integrity sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q== dependencies: "@types/node" "*" @@ -1051,7 +1052,7 @@ agent-base@6: agent-base@^7.0.2, agent-base@^7.1.0: version "7.1.0" - resolved "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434" integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== dependencies: debug "^4.3.4" @@ -1085,7 +1086,7 @@ ansi-regex@^6.0.1: ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" @@ -1167,7 +1168,7 @@ asap@^2.0.3: ast-types@^0.13.4: version "0.13.4" - resolved "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" integrity sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w== dependencies: tslib "^2.0.1" @@ -1253,15 +1254,42 @@ axios@^1.6.2: proxy-from-env "^1.1.0" b4a@^1.6.4: - version "1.6.4" - resolved "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz" - integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw== + version "1.6.6" + resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.6.tgz#a4cc349a3851987c3c4ac2d7785c18744f6da9ba" + integrity sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg== balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +bare-events@^2.0.0, bare-events@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.2.0.tgz#a7a7263c107daf8b85adf0b64f908503454ab26e" + integrity sha512-Yyyqff4PIFfSuthCZqLlPISTWHmnQxoPuAvkmgzsJEmG3CesdIv6Xweayl0JkCZJSB2yYIdJyEz97tpxNhgjbg== + +bare-fs@^2.1.1: + version "2.1.5" + resolved "https://registry.yarnpkg.com/bare-fs/-/bare-fs-2.1.5.tgz#55aae5f1c7701a83d7fbe62b0a57cfbee89a1726" + integrity sha512-5t0nlecX+N2uJqdxe9d18A98cp2u9BETelbjKpiVgQqzzmVNFYWEAjQHqS+2Khgto1vcwhik9cXucaj5ve2WWA== + dependencies: + bare-events "^2.0.0" + bare-os "^2.0.0" + bare-path "^2.0.0" + streamx "^2.13.0" + +bare-os@^2.0.0, bare-os@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/bare-os/-/bare-os-2.2.0.tgz#24364692984d0bd507621754781b31d7872736b2" + integrity sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag== + +bare-path@^2.0.0, bare-path@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/bare-path/-/bare-path-2.1.0.tgz#830f17fd39842813ca77d211ebbabe238a88cb4c" + integrity sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw== + dependencies: + bare-os "^2.1.0" + base64-js@^1.3.1: version "1.5.1" resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" @@ -1269,7 +1297,7 @@ base64-js@^1.3.1: basic-ftp@^5.0.2: version "5.0.4" - resolved "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.4.tgz" + resolved "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.4.tgz#28aeab7bfbbde5f5d0159cd8bb3b8e633bbb091d" integrity sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA== big-integer@^1.6.44: @@ -1325,12 +1353,12 @@ braces@^3.0.2, braces@~3.0.2: buffer-crc32@~0.2.3: version "0.2.13" - resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== buffer@^5.2.1: version "5.7.1" - resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: base64-js "^1.3.1" @@ -1401,7 +1429,7 @@ cbor@^9.0.1: chalk@^2.4.2: version "2.4.2" - resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -1446,13 +1474,13 @@ chownr@^2.0.0: resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== -chromium-bidi@0.5.2: - version "0.5.2" - resolved "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.2.tgz" - integrity sha512-PbVOSddxgKyj+JByqavWMNqWPCoCaT6XK5Z1EFe168sxnB/BM51LnZEPXSbFcFAJv/+u2B4XNTs9uXxy4GW3cQ== +chromium-bidi@0.5.9: + version "0.5.9" + resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-0.5.9.tgz#f068bd10e8a3007bc842ae99f5038c8689bf58a5" + integrity sha512-wOTX3m2zuHX0zRX4h7Ol1DAGz0cqHzo2IrAPvOqBxdd4ZR32vxg4FKNjmBihi1oP9b1QGSBBG5VNUUXUCsxDfg== dependencies: mitt "3.0.1" - urlpattern-polyfill "9.0.0" + urlpattern-polyfill "10.0.0" chunkd@^2.0.1: version "2.0.1" @@ -1510,7 +1538,7 @@ code-excerpt@^4.0.0: color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" @@ -1524,7 +1552,7 @@ color-convert@^2.0.1: color-name@1.1.3: version "1.1.3" - resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@~1.1.4: @@ -1598,15 +1626,15 @@ convert-to-spaces@^2.0.1: resolved "https://registry.npmjs.org/convert-to-spaces/-/convert-to-spaces-2.0.1.tgz" integrity sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ== -cosmiconfig@8.3.6: - version "8.3.6" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz" - integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== +cosmiconfig@9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d" + integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg== dependencies: + env-paths "^2.2.1" import-fresh "^3.3.0" js-yaml "^4.1.0" parse-json "^5.2.0" - path-type "^4.0.0" "crc32@>= 0.2.2": version "0.2.2" @@ -1615,7 +1643,7 @@ cosmiconfig@8.3.6: cross-fetch@4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-4.0.0.tgz#f037aef1580bb3a1a35164ea2a848ba81b445983" integrity sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g== dependencies: node-fetch "^2.6.12" @@ -1643,10 +1671,10 @@ currently-unhandled@^0.4.1: dependencies: array-find-index "^1.0.1" -data-uri-to-buffer@^6.0.0: - version "6.0.1" - resolved "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.1.tgz" - integrity sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg== +data-uri-to-buffer@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz#8a58bb67384b261a38ef18bea1810cb01badd28b" + integrity sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw== date-time@^3.1.0: version "3.1.0" @@ -1716,7 +1744,7 @@ define-lazy-prop@^3.0.0: degenerator@^5.0.0: version "5.0.1" - resolved "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/degenerator/-/degenerator-5.0.1.tgz#9403bf297c6dad9a1ece409b37db27954f91f2f5" integrity sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ== dependencies: ast-types "^0.13.4" @@ -1738,10 +1766,10 @@ detect-libc@^2.0.0: resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz" integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== -devtools-protocol@0.0.1203626: - version "0.0.1203626" - resolved "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1203626.tgz" - integrity sha512-nEzHZteIUZfGCZtTiS1fRpC8UZmsfD1SiyPvaUNvS13dvKf666OAm8YTi0+Ca3n1nLEyu49Cy4+dPWpaHFJk9g== +devtools-protocol@0.0.1249869: + version "0.0.1249869" + resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1249869.tgz#000c3cf1afc189a18db98135a50d4a8f95a47d29" + integrity sha512-Ctp4hInA0BEavlUoRy9mhGq0i+JSo/AwVyX2EFgZmV1kYB+Zq+EMBAn52QWu6FbRr10hRb6pBl420upbp4++vg== dir-glob@^3.0.1: version "3.0.1" @@ -1786,7 +1814,7 @@ env-paths@^2.2.1: error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" @@ -1904,7 +1932,7 @@ escape-string-regexp@^5.0.0: escodegen@^2.1.0: version "2.1.0" - resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17" integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w== dependencies: esprima "^4.0.1" @@ -2077,7 +2105,7 @@ external-editor@^3.1.0: extract-zip@2.0.1: version "2.0.1" - resolved "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== dependencies: debug "^4.1.1" @@ -2103,7 +2131,7 @@ fast-diff@^1.1.2, fast-diff@^1.2.0: fast-fifo@^1.1.0, fast-fifo@^1.2.0: version "1.3.2" - resolved "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz" + resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c" integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ== fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2: @@ -2146,7 +2174,7 @@ fastq@^1.6.0: fd-slicer@~1.1.0: version "1.1.0" - resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== dependencies: pend "~1.2.0" @@ -2246,14 +2274,14 @@ fs-extra@^11.1.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^8.1.0: - version "8.1.0" - resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" - integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== +fs-extra@^11.2.0: + version "11.2.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b" + integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw== dependencies: graceful-fs "^4.2.0" - jsonfile "^4.0.0" - universalify "^0.1.0" + jsonfile "^6.0.1" + universalify "^2.0.0" fs-extra@^9.0.0: version "9.1.0" @@ -2329,7 +2357,7 @@ get-port@^7.0.0: get-stream@^5.1.0: version "5.2.0" - resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== dependencies: pump "^3.0.0" @@ -2347,14 +2375,14 @@ get-tsconfig@^4.7.2: resolve-pkg-maps "^1.0.0" get-uri@^6.0.1: - version "6.0.2" - resolved "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz" - integrity sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw== + version "6.0.3" + resolved "https://registry.yarnpkg.com/get-uri/-/get-uri-6.0.3.tgz#0d26697bc13cf91092e519aa63aa60ee5b6f385a" + integrity sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw== dependencies: basic-ftp "^5.0.2" - data-uri-to-buffer "^6.0.0" + data-uri-to-buffer "^6.0.2" debug "^4.3.4" - fs-extra "^8.1.0" + fs-extra "^11.2.0" glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" @@ -2534,10 +2562,10 @@ http-mitm-proxy@^1.1.0: ws "^8.14.2" yargs "^17.7.2" -http-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz" - integrity sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ== +http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1: + version "7.0.2" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e" + integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig== dependencies: agent-base "^7.1.0" debug "^4.3.4" @@ -2550,10 +2578,10 @@ https-proxy-agent@^5.0.0: agent-base "6" debug "4" -https-proxy-agent@^7.0.2: - version "7.0.2" - resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz" - integrity sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA== +https-proxy-agent@^7.0.2, https-proxy-agent@^7.0.3: + version "7.0.4" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz#8e97b841a029ad8ddc8731f26595bad868cb4168" + integrity sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg== dependencies: agent-base "^7.0.2" debug "4" @@ -2638,15 +2666,13 @@ ini@~1.3.0: resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== -ip@^1.1.8: - version "1.1.8" - resolved "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz" - integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== +ip-address@^9.0.5: + version "9.0.5" + resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a" + integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g== + dependencies: + jsbn "1.1.0" + sprintf-js "^1.1.3" irregular-plurals@^3.3.0: version "3.5.0" @@ -2655,7 +2681,7 @@ irregular-plurals@^3.3.0: is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-binary-path@~2.1.0: @@ -2768,7 +2794,7 @@ js-string-escape@^1.0.1: js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-yaml@^3.14.1: @@ -2786,6 +2812,11 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" +jsbn@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040" + integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A== + json-buffer@3.0.1: version "3.0.1" resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" @@ -2793,7 +2824,7 @@ json-buffer@3.0.1: json-parse-even-better-errors@^2.3.0: version "2.3.1" - resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-ref-parser@^9.0.9: @@ -2828,13 +2859,6 @@ json-stringify-safe@^5.0.1: resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -jsonfile@^4.0.0: - version "4.0.0" - resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" - integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== - optionalDependencies: - graceful-fs "^4.1.6" - jsonfile@^6.0.1: version "6.1.0" resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" @@ -2927,7 +2951,7 @@ lru-cache@^6.0.0: lru-cache@^7.14.1: version "7.18.3" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== make-dir@^3.1.0: @@ -3069,14 +3093,9 @@ minizlib@^2.1.1: mitt@3.0.1: version "3.0.1" - resolved "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz" + resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== -mkdirp-classic@^0.5.2: - version "0.5.3" - resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - mkdirp@^1.0.3, mkdirp@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" @@ -3123,7 +3142,7 @@ neo-async@^2.6.2: netmask@^2.0.2: version "2.0.2" - resolved "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz" + resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7" integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg== nock@^13.4.0: @@ -3328,7 +3347,7 @@ p-map@^6.0.0: pac-proxy-agent@^7.0.1: version "7.0.1" - resolved "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz" + resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz#6b9ddc002ec3ff0ba5fdf4a8a21d363bcc612d75" integrity sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A== dependencies: "@tootallnate/quickjs-emscripten" "^0.23.0" @@ -3341,12 +3360,11 @@ pac-proxy-agent@^7.0.1: socks-proxy-agent "^8.0.2" pac-resolver@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz" - integrity sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg== + version "7.0.1" + resolved "https://registry.yarnpkg.com/pac-resolver/-/pac-resolver-7.0.1.tgz#54675558ea368b64d210fd9c92a640b5f3b8abb6" + integrity sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg== dependencies: degenerator "^5.0.0" - ip "^1.1.8" netmask "^2.0.2" package-config@^5.0.0: @@ -3366,7 +3384,7 @@ parent-module@^1.0.0: parse-json@^5.2.0: version "5.2.0" - resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -3437,7 +3455,7 @@ path-type@^5.0.0: pend@~1.2.0: version "1.2.0" - resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== picocolors@^1.0.0: @@ -3566,7 +3584,7 @@ process@^0.11.10: progress@2.0.3: version "2.0.3" - resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== propagate@^2.0.0: @@ -3574,15 +3592,15 @@ propagate@^2.0.0: resolved "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz" integrity sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag== -proxy-agent@6.3.1: - version "6.3.1" - resolved "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.1.tgz" - integrity sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ== +proxy-agent@6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.4.0.tgz#b4e2dd51dee2b377748aef8d45604c2d7608652d" + integrity sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ== dependencies: agent-base "^7.0.2" debug "^4.3.4" - http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.2" + http-proxy-agent "^7.0.1" + https-proxy-agent "^7.0.3" lru-cache "^7.14.1" pac-proxy-agent "^7.0.1" proxy-from-env "^1.1.0" @@ -3611,26 +3629,26 @@ punycode@^2.1.0: resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -puppeteer-core@21.7.0: - version "21.7.0" - resolved "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-21.7.0.tgz" - integrity sha512-elPYPozrgiM3phSy7VDUJCVWQ07SPnOm78fpSaaSNFoQx5sur/MqhTSro9Wz8lOEjqCykGC6WRkwxDgmqcy1dQ== +puppeteer-core@22.2.0: + version "22.2.0" + resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-22.2.0.tgz#85bf2c492ba02e8051bb75dff3043d21d9945f21" + integrity sha512-rxLM860FP05CxCPAn6dwY0KnVhbnogsXu4XORb+2hb/va69v7R1VdJWLMGHd7EE5wfpT8oFZ7Q6NN85OhOtV9Q== dependencies: - "@puppeteer/browsers" "1.9.1" - chromium-bidi "0.5.2" + "@puppeteer/browsers" "2.1.0" + chromium-bidi "0.5.9" cross-fetch "4.0.0" debug "4.3.4" - devtools-protocol "0.0.1203626" + devtools-protocol "0.0.1249869" ws "8.16.0" -puppeteer@^21.7.0: - version "21.7.0" - resolved "https://registry.npmjs.org/puppeteer/-/puppeteer-21.7.0.tgz" - integrity sha512-Yy+UUy0b9siJezbhHO/heYUoZQUwyqDK1yOQgblTt0l97tspvDVFkcW9toBlnSvSfkDmMI3Dx9cZL6R8bDArHA== +puppeteer@^22.2.0: + version "22.2.0" + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-22.2.0.tgz#2f4e4bff252bc6999f213288ed717940b27b0918" + integrity sha512-0Ax7zeqqbQL6Zcpo1WAvrqWQAnGsLB4tmQUUwsb5Cfo05XaQ78LWUUjaO4um7qaddKpZfk0vXlGcRVwtedpWfg== dependencies: - "@puppeteer/browsers" "1.9.1" - cosmiconfig "8.3.6" - puppeteer-core "21.7.0" + "@puppeteer/browsers" "2.1.0" + cosmiconfig "9.0.0" + puppeteer-core "22.2.0" queue-microtask@^1.2.2: version "1.2.3" @@ -3639,7 +3657,7 @@ queue-microtask@^1.2.2: queue-tick@^1.0.1: version "1.0.1" - resolved "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz" + resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142" integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag== quick-format-unescaped@^4.0.3: @@ -3820,6 +3838,13 @@ semaphore@^1.1.0: resolved "https://registry.npmjs.org/semaphore/-/semaphore-1.1.0.tgz" integrity sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA== +semver@7.6.0: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + semver@^6.0.0: version "6.3.1" resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" @@ -3908,12 +3933,12 @@ slice-ansi@^5.0.0: smart-buffer@^4.2.0: version "4.2.0" - resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== socks-proxy-agent@^8.0.2: version "8.0.2" - resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz#5acbd7be7baf18c46a3f293a840109a430a640ad" integrity sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g== dependencies: agent-base "^7.0.2" @@ -3921,11 +3946,11 @@ socks-proxy-agent@^8.0.2: socks "^2.7.1" socks@^2.7.1: - version "2.7.1" - resolved "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + version "2.7.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.3.tgz#7d8a75d7ce845c0a96f710917174dba0d543a785" + integrity sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw== dependencies: - ip "^2.0.0" + ip-address "^9.0.5" smart-buffer "^4.2.0" sonic-boom@^3.0.0, sonic-boom@^3.7.0: @@ -3952,6 +3977,11 @@ split2@^4.0.0: resolved "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz" integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== +sprintf-js@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== + sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" @@ -3964,13 +3994,15 @@ stack-utils@^2.0.6: dependencies: escape-string-regexp "^2.0.0" -streamx@^2.15.0: - version "2.15.6" - resolved "https://registry.npmjs.org/streamx/-/streamx-2.15.6.tgz" - integrity sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw== +streamx@^2.13.0, streamx@^2.15.0: + version "2.16.1" + resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.16.1.tgz#2b311bd34832f08aa6bb4d6a80297c9caef89614" + integrity sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ== dependencies: fast-fifo "^1.1.0" queue-tick "^1.0.1" + optionalDependencies: + bare-events "^2.2.0" "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" @@ -4084,14 +4116,16 @@ synckit@^0.8.5: "@pkgr/utils" "^2.3.1" tslib "^2.5.0" -tar-fs@3.0.4: - version "3.0.4" - resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz" - integrity sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w== +tar-fs@3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.5.tgz#f954d77767e4e6edf973384e1eb95f8f81d64ed9" + integrity sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg== dependencies: - mkdirp-classic "^0.5.2" pump "^3.0.0" tar-stream "^3.1.5" + optionalDependencies: + bare-fs "^2.1.1" + bare-path "^2.1.0" tar-js@^0.3.0: version "0.3.0" @@ -4099,9 +4133,9 @@ tar-js@^0.3.0: integrity sha512-9uqP2hJUZNKRkwPDe5nXxXdzo6w+BFBPq9x/tyi5/U/DneuSesO/HMb0y5TeWpfcv49YDJTs7SrrZeeu8ZHWDA== tar-stream@^3.1.5: - version "3.1.6" - resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz" - integrity sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg== + version "3.1.7" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-3.1.7.tgz#24b3fb5eabada19fe7338ed6d26e5f7c482e792b" + integrity sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ== dependencies: b4a "^1.6.4" fast-fifo "^1.2.0" @@ -4152,7 +4186,7 @@ thread-stream@^2.0.0: through@^2.3.8: version "2.3.8" - resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== time-zone@^1.0.0: @@ -4302,7 +4336,7 @@ uglify-js@^3.1.4: unbzip2-stream@1.4.3: version "1.4.3" - resolved "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz" + resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== dependencies: buffer "^5.2.1" @@ -4330,11 +4364,6 @@ unique-string@^3.0.0: dependencies: crypto-random-string "^4.0.0" -universalify@^0.1.0: - version "0.1.2" - resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== - universalify@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz" @@ -4352,10 +4381,10 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -urlpattern-polyfill@9.0.0: - version "9.0.0" - resolved "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-9.0.0.tgz" - integrity sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g== +urlpattern-polyfill@10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz#f0a03a97bfb03cdf33553e5e79a2aadd22cac8ec" + integrity sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg== util-deprecate@^1.0.1: version "1.0.2" @@ -4498,7 +4527,7 @@ yargs@17.7.2, yargs@^17.7.2: yauzl@^2.10.0: version "2.10.0" - resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== dependencies: buffer-crc32 "~0.2.3" From d2e891b5e3eb138ff4f227e7d22f67caf7214508 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Thu, 22 Feb 2024 11:44:41 -0700 Subject: [PATCH 10/21] Improve Sindri Manifest lint output by discriminating circuit type When there are Sindri Manifest schema issues, the linting output was previously not as helpful as it could be because issues would be logged across all circuit types. This happened because the validator wasn't able to accurately discriminate the union of different subschemas. This PR manually discriminates the circuit type and modifies the schema that we're validating against to be specifically for the matching subschema. The code is a little verbose/hacky, but the error messages are significantly more helpful so I think the tradeoff is well worth it. Merges #74 --- src/cli/lint.ts | 66 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/src/cli/lint.ts b/src/cli/lint.ts index bfcdea3..1ff7bf4 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -1,3 +1,4 @@ +import assert from "assert"; import { existsSync, readFileSync } from "fs"; import path from "path"; import process from "process"; @@ -76,6 +77,71 @@ export const lintCommand = new Command() return process.exit(1); } + // Determine the circuit type and manually discriminate the subschema type to narrow down the + // schema so that the user gets more relevant validation errors. + assert(Array.isArray(sindriManifestJsonSchema.anyOf)); + let subSchema: Schema | undefined; + if (!("circuitType" in sindriJson) || !sindriJson.circuitType) { + subSchema = undefined; + } else if (sindriJson.circuitType === "circom") { + subSchema = sindriManifestJsonSchema.anyOf.find((option: Schema) => + /circom/i.test(option["$ref"] ?? ""), + ); + } else if (sindriJson.circuitType === "gnark") { + subSchema = sindriManifestJsonSchema.anyOf.find((option: Schema) => + /gnark/i.test(option["$ref"] ?? ""), + ); + } else if (sindriJson.circuitType === "halo2") { + if ( + "halo2Version" in sindriJson && + sindriJson.halo2Version === "axiom-v0.2.2" + ) { + subSchema = sindriManifestJsonSchema.anyOf.find((option: Schema) => + /halo2axiomv022/i.test(option["$ref"] ?? ""), + ); + } else if ( + "halo2Version" in sindriJson && + sindriJson.halo2Version === "axiom-v0.3.0" + ) { + subSchema = sindriManifestJsonSchema.anyOf.find((option: Schema) => + /halo2axiomv022/i.test(option["$ref"] ?? ""), + ); + } else { + // We can't discriminate the different halo2 manifests if there's not a valid `halo2Version` + // so we'll just filter down the `anyOf` to the halo2 manifests instead of picking one. + subSchema = { + anyOf: sindriManifestJsonSchema.anyOf.filter((option: Schema) => + /halo2/i.test(option["$ref"] ?? ""), + ), + }; + } + } else if (sindriJson.circuitType === "noir") { + subSchema = sindriManifestJsonSchema.anyOf.find((option: Schema) => + /noir/i.test(option["$ref"] ?? ""), + ); + } + if (subSchema) { + delete sindriManifestJsonSchema.anyOf; + sindriManifestJsonSchema = { ...sindriManifestJsonSchema, ...subSchema }; + } else { + sindri.logger.warn( + `Circuit type is not configured in "${sindriJsonPath}" so some linting steps will be ` + + "skipped and the manifest linting output will be very noisy. Please correct " + + '"circuiType" in "sindri.json" and rerun "sindri lint" to get better linting.', + ); + } + const circuitType: "circom" | "gnark" | "halo2" | "noir" | null = + "circuitType" in sindriJson && + typeof sindriJson.circuitType === "string" && + ["circom", "gnark", "halo2", "noir"].includes(sindriJson.circuitType) + ? (sindriJson.circuitType as "circom" | "gnark" | "halo2" | "noir") + : null; + if (circuitType) { + sindri.logger.debug(`Detected circuit type "${circuitType}".`); + } else { + sindri.logger.debug("No circuit type detected!"); + } + // Validate `sindri.json`. const manifestValidator = new JsonValidator(); const validationStatus = manifestValidator.validate( From 4dedaa0df38321c2595c36598fe05963e42a32c0 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Thu, 22 Feb 2024 13:40:20 -0700 Subject: [PATCH 11/21] Integrate Circomspect into `sindri lint` This integrates Circomspect into the `sindri lint` command such that its static analysis errors and warnings are both logged and counted towards the total counts for each category. It currently requires the Circomspect to be installed locally on the machine, but the plan is to transparently pull down and run an optimized docker image from docker-zkp. Merges #76 --- package.json | 1 + src/cli/lint.ts | 149 +++++++++++++++++++++++++++++++++++++++++++++++- yarn.lock | 5 ++ 3 files changed, 154 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e2e58ac..1d69cdd 100644 --- a/package.json +++ b/package.json @@ -106,6 +106,7 @@ }, "devDependencies": { "@ava/typescript": "^4.1.0", + "@types/sarif": "^2.1.7", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.11.0", "ava": "^6.0.1", diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 1ff7bf4..492fca3 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -1,11 +1,15 @@ import assert from "assert"; -import { existsSync, readFileSync } from "fs"; +import { execSync } from "child_process"; +import { randomUUID } from "crypto"; +import { existsSync, readFileSync, unlinkSync } from "fs"; +import os from "os"; import path from "path"; import process from "process"; import { Command } from "@commander-js/extra-typings"; import type { Schema } from "jsonschema"; import { Validator as JsonValidator } from "jsonschema"; +import type { Log as SarifLog, Result as SarifResult } from "sarif"; import { findFileUpwards, loadSindriManifestJsonSchema } from "cli/utils"; import sindri from "lib"; @@ -129,6 +133,7 @@ export const lintCommand = new Command() "skipped and the manifest linting output will be very noisy. Please correct " + '"circuiType" in "sindri.json" and rerun "sindri lint" to get better linting.', ); + warningCount += 1; } const circuitType: "circom" | "gnark" | "halo2" | "noir" | null = "circuitType" in sindriJson && @@ -179,6 +184,148 @@ export const lintCommand = new Command() sindri.logger.debug(`README file found at "${readmePath}".`); } + // Run Circomspect for Circom circuits. + if (circuitType === "circom") { + let circomspectInstalled: boolean = false; + try { + execSync("circomspect --help"); + circomspectInstalled = true; + } catch { + sindri.logger.warn( + "Circomspect is not installed, skipping circomspect static analysis.\n" + + "Please install circomspect by following the directions at: " + + "https://github.com/trailofbits/circomspect#installing-circomspect", + ); + warningCount += 1; + } + if (circomspectInstalled) { + // Run Circomspect and parse the results. + sindri.logger.info( + "Running static analysis with Circomspect by Trail of Bits...", + ); + const sarifFile = path.join( + os.tmpdir(), + `sindri-circomspect-${randomUUID()}.sarif`, + ); + let sarif: SarifLog | undefined; + try { + const circuitPath = + "circuitPath" in sindriJson && sindriJson.circuitPath + ? sindriJson.circuitPath + : "circuit.circom"; + try { + execSync( + `circomspect --level INFO --sarif-file ${sarifFile} ${circuitPath}`, + { + cwd: rootDirectory, + }, + ); + } catch (error) { + // It's expected that circomspect will return a non-zero exit code if it finds issues, + // so we silently squash those errors and only throw if it's something else. + if ( + !(error instanceof Error) || + !("status" in error) || + !error.status + ) { + throw error; + } + } + const sarifContent = readFileSync(sarifFile, { + encoding: "utf-8", + }); + sarif = JSON.parse(sarifContent); + } catch (error) { + sindri.logger.fatal( + `Error running Circomspect in "${rootDirectory}".`, + ); + sindri.logger.error(error); + errorCount += 1; + } finally { + try { + unlinkSync(sarifFile); + } catch { + // The file might not have been created successfully, so this is probably fine. + sindri.logger.debug( + `Failed to delete temporary SARIF file "${sarifFile}".`, + ); + } + } + + if (sarif) { + // Sort the results by file, line, and column; the order we want to display them in. + const results: SarifResult[] = sarif.runs[0]?.results ?? []; + results.sort((a: SarifResult, b: SarifResult) => { + if ( + !a?.locations?.length || + !b?.locations?.length || + !a.locations[0]?.physicalLocation?.artifactLocation?.uri || + !b.locations[0]?.physicalLocation?.artifactLocation?.uri || + a.locations[0]?.physicalLocation?.region?.startLine == null || + b.locations[0]?.physicalLocation?.region?.startLine == null || + a.locations[0]?.physicalLocation?.region?.startColumn == null || + b.locations[0]?.physicalLocation?.region?.startColumn == null + ) { + return 0; + } + const uriComparison = + a.locations[0].physicalLocation.artifactLocation.uri.localeCompare( + b.locations[0].physicalLocation.artifactLocation.uri, + ); + if (uriComparison !== 0) return uriComparison; + const lineComparision = + a.locations[0].physicalLocation.region.startLine - + b.locations[0].physicalLocation.region.startLine; + if (lineComparision !== 0) return lineComparision; + const columnComparision = + a.locations[0].physicalLocation.region.startColumn - + b.locations[0].physicalLocation.region.startColumn; + return columnComparision; + }); + + // Log out the circomspect results. + results.forEach((result: SarifResult) => { + if ( + !result?.locations?.length || + !result.locations[0]?.physicalLocation?.artifactLocation?.uri || + result.locations[0]?.physicalLocation?.region?.startLine == + null || + result.locations[0]?.physicalLocation?.region?.startColumn == + null || + !result?.message?.text + ) { + sindri.logger.warn( + "Circomspect result is missing required fields, skipping.", + ); + sindri.logger.debug(result, "Missing Circomspect result fields:"); + return; + } + const filePath = path.relative( + rootDirectory, + result.locations[0].physicalLocation.artifactLocation.uri.replace( + /^file:\/\//, + "", + ), + ); + const { startColumn, startLine } = + result.locations[0].physicalLocation.region; + const logMessage = + `${filePath}:${startLine}:${startColumn} ` + + `${result.message.text} [Circomspect: ${result.ruleId}]`; + if (result.level === "error") { + sindri.logger.error(logMessage); + errorCount += 1; + } else if (result.level === "warning") { + sindri.logger.warn(logMessage); + warningCount += 1; + } else { + sindri.logger.debug(logMessage); + } + }); + } + } + } + // Summarize the errors and warnings. if (errorCount === 0 && warningCount === 0) { sindri.logger.info("No issues found, good job!"); diff --git a/yarn.lock b/yarn.lock index 31cf162..c212a64 100644 --- a/yarn.lock +++ b/yarn.lock @@ -864,6 +864,11 @@ dependencies: "@types/node" "*" +"@types/sarif@^2.1.7": + version "2.1.7" + resolved "https://registry.yarnpkg.com/@types/sarif/-/sarif-2.1.7.tgz#dab4d16ba7568e9846c454a8764f33c5d98e5524" + integrity sha512-kRz0VEkJqWLf1LLVN4pT1cg1Z9wAuvI6L97V3m2f5B76Tg8d413ddvLBPTEHAZJlnn4XSvu0FkZtViCQGVyrXQ== + "@types/semver@^7.5.0": version "7.5.5" resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz" From 78b80ff97ea7a157803fb9cbe593b9a73fa4b3b9 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Sat, 24 Feb 2024 14:31:39 -0700 Subject: [PATCH 12/21] Add `sindri exec|x` command with Circomspect support This adds a new `exec` subcommand (or `x` for short) that allows transparently pulling and executing ZK tools in a Docker container with the local project mounted. [Circomspect](https://github.com/trailofbits/circomspect) is currently the only available tool, but we'll expand this with more commands in the [docker-zkp](https://github.com/sindri-labs/docker-zkp) repository. The `sindri lint` command was also updated to use a locally installed version of Circomspect if it's available, and to otherwise fall back to using Docker. Merges #77 --- Dockerfile | 2 +- compose.yaml | 17 ++ package.json | 2 + src/cli/exec.ts | 113 +++++++++++++ src/cli/index.ts | 2 + src/cli/lint.ts | 80 +++++---- src/cli/utils.ts | 429 +++++++++++++++++++++++++++++++++++++++++++++++ yarn.lock | 162 +++++++++++++++++- 8 files changed, 764 insertions(+), 43 deletions(-) create mode 100644 src/cli/exec.ts diff --git a/Dockerfile b/Dockerfile index 9845e28..d1f7732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN if [ "$UID" != "1000" ]; then \ ; fi RUN apt-get update -RUN apt-get install --yes git \ +RUN apt-get install --yes git python3 \ `# Chromium installation dependencies` \ curl unzip \ `# Chromium runtime dependencies` \ diff --git a/compose.yaml b/compose.yaml index b58462c..4d53275 100644 --- a/compose.yaml +++ b/compose.yaml @@ -9,6 +9,11 @@ services: GID: "${GID:-1000}" UID: "${UID:-1000}" command: ["/bin/sh", "-c", "yarn install && yarn build:watch"] + depends_on: + - socat-docker-bridge + environment: + - DOCKER_HOST=tcp://localhost:2375 + - SINDRI_DEVELOPMENT_HOST_ROOT=${PWD} init: true network_mode: host extra_hosts: @@ -17,7 +22,19 @@ services: volumes: - ./:/sindri/ - ~/.gitconfig:/home/node/.gitconfig + - /tmp/sindri:/tmp/sindri + - /var/run/docker.sock:/var/run/docker.sock - yarn-cache:/home/node/.cache/yarn/ + # Expose the host's `/var/run/docker.sock` socket as TCP port 2375 using socat as the bridge. + # This allows the `sindri-js` container to access the host's docker daemon without root. + socat-docker-bridge: + image: alpine/socat + command: tcp-listen:2375,fork,reuseaddr unix-connect:/var/run/docker.sock + user: root + volumes: + - /var/run/docker.sock:/var/run/docker.sock + network_mode: host + volumes: yarn-cache: diff --git a/package.json b/package.json index 1d69cdd..bf9da4a 100644 --- a/package.json +++ b/package.json @@ -88,6 +88,7 @@ "@types/tar-js": "^0.3.5", "axios": "^1.6.2", "commander": "^11.1.0", + "dockerode": "^4.0.2", "env-paths": "^2.2.1", "formdata-node": "^6.0.3", "gzip-js": "^0.3.2", @@ -106,6 +107,7 @@ }, "devDependencies": { "@ava/typescript": "^4.1.0", + "@types/dockerode": "^3.3.23", "@types/sarif": "^2.1.7", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.11.0", diff --git a/src/cli/exec.ts b/src/cli/exec.ts new file mode 100644 index 0000000..768cc9e --- /dev/null +++ b/src/cli/exec.ts @@ -0,0 +1,113 @@ +import assert from "assert"; +import path from "path"; +import process from "process"; + +import { Command } from "@commander-js/extra-typings"; + +import { + checkDockerAvailability, + execDockerCommand, + findFileUpwards, + getDockerImageTags, +} from "cli/utils"; +import sindri from "lib"; +import { print } from "lib/logging"; + +// Shared globals between the different subcommands. +let listTags: boolean; +let rootDirectory: string; +let tag: string; + +const circomspectCommand = new Command() + .name("circomspect") + .description( + "Trail of Bit's Circomspect static analysis tool for Circom circuits.", + ) + .helpOption(false) + .addHelpCommand(false) + .allowUnknownOption() + .passThroughOptions() + .argument("[args...]", "Arguments to pass to the tool.") + .action(async (args) => { + if (listTags) return; // Don't run the command if we're just listing tags. + + try { + const code = await execDockerCommand("circomspect", args, { + logger: sindri.logger, + rootDirectory, + tag, + tty: true, + }); + process.exit(code); + } catch (error) { + sindri.logger.error("Failed to run the circomspect command."); + sindri.logger.debug(error); + return process.exit(1); + } + }); + +export const execCommand = new Command() + .name("exec") + .alias("x") + .description( + "Run a ZKP tool in your project root inside of an optimized docker container.", + ) + .passThroughOptions() + .option( + "-l, --list-tags", + "List the available docker image tags for a given tool.", + ) + .option( + "-t, --tag ", + "The version tag of the docker image to use.", + "auto", + ) + .addCommand(circomspectCommand) + .hook("preAction", async (command) => { + // Store the options in globals for subcommands to access them. + const opts = command.opts(); + listTags = !!opts.listTags; + tag = opts.tag; + + // Handle the `--list-tags` option. + if (listTags) { + const repository = command.args[0]; + assert( + repository, + "The preAction hook should only run if there's a subcommand.", + ); + try { + const tags = await getDockerImageTags(repository); + tags.forEach((tag) => print(tag)); + } catch (error) { + sindri.logger.fatal("Error listing available docker image tags."); + sindri.logger.error(error); + return process.exit(1); + } + return process.exit(0); + } + + // Find the project root. + const cwd = process.cwd(); + const sindriJsonPath = findFileUpwards(/^sindri.json$/i, cwd); + if (sindriJsonPath) { + rootDirectory = path.dirname(sindriJsonPath); + } else { + rootDirectory = cwd; + sindri.logger.warn( + `No "sindri.json" file was found in or above "${cwd}", ` + + "using the current directory as the project root.", + ); + } + rootDirectory = path.normalize(path.resolve(rootDirectory)); + + // Check that docker is installed. + if (!(await checkDockerAvailability(sindri.logger))) { + sindri.logger.fatal( + "Docker is either not installed or the daemon isn't currently running, but it is " + + 'required by "sindri exec".\nPlease install Docker by following the instructions at: ' + + "https://docs.docker.com/get-docker/", + ); + process.exit(1); + } + }); diff --git a/src/cli/index.ts b/src/cli/index.ts index 3244a29..5418544 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -4,6 +4,7 @@ import { argv, exit } from "process"; import { Command } from "@commander-js/extra-typings"; import { configCommand } from "cli/config"; +import { execCommand } from "cli/exec"; import { initCommand } from "cli/init"; import { deployCommand } from "cli/deploy"; import { lintCommand } from "cli/lint"; @@ -25,6 +26,7 @@ export const program = new Command() false, ) .addCommand(configCommand) + .addCommand(execCommand) .addCommand(initCommand) .addCommand(deployCommand) .addCommand(lintCommand) diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 492fca3..52defe7 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -1,5 +1,4 @@ import assert from "assert"; -import { execSync } from "child_process"; import { randomUUID } from "crypto"; import { existsSync, readFileSync, unlinkSync } from "fs"; import os from "os"; @@ -11,7 +10,11 @@ import type { Schema } from "jsonschema"; import { Validator as JsonValidator } from "jsonschema"; import type { Log as SarifLog, Result as SarifResult } from "sarif"; -import { findFileUpwards, loadSindriManifestJsonSchema } from "cli/utils"; +import { + execCommand, + findFileUpwards, + loadSindriManifestJsonSchema, +} from "cli/utils"; import sindri from "lib"; export const lintCommand = new Command() @@ -186,55 +189,48 @@ export const lintCommand = new Command() // Run Circomspect for Circom circuits. if (circuitType === "circom") { - let circomspectInstalled: boolean = false; try { - execSync("circomspect --help"); - circomspectInstalled = true; - } catch { - sindri.logger.warn( - "Circomspect is not installed, skipping circomspect static analysis.\n" + - "Please install circomspect by following the directions at: " + - "https://github.com/trailofbits/circomspect#installing-circomspect", - ); - warningCount += 1; - } - if (circomspectInstalled) { // Run Circomspect and parse the results. sindri.logger.info( "Running static analysis with Circomspect by Trail of Bits...", ); const sarifFile = path.join( os.tmpdir(), - `sindri-circomspect-${randomUUID()}.sarif`, + "sindri", + `circomspect-${randomUUID()}.sarif`, ); let sarif: SarifLog | undefined; try { - const circuitPath = + const circuitPath: string = "circuitPath" in sindriJson && sindriJson.circuitPath - ? sindriJson.circuitPath + ? (sindriJson.circuitPath as string) : "circuit.circom"; - try { - execSync( - `circomspect --level INFO --sarif-file ${sarifFile} ${circuitPath}`, - { - cwd: rootDirectory, - }, + const code = await execCommand( + "circomspect", + ["--level", "INFO", "--sarif-file", sarifFile, circuitPath], + { + cwd: rootDirectory, + logger: sindri.logger, + rootDirectory, + tty: false, + }, + ); + if (code !== null) { + sindri.logger.debug("Parsing Circomspect SARIF results."); + const sarifContent = readFileSync(sarifFile, { + encoding: "utf-8", + }); + sarif = JSON.parse(sarifContent); + } else { + sindri.logger.warn( + "Circomspect is not installed, skipping circomspect static analysis.\n" + + "Please install Docker by following the directions at: " + + "https://docs.docker.com/get-docker/\n" + + "Or install Circomspect by following the directions at: " + + "https://github.com/trailofbits/circomspect#installing-circomspect", ); - } catch (error) { - // It's expected that circomspect will return a non-zero exit code if it finds issues, - // so we silently squash those errors and only throw if it's something else. - if ( - !(error instanceof Error) || - !("status" in error) || - !error.status - ) { - throw error; - } + warningCount += 1; } - const sarifContent = readFileSync(sarifFile, { - encoding: "utf-8", - }); - sarif = JSON.parse(sarifContent); } catch (error) { sindri.logger.fatal( `Error running Circomspect in "${rootDirectory}".`, @@ -284,6 +280,7 @@ export const lintCommand = new Command() }); // Log out the circomspect results. + let circomspectIssueFound = false; results.forEach((result: SarifResult) => { if ( !result?.locations?.length || @@ -314,15 +311,24 @@ export const lintCommand = new Command() `${result.message.text} [Circomspect: ${result.ruleId}]`; if (result.level === "error") { sindri.logger.error(logMessage); + circomspectIssueFound = true; errorCount += 1; } else if (result.level === "warning") { sindri.logger.warn(logMessage); + circomspectIssueFound = true; warningCount += 1; } else { sindri.logger.debug(logMessage); } }); + if (!circomspectIssueFound) { + sindri.logger.info("No issues found with Circomspect, good job!"); + } } + } catch (error) { + sindri.logger.fatal("Error running Circomspect, aborting."); + sindri.logger.debug(error); + return process.exit(1); } } diff --git a/src/cli/utils.ts b/src/cli/utils.ts index d21dedf..d13b575 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -1,8 +1,15 @@ +import assert from "assert"; +import { spawn } from "child_process"; import { constants as fsConstants, readdirSync, readFileSync } from "fs"; import { access, mkdir, readdir, readFile, stat, writeFile } from "fs/promises"; +import os from "os"; import path from "path"; +import process from "process"; +import { type Duplex, Writable } from "stream"; import { fileURLToPath } from "url"; +import axios from "axios"; +import Docker from "dockerode"; import type { Schema } from "jsonschema"; import nunjucks from "nunjucks"; import type { PackageJson } from "type-fest"; @@ -12,6 +19,387 @@ import type { Logger } from "lib/logging"; const currentFilePath = fileURLToPath(import.meta.url); const currentDirectoryPath = path.dirname(currentFilePath); +/** + * Checks if a given command exists in the system's PATH. + * + * This function attempts to spawn the command with the `--version` flag, assuming that most + * commands will support it or at least not have side effects when it is passed. + * + * @param command - The name of the command to check. + * + * @returns A boolean indicating whether the command exists. + */ +export function checkCommandExists(command: string): Promise { + return new Promise((resolve) => { + const process = spawn(command, ["--version"]); + + process.on("error", () => { + // Command could not be spawned or was not found in the PATH + resolve(false); + }); + + process.on("exit", (code) => { + // Command exists if there are no errors or the exit code isn't 127. + resolve(code !== 127 && code !== null); + }); + }); +} + +/** + * Checks whether we can connect to the Docker daemon. + * + * @returns A boolean value indicating whether the Docker daemon is accessible. + */ +export async function checkDockerAvailability( + logger?: Logger, +): Promise { + const docker = new Docker(); + try { + await docker.ping(); + } catch (error) { + logger?.debug("Failed to connect to the Docker daemon."); + logger?.debug(error); + return false; + } + logger?.debug("Docker daemon is accessible."); + return true; +} + +/** + * Supported external commands, each must correspond to a `docker-zkp` image repository. + */ +type ExternalCommand = "circomspect"; + +/** + * A writable stream that discards all input. + */ +export const devNull = new Writable({ + write(_chunk, _encoding, callback) { + callback(); + }, +}); + +/** + * Executes an external command, either locally or in a Docker container. + * + * @param command - The command to execute, corresponds to a `docker-zkp` image. + * @param args - The arguments to pass to the command. + * @param options - Additional options for the command. + * @param options.cwd - The current working directory for the executed command. + * @param options.docker - The `Docker` instance to use for running the command. Defaults to a new + * `Docker` instance with default options. + * @param options.logger - The logger to use for logging messages. There will be no logging if not + * specified. + * @param options.rootDirectory - The project root directory on the host. Will be determined by + * searching up the directory tree for a `sindri.json` file if not specified. This directory is + * mounted into the Docker container at `/sindri/` if the command is executed in Docker. + * @param options.tag - The tag of the Docker image to use. Defaults to `auto`, which will map to + * the `latest` tag unless a version specifier is found in `sindri.json` that supersedes it. + * @param options.tty - Whether to use a TTY for the command. Defaults to `false` which means that + * the command's output will be ignored. + * + * @returns The exit code of the command, or `null` if the command is not available locally or in + * Docker. + */ +export async function execCommand( + command: ExternalCommand, + args: string[] = [], + { + cwd = process.cwd(), + docker = new Docker(), + logger, + rootDirectory, + tag = "auto", + tty = false, + }: { + cwd?: string; + docker?: Docker; + logger?: Logger; + rootDirectory?: string; + tag?: string; + tty?: boolean; + }, +): Promise { + // Try using a local command first (unless `SINDRI_FORCE_DOCKER` is set). + if (isTruthy(process.env.SINDRI_FORCE_DOCKER ?? "false")) { + logger?.debug( + `Forcing docker usage for command "${command}" because "SINDRI_FORCE_DOCKER" is set to ` + + `"${process.env.SINDRI_FORCE_DOCKER}".`, + ); + } else if (await checkCommandExists(command)) { + logger?.debug(`Executing the "${command}" command locally.`); + return await execLocalCommand(command, args, { cwd, logger, tty }); + } else { + logger?.debug( + `The "${command}" command was not found locally, trying Docker instead.`, + ); + } + + // Fall back to using Docker if possible. + if (await checkDockerAvailability(logger)) { + logger?.debug(`Executing the "${command}" command in a Docker container.`); + return await execDockerCommand(command, args, { + cwd, + docker, + logger, + rootDirectory, + tag, + tty, + }); + } + + // There's no way to run the command. + logger?.debug( + `The "${command}" command is not available locally or in Docker.`, + ); + return null; +} + +/** + * Executes an external command in a Docker container. + * + * @param command - The command to execute, corresponds to a `docker-zkp` image. + * @param args - The arguments to pass to the command. + * @param options - Additional options for the command. + * @param options.cwd - The current working directory on the host for the executed command. + * @param options.docker - The `Docker` instance to use for running the command. Defaults to a new + * `Docker` instance with default options. + * @param options.logger - The logger to use for logging messages. There will be no logging if not + * specified. + * @param options.rootDirectory - The project root directory on the host. Will be determined by + * searching up the directory tree for a `sindri.json` file if not specified. This directory is + * mounted into the Docker container at `/sindri/`. + * @param options.tag - The tag of the Docker image to use. Defaults to `auto`, which will map to + * the `latest` tag unless a version specifier is found in `sindri.json` that supersedes it. + * @param options.tty - Whether to use a TTY for the command. Defaults to `false` which means that + * the command's output will be ignored. + * + * @returns The exit code of the command. + */ +export async function execDockerCommand( + command: ExternalCommand, + args: string[] = [], + { + cwd = process.cwd(), + docker = new Docker(), + logger, + rootDirectory, + tag = "auto", + tty = false, + }: { + cwd?: string; + docker?: Docker; + logger?: Logger; + rootDirectory?: string; + tag?: string; + tty?: boolean; + }, +): Promise { + // Determine the image to use. + const image = + command === "circomspect" + ? `sindrilabs/circomspect:${tag === "auto" ? "latest" : tag}` + : null; + if (!image) { + throw new Error(`The command "${command}" is not supported.`); + } + + // Find the project root if one wasn't specified. + if (!rootDirectory) { + const cwd = process.cwd(); + const sindriJsonPath = findFileUpwards(/^sindri.json$/i, cwd); + if (sindriJsonPath) { + rootDirectory = path.dirname(sindriJsonPath); + } else { + rootDirectory = cwd; + logger?.warn( + `No "sindri.json" file was found in or above "${cwd}", ` + + `using the current directory as the project root.`, + ); + } + } + rootDirectory = path.normalize(path.resolve(rootDirectory)); + + // Pull the appropriate image. + logger?.debug(`Pulling the "${image}" image.`); + try { + await new Promise((resolve, reject) => { + docker.pull( + image, + (error: Error | null, stream: NodeJS.ReadableStream) => { + if (error) { + reject(error); + } else { + docker.modem.followProgress(stream, (error, result) => + error ? reject(error) : resolve(result), + ); + } + }, + ); + }); + } catch (error) { + logger?.error(`Failed to pull the "${image}" image.`); + logger?.error(error); + return process.exit(1); + } + + // Remap the root directory to its location on the host system when running in development mode. + // This is because the development container has the project root mounted at `/sindri/`, but the + // mounts are performed on the host system so the paths need to exist there. + let mountDirectory: string = rootDirectory; + if (process.env.SINDRI_DEVELOPMENT_HOST_ROOT) { + if (rootDirectory === "/sindri" || rootDirectory.startsWith("/sindri/")) { + mountDirectory = rootDirectory.replace( + "/sindri", + process.env.SINDRI_DEVELOPMENT_HOST_ROOT, + ); + logger?.debug( + `Remapped "${rootDirectory}" to "${mountDirectory}" for bind mount on the Docker host.`, + ); + } else { + logger?.fatal( + `The root directory path "${rootDirectory}" must be under "/sindri/"` + + 'when using "SINDRI_DEVELOPMENT_HOST_ROOT".', + ); + return process.exit(1); + } + } + + // Remap the current working directory to its location inside the container. If the user is in a + // subdirectory of the project root, we need to remap the current working directory to the same + // subdirectory inside the container. + const relativeCwd = path.relative(rootDirectory, cwd); + let internalCwd: string; + if (relativeCwd.startsWith("..")) { + internalCwd = "/sindri/"; + logger?.warn( + `The current working directory ("${cwd}") is not under the project root ` + + `("${rootDirectory}"), will use the project root as the current working directory.`, + ); + } else { + internalCwd = path.join("/sindri/", relativeCwd); + } + logger?.debug( + `Remapped the "${cwd}" working directory to "${internalCwd}" in the Docker container.`, + ); + + // Run circomspect with the project root mounted and pipe the output to stdout. + const data: { StatusCode: number } = await new Promise((resolve, reject) => { + docker + .run( + image, + args, + tty ? [process.stdout, process.stderr] : devNull, + { + AttachStderr: tty, + AttachStdin: tty, + AttachStdout: tty, + HostConfig: { + Binds: [ + // Circuit project root. + `${mountDirectory}:/sindri`, + // Shared temporary directory. + `${os.tmpdir()}/sindri/:/tmp/sindri/`, + ], + }, + OpenStdin: tty, + StdinOnce: false, + Tty: tty, + WorkingDir: internalCwd, + }, + (error, data) => { + if (error) { + reject(error); + } else { + resolve(data); + } + }, + ) + .on("container", (container) => { + if (!tty) return; + + // Attach stdin/stdout/stderr if we're running in TTY mode. + const stream = container.attach( + { + stream: true, + stdin: true, + stdout: true, + stderr: true, + }, + function (error: Error, stream: Duplex) { + if (error) { + reject(error); + } + + // Connect stdin and stdout. + // Note that stderr is redirected into stdout because this is the normal TTY behavior. + stream.pipe(process.stdout); + }, + ); + + // Ensure the stream is resumed because streams start paused. + if (stream) { + stream.resume(); + } + }); + }); + return data.StatusCode; +} + +/** + * Executes a command locally. + * + * @param command - The command to execute. + * @param args - The arguments to pass to the command. + * @param options - Additional options for the command. + * @param options.cwd - The current working directory for the executed command. + * @param options.logger - The logger to use for logging messages. There will be no logging if not + * specified. + * @param options.tty - Whether to use a TTY for the command. Defaults to `false` which means that + * the command's output will be ignored. + * + * @returns The exit code of the command. + */ +export async function execLocalCommand( + command: ExternalCommand, + args: string[] = [], + { + cwd = process.cwd(), + logger, + tty = false, + }: { + cwd?: string; + logger?: Logger; + tty?: boolean; + }, +): Promise { + const child = spawn(command, args, { + cwd, + stdio: tty ? "inherit" : "ignore", + }); + try { + const code: number = await new Promise((resolve, reject) => { + child.on("error", (error) => { + reject(error); + }); + child.on("close", (code, signal) => { + // If the command exits with a signal (e.g. `SIGABRT`), then follow the common convention of + // mapping this to an exit code of: 128 + (the signal number). + if (code == null && signal != null) { + code = 128 + os.constants.signals[signal]; + } + assert(code != null); + resolve(code); + }); + }); + return code; + } catch (error) { + logger?.error(`Failed to execute the "${command}" command.`); + logger?.error(error); + return process.exit(1); + } +} + /** * Checks whether or not a file (including directories) exists. * @@ -60,6 +448,47 @@ export function findFileUpwards( return findFileUpwards(filename, parentDirectory); } +/** + * Retrieves the available tags for a Docker image from DockerHub, ordered from oldest to newest. + * + * @param repository - The name of the Docker image repository. + * @param username - The DockerHub username of the repository owner (default: "sindrilabs"). + * + * @returns An array of available tags for the Docker image. + */ +export async function getDockerImageTags( + repository: string, + username: string = "sindrilabs", +): Promise { + const url = `https://hub.docker.com/v2/repositories/${username}/${repository}/tags/`; + const { + data: { results }, + } = await axios.get<{ + results: Array<{ + last_updated: string; + name: string; + tag_status: string; + }>; + }>(url); + return results + .filter(({ tag_status }) => tag_status === "active") + .filter(({ name }) => name !== "dev") + .sort((a, b) => a.last_updated.localeCompare(b.last_updated)) + .map(({ name }) => name); +} + +/** + * Determines if a string represents a truthy value. + * + * @param {string} str - The string to check for truthiness. + * + * @returns {boolean} `true` if the string represents a truthy value, otherwise `false`. + */ +export function isTruthy(str: string): boolean { + const truthyValues = ["1", "true", "t", "yes", "y", "on"]; + return truthyValues.includes(str.toLowerCase()); +} + /** * Loads the project's `package.json` file. * diff --git a/yarn.lock b/yarn.lock index c212a64..8b16ae6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -47,6 +47,11 @@ chalk "^2.4.2" js-tokens "^4.0.0" +"@balena/dockerignore@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@balena/dockerignore/-/dockerignore-1.0.2.tgz#9ffe4726915251e8eb69f44ef3547e0da2c03e0d" + integrity sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q== + "@commander-js/extra-typings@^11.1.0": version "11.1.0" resolved "https://registry.npmjs.org/@commander-js/extra-typings/-/extra-typings-11.1.0.tgz" @@ -809,6 +814,22 @@ resolved "https://registry.npmjs.org/@tsconfig/node18/-/node18-18.2.2.tgz" integrity sha512-d6McJeGsuoRlwWZmVIeE8CUA27lu6jLjvv1JzqmpsytOYYbVi1tHZEnwCNVOXnj4pyLvneZlFlpXUK+X9wBWyw== +"@types/docker-modem@*": + version "3.0.6" + resolved "https://registry.yarnpkg.com/@types/docker-modem/-/docker-modem-3.0.6.tgz#1f9262fcf85425b158ca725699a03eb23cddbf87" + integrity sha512-yKpAGEuKRSS8wwx0joknWxsmLha78wNMe9R2S3UNsVOkZded8UqOrV8KoeDXoXsjndxwyF3eIhyClGbO1SEhEg== + dependencies: + "@types/node" "*" + "@types/ssh2" "*" + +"@types/dockerode@^3.3.23": + version "3.3.23" + resolved "https://registry.yarnpkg.com/@types/dockerode/-/dockerode-3.3.23.tgz#07b2084013d01e14d5d97856446f4d9c9f27c223" + integrity sha512-Lz5J+NFgZS4cEVhquwjIGH4oQwlVn2h7LXD3boitujBnzOE5o7s9H8hchEjoDK2SlRsJTogdKnQeiJgPPKLIEw== + dependencies: + "@types/docker-modem" "*" + "@types/node" "*" + "@types/estree@1.0.5": version "1.0.5" resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz" @@ -852,6 +873,13 @@ dependencies: undici-types "~5.26.4" +"@types/node@^18.11.18": + version "18.19.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.18.tgz#7526471b28828d1fef1f7e4960fb9477e6e4369c" + integrity sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg== + dependencies: + undici-types "~5.26.4" + "@types/nunjucks@^3.2.6": version "3.2.6" resolved "https://registry.npmjs.org/@types/nunjucks/-/nunjucks-3.2.6.tgz" @@ -874,6 +902,13 @@ resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz" integrity sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg== +"@types/ssh2@*": + version "1.11.19" + resolved "https://registry.yarnpkg.com/@types/ssh2/-/ssh2-1.11.19.tgz#4f2ec691b0674ea1590915fe5114a9aeae0eb41d" + integrity sha512-ydbQAqEcdNVy2t1w7dMh6eWMr+iOgtEkqM/3K9RMijMaok/ER7L8GW6PwsOypHCN++M+c8S/UR9SgMqNIFstbA== + dependencies: + "@types/node" "^18.11.18" + "@types/tar-js@^0.3.5": version "0.3.5" resolved "https://registry.npmjs.org/@types/tar-js/-/tar-js-0.3.5.tgz" @@ -1171,6 +1206,13 @@ asap@^2.0.3: resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== +asn1@^0.2.6: + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + ast-types@^0.13.4: version "0.13.4" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.4.tgz#ee0d77b343263965ecc3fb62da16e7222b2b6782" @@ -1305,6 +1347,13 @@ basic-ftp@^5.0.2: resolved "https://registry.yarnpkg.com/basic-ftp/-/basic-ftp-5.0.4.tgz#28aeab7bfbbde5f5d0159cd8bb3b8e633bbb091d" integrity sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA== +bcrypt-pbkdf@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + big-integer@^1.6.44: version "1.6.51" resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz" @@ -1322,6 +1371,15 @@ bindings@^1.4.0: dependencies: file-uri-to-path "1.0.0" +bl@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + blueimp-md5@^2.10.0: version "2.19.0" resolved "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.19.0.tgz" @@ -1361,7 +1419,7 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer@^5.2.1: +buffer@^5.2.1, buffer@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -1377,6 +1435,11 @@ buffer@^6.0.3: base64-js "^1.3.1" ieee754 "^1.2.1" +buildcheck@~0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/buildcheck/-/buildcheck-0.0.6.tgz#89aa6e417cfd1e2196e3f8fe915eb709d2fe4238" + integrity sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A== + bundle-name@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz" @@ -1474,6 +1537,11 @@ chokidar@^3.5.1, chokidar@^3.5.2: optionalDependencies: fsevents "~2.3.2" +chownr@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + chownr@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" @@ -1641,6 +1709,14 @@ cosmiconfig@9.0.0: js-yaml "^4.1.0" parse-json "^5.2.0" +cpu-features@~0.0.9: + version "0.0.9" + resolved "https://registry.yarnpkg.com/cpu-features/-/cpu-features-0.0.9.tgz#5226b92f0f1c63122b0a3eb84cb8335a4de499fc" + integrity sha512-AKjgn2rP2yJyfbepsmLfiYcmtNn/2eUvocUyM/09yB0YDiz39HteK/5/T4Onf0pmdYDMgkBoGvRLvEguzyL7wQ== + dependencies: + buildcheck "~0.0.6" + nan "^2.17.0" + "crc32@>= 0.2.2": version "0.2.2" resolved "https://registry.npmjs.org/crc32/-/crc32-0.2.2.tgz" @@ -1783,6 +1859,25 @@ dir-glob@^3.0.1: dependencies: path-type "^4.0.0" +docker-modem@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/docker-modem/-/docker-modem-5.0.3.tgz#50c06f11285289f58112b5c4c4d89824541c41d0" + integrity sha512-89zhop5YVhcPEt5FpUFGr3cDyceGhq/F9J+ZndQ4KfqNvfbJpPMfgeixFgUj5OjCYAboElqODxY5Z1EBsSa6sg== + dependencies: + debug "^4.1.1" + readable-stream "^3.5.0" + split-ca "^1.0.1" + ssh2 "^1.15.0" + +dockerode@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/dockerode/-/dockerode-4.0.2.tgz#dedc8529a1db3ac46d186f5912389899bc309f7d" + integrity sha512-9wM1BVpVMFr2Pw3eJNXrYYt6DT9k0xMcsSCjtPvyQ+xa1iPg/Mo3T/gUcwI0B2cczqCeCYRPF8yFYDwtFXT0+w== + dependencies: + "@balena/dockerignore" "^1.0.2" + docker-modem "^5.0.3" + tar-fs "~2.0.1" + doctrine@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" @@ -1805,7 +1900,7 @@ emoji-regex@^8.0.0: resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -end-of-stream@^1.1.0: +end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== @@ -2270,6 +2365,11 @@ formdata-node@^6.0.3: resolved "https://registry.npmjs.org/formdata-node/-/formdata-node-6.0.3.tgz" integrity sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg== +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + fs-extra@^11.1.1: version "11.1.1" resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz" @@ -2661,7 +2761,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3: +inherits@2, inherits@^2.0.3, inherits@^2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -3101,6 +3201,11 @@ mitt@3.0.1: resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== +mkdirp-classic@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + mkdirp@^1.0.3, mkdirp@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" @@ -3135,6 +3240,11 @@ mz@^2.7.0: object-assign "^4.0.1" thenify-all "^1.0.0" +nan@^2.17.0, nan@^2.18.0: + version "2.18.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" + integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== + natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" @@ -3680,7 +3790,7 @@ rc@^1.2.8: minimist "^1.2.0" strip-json-comments "~2.0.1" -readable-stream@^3.6.0: +readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: version "3.6.2" resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -3828,7 +3938,7 @@ safe-stable-stringify@^2.3.1: resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz" integrity sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g== -"safer-buffer@>= 2.1.2 < 3": +"safer-buffer@>= 2.1.2 < 3", safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -3977,6 +4087,11 @@ source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +split-ca@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split-ca/-/split-ca-1.0.1.tgz#6c83aff3692fa61256e0cd197e05e9de157691a6" + integrity sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ== + split2@^4.0.0: version "4.2.0" resolved "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz" @@ -3992,6 +4107,17 @@ sprintf-js@~1.0.2: resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== +ssh2@^1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/ssh2/-/ssh2-1.15.0.tgz#2f998455036a7f89e0df5847efb5421748d9871b" + integrity sha512-C0PHgX4h6lBxYx7hcXwu3QWdh4tg6tZZsTfXcdvc5caW/EMxaB4H9dWsl7qk+F7LAW762hp8VbXOX7x4xUYvEw== + dependencies: + asn1 "^0.2.6" + bcrypt-pbkdf "^1.0.2" + optionalDependencies: + cpu-features "~0.0.9" + nan "^2.18.0" + stack-utils@^2.0.6: version "2.0.6" resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz" @@ -4132,11 +4258,32 @@ tar-fs@3.0.5: bare-fs "^2.1.1" bare-path "^2.1.0" +tar-fs@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.0.1.tgz#e44086c1c60d31a4f0cf893b1c4e155dabfae9e2" + integrity sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.0.0" + tar-js@^0.3.0: version "0.3.0" resolved "https://registry.npmjs.org/tar-js/-/tar-js-0.3.0.tgz" integrity sha512-9uqP2hJUZNKRkwPDe5nXxXdzo6w+BFBPq9x/tyi5/U/DneuSesO/HMb0y5TeWpfcv49YDJTs7SrrZeeu8ZHWDA== +tar-stream@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + tar-stream@^3.1.5: version "3.1.7" resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-3.1.7.tgz#24b3fb5eabada19fe7338ed6d26e5f7c482e792b" @@ -4292,6 +4439,11 @@ tunnel@0.0.6: resolved "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz" integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== +tweetnacl@^0.14.3: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" From 3b6dbd9156fa53f110a0dd9525a97a9e13c171b2 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Sat, 24 Feb 2024 15:08:14 -0700 Subject: [PATCH 13/21] Fix `/tmp/` dir mounting on macos in docker The `os.tmpdir()` call was returning a path under `/var/folders/` on macs, so the Circomspect output was ending up in a different location than the CLI was expecting it. This hardcodes the path to `/tmp/` which is effectively all we support at the moment. Windows support outside of WSL will be more complicated because it will require further path rewriting. Merges #78 --- src/cli/lint.ts | 4 ++-- src/cli/utils.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 52defe7..5bbcd15 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -1,7 +1,6 @@ import assert from "assert"; import { randomUUID } from "crypto"; import { existsSync, readFileSync, unlinkSync } from "fs"; -import os from "os"; import path from "path"; import process from "process"; @@ -195,7 +194,8 @@ export const lintCommand = new Command() "Running static analysis with Circomspect by Trail of Bits...", ); const sarifFile = path.join( - os.tmpdir(), + "/", + "/tmp/", "sindri", `circomspect-${randomUUID()}.sarif`, ); diff --git a/src/cli/utils.ts b/src/cli/utils.ts index d13b575..9452af3 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -299,7 +299,7 @@ export async function execDockerCommand( // Circuit project root. `${mountDirectory}:/sindri`, // Shared temporary directory. - `${os.tmpdir()}/sindri/:/tmp/sindri/`, + `/tmp/sindri/:/tmp/sindri/`, ], }, OpenStdin: tty, From 74b0dfc3ca6a43fe07abf59c8bf74a2ccf471571 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Sat, 24 Feb 2024 15:34:23 -0700 Subject: [PATCH 14/21] Improve logged Circomspect file paths when running in Docker The `sindri lint` file paths logged for Circomspect output were rewriting the paths relative to the project's root directory on the host system, but the project is mounted at `/sindri/` inside of the container so this was resulting in spurious `../../../` prefixes on the file paths. This adjusts how we rewrite the paths differently based on whether or not the command is being run in Docker. Merges #79 --- src/cli/lint.ts | 11 +++++++---- src/cli/utils.ts | 30 +++++++++++++++++++----------- 2 files changed, 26 insertions(+), 15 deletions(-) diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 5bbcd15..74148be 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -195,17 +195,18 @@ export const lintCommand = new Command() ); const sarifFile = path.join( "/", - "/tmp/", + "tmp", "sindri", `circomspect-${randomUUID()}.sarif`, ); let sarif: SarifLog | undefined; + let ranInDocker: boolean; try { const circuitPath: string = "circuitPath" in sindriJson && sindriJson.circuitPath ? (sindriJson.circuitPath as string) : "circuit.circom"; - const code = await execCommand( + const { method } = await execCommand( "circomspect", ["--level", "INFO", "--sarif-file", sarifFile, circuitPath], { @@ -215,7 +216,8 @@ export const lintCommand = new Command() tty: false, }, ); - if (code !== null) { + ranInDocker = method === "docker"; + if (method !== null) { sindri.logger.debug("Parsing Circomspect SARIF results."); const sarifContent = readFileSync(sarifFile, { encoding: "utf-8", @@ -297,8 +299,9 @@ export const lintCommand = new Command() sindri.logger.debug(result, "Missing Circomspect result fields:"); return; } + const filePath = path.relative( - rootDirectory, + ranInDocker ? "/sindri/" : rootDirectory, result.locations[0].physicalLocation.artifactLocation.uri.replace( /^file:\/\//, "", diff --git a/src/cli/utils.ts b/src/cli/utils.ts index 9452af3..3269ee6 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -119,7 +119,9 @@ export async function execCommand( tag?: string; tty?: boolean; }, -): Promise { +): Promise< + { code: number; method: "docker" | "local" } | { code: null; method: null } +> { // Try using a local command first (unless `SINDRI_FORCE_DOCKER` is set). if (isTruthy(process.env.SINDRI_FORCE_DOCKER ?? "false")) { logger?.debug( @@ -128,7 +130,10 @@ export async function execCommand( ); } else if (await checkCommandExists(command)) { logger?.debug(`Executing the "${command}" command locally.`); - return await execLocalCommand(command, args, { cwd, logger, tty }); + return { + code: await execLocalCommand(command, args, { cwd, logger, tty }), + method: "local", + }; } else { logger?.debug( `The "${command}" command was not found locally, trying Docker instead.`, @@ -138,21 +143,24 @@ export async function execCommand( // Fall back to using Docker if possible. if (await checkDockerAvailability(logger)) { logger?.debug(`Executing the "${command}" command in a Docker container.`); - return await execDockerCommand(command, args, { - cwd, - docker, - logger, - rootDirectory, - tag, - tty, - }); + return { + code: await execDockerCommand(command, args, { + cwd, + docker, + logger, + rootDirectory, + tag, + tty, + }), + method: "docker", + }; } // There's no way to run the command. logger?.debug( `The "${command}" command is not available locally or in Docker.`, ); - return null; + return { code: null, method: null }; } /** From 58e49c3e570caa6c99a7d323a10fb85a05cff4a2 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Mon, 26 Feb 2024 18:02:11 -0700 Subject: [PATCH 15/21] Integrate nargo with `sindri x nargo` This integrates nargo as a `sindri x` command. The nargo version is automatically pulled from `sindri.json` by default, otherwise it uses the `latest` tag. Merges #82 --- src/cli/exec.ts | 27 +++++++++++++++++++++++++ src/cli/utils.ts | 52 ++++++++++++++++++++++++++++++++++++------------ 2 files changed, 66 insertions(+), 13 deletions(-) diff --git a/src/cli/exec.ts b/src/cli/exec.ts index 768cc9e..a1d6193 100644 --- a/src/cli/exec.ts +++ b/src/cli/exec.ts @@ -46,6 +46,32 @@ const circomspectCommand = new Command() } }); +const nargoCommand = new Command() + .name("nargo") + .description("Aztec Lab's Noir compiler and package manager.") + .helpOption(false) + .addHelpCommand(false) + .allowUnknownOption() + .passThroughOptions() + .argument("[args...]", "Arguments to pass to the tool.") + .action(async (args) => { + if (listTags) return; // Don't run the command if we're just listing tags. + + try { + const code = await execDockerCommand("nargo", args, { + logger: sindri.logger, + rootDirectory, + tag, + tty: true, + }); + process.exit(code); + } catch (error) { + sindri.logger.error("Failed to run the nargo command."); + sindri.logger.debug(error); + return process.exit(1); + } + }); + export const execCommand = new Command() .name("exec") .alias("x") @@ -63,6 +89,7 @@ export const execCommand = new Command() "auto", ) .addCommand(circomspectCommand) + .addCommand(nargoCommand) .hook("preAction", async (command) => { // Store the options in globals for subcommands to access them. const opts = command.opts(); diff --git a/src/cli/utils.ts b/src/cli/utils.ts index 3269ee6..e221079 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -68,7 +68,7 @@ export async function checkDockerAvailability( /** * Supported external commands, each must correspond to a `docker-zkp` image repository. */ -type ExternalCommand = "circomspect"; +type ExternalCommand = "circomspect" | "nargo"; /** * A writable stream that discards all input. @@ -203,19 +203,9 @@ export async function execDockerCommand( tty?: boolean; }, ): Promise { - // Determine the image to use. - const image = - command === "circomspect" - ? `sindrilabs/circomspect:${tag === "auto" ? "latest" : tag}` - : null; - if (!image) { - throw new Error(`The command "${command}" is not supported.`); - } - // Find the project root if one wasn't specified. + const sindriJsonPath = findFileUpwards(/^sindri.json$/i, cwd); if (!rootDirectory) { - const cwd = process.cwd(); - const sindriJsonPath = findFileUpwards(/^sindri.json$/i, cwd); if (sindriJsonPath) { rootDirectory = path.dirname(sindriJsonPath); } else { @@ -228,6 +218,42 @@ export async function execDockerCommand( } rootDirectory = path.normalize(path.resolve(rootDirectory)); + // Determine the image to use. + let image: string; + if (command === "nargo" && tag === "auto") { + let tag = "latest"; + if (sindriJsonPath) { + try { + const sindriJsonContent = await readFile(sindriJsonPath, { + encoding: "utf-8", + }); + const sindriJson = JSON.parse(sindriJsonContent); + if (sindriJson.noirVersion) { + tag = sindriJson.noirVersion; + if (tag && !tag.startsWith("v")) { + tag = `v${tag}`; + } + } + } catch (error) { + logger?.error( + `Failed to parse the "${sindriJsonPath}" file, ` + + 'using the "latest" tag for the "nargo" command.', + ); + logger?.debug(error); + } + } else { + logger?.warn( + `No "sindri.json" file was found in or above "${cwd}", ` + + 'using the "latest" tag for the "nargo" command.', + ); + } + image = `sindrilabs/${command}:${tag}`; + } else if (["circomspect", "nargo"].includes(command)) { + image = `sindrilabs/${command}:${tag === "auto" ? "latest" : tag}`; + } else { + throw new Error(`The command "${command}" is not supported.`); + } + // Pull the appropriate image. logger?.debug(`Pulling the "${image}" image.`); try { @@ -291,7 +317,7 @@ export async function execDockerCommand( `Remapped the "${cwd}" working directory to "${internalCwd}" in the Docker container.`, ); - // Run circomspect with the project root mounted and pipe the output to stdout. + // Run the command with the project root mounted and pipe the output to stdout. const data: { StatusCode: number } = await new Promise((resolve, reject) => { docker .run( From 9ef10efbe79325464b583393580856eea8e7f1fd Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 6 Mar 2024 15:51:44 -0700 Subject: [PATCH 16/21] Sort docker image tags by version number This uses the `compare-versions` libary to sort the docker image tags from oldest version to newest. It also implements pagination when fetching the DockerHub tags so we aren't limited to one page of results. Merges #83 --- package.json | 1 + src/cli/utils.ts | 38 +++++++++++++++++++++++++++----------- yarn.lock | 5 +++++ 3 files changed, 33 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index bf9da4a..cccbcb0 100644 --- a/package.json +++ b/package.json @@ -88,6 +88,7 @@ "@types/tar-js": "^0.3.5", "axios": "^1.6.2", "commander": "^11.1.0", + "compare-versions": "^6.1.0", "dockerode": "^4.0.2", "env-paths": "^2.2.1", "formdata-node": "^6.0.3", diff --git a/src/cli/utils.ts b/src/cli/utils.ts index e221079..8753a0f 100644 --- a/src/cli/utils.ts +++ b/src/cli/utils.ts @@ -9,6 +9,7 @@ import { type Duplex, Writable } from "stream"; import { fileURLToPath } from "url"; import axios from "axios"; +import { compareVersions } from "compare-versions"; import Docker from "dockerode"; import type { Schema } from "jsonschema"; import nunjucks from "nunjucks"; @@ -494,21 +495,36 @@ export async function getDockerImageTags( repository: string, username: string = "sindrilabs", ): Promise { - const url = `https://hub.docker.com/v2/repositories/${username}/${repository}/tags/`; - const { - data: { results }, - } = await axios.get<{ - results: Array<{ - last_updated: string; - name: string; - tag_status: string; - }>; - }>(url); + let url: string | undefined = + `https://hub.docker.com/v2/repositories/${username}/${repository}/tags/?page_size=1`; + interface Result { + last_updated: string; + name: string; + tag_status: string; + } + interface Response { + count: number; + next?: string; + previous: string | null; + results: Result[]; + } + let results: Result[] = []; + + while (url) { + const response: { data: Response } = await axios.get(url); + + results = results.concat(response.data.results); + url = response.data.next; // Update the URL for the next request, or null if no more pages + } + return results .filter(({ tag_status }) => tag_status === "active") .filter(({ name }) => name !== "dev") .sort((a, b) => a.last_updated.localeCompare(b.last_updated)) - .map(({ name }) => name); + .map(({ name }) => name) + .sort((a, b) => + a === "latest" ? 1 : b === "latest" ? -1 : compareVersions(a, b), + ); } /** diff --git a/yarn.lock b/yarn.lock index 8b16ae6..fe733aa 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1670,6 +1670,11 @@ common-path-prefix@^3.0.0: resolved "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz" integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== +compare-versions@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-6.1.0.tgz#3f2131e3ae93577df111dba133e6db876ffe127a" + integrity sha512-LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg== + concat-map@0.0.1: version "0.0.1" resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" From 8a54d78025c7415754b74b25ff30d8a9aeb1d45a Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Fri, 8 Mar 2024 15:58:06 -0700 Subject: [PATCH 17/21] Add ESM/CJS import tests This adds some basic tests to make sure that the ESM and CJS builds are working. It's easy to accidentally add a library that doesn't work with one of the builds, or to do something that pushes the library under a `default` property on the CJS build. I've added and reverted a few commits here that demonstrate these issues and the tests catching them. In particular, see these commits which introduce different errors: * a182acf - Introduce an ESM-only dependency * 019fd03 - Force the CJS build to export the library under `.default` * 495f335 - Use a CJS only library as an ESM import Closes #63 Merges #84 LGTM given by: @katiemckeon --- package.json | 1 + test/import.test.ts | 91 +++++++++++++++++++++++++++++++++++++++++++++ tsconfig.json | 2 +- yarn.lock | 7 +++- 4 files changed, 99 insertions(+), 2 deletions(-) create mode 100644 test/import.test.ts diff --git a/package.json b/package.json index cccbcb0..a5055b0 100644 --- a/package.json +++ b/package.json @@ -117,6 +117,7 @@ "eslint": "^8.53.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", + "flatted": "^3.3.1", "get-port": "^7.0.0", "http-mitm-proxy": "^1.1.0", "make-synchronous": "^1.0.0", diff --git a/test/import.test.ts b/test/import.test.ts new file mode 100644 index 0000000..b63b9d2 --- /dev/null +++ b/test/import.test.ts @@ -0,0 +1,91 @@ +// Type checking is disabled in this file because we want type checking to work without the `/dist/` +// directory being populated. +import { spawn } from "child_process"; +import path from "path"; +import { fileURLToPath } from "url"; + +import test from "ava"; +import flatted from "flatted"; + +// Any `require()` statements actually get treated as ESM imports under the hood in the tests, so +// this is a kind of hacky way to perform the module import in a subprocess. Because we're only +// really interested in whether the different builds and import types work in these tests, this +// should be good enough. +const requireCjs = async ( + modulePath: string, +): Promise<{ [key: string]: unknown }> => { + const __dirname = path.dirname(fileURLToPath(import.meta.url)); + const moduleFullPath = path.resolve(__dirname, modulePath); + const subprocessCode = ` + // Necessary for the browser tests. + global.window = {}; + + // Use flatted for better handling of non-JSON content, circular referecnes, etc. + const { stringify } = require("flatted"); + + const module = require("${moduleFullPath}"); + process.stdout.write(stringify(module)); + `; + + return new Promise((resolve, reject) => { + const subprocess = spawn("node", ["-e", subprocessCode], { + stdio: ["inherit", "pipe", "pipe"], + }); + + let stdout = ""; + subprocess.stdout.on("data", (chunk) => { + stdout += chunk; + }); + + let stderr = ""; + subprocess.stderr.on("data", (chunk) => { + stderr += chunk; + }); + + subprocess.on("close", (code) => { + if (code === 0) { + try { + const result = flatted.parse(stdout); + resolve(result); + } catch (error) { + reject(new Error(`Failed to parse subprocess output:\n\n${stdout}`)); + } + } else { + reject(new Error(`Subprocess exited with code ${code}:\n\n${stderr}`)); + } + }); + }); +}; + +test.before(() => { + global.window = {} as Window & typeof globalThis; +}); + +test("cli", async (t) => { + const cli = await requireCjs("../dist/cli/index.js"); + t.truthy(cli?.program); +}); + +test("lib browser cjs", async (t) => { + const lib = await requireCjs("../dist/lib/browser/index.js"); + t.truthy(lib); + t.false("default" in lib, "library should not be nested under `default`"); +}); + +test("lib browser mjs", async (t) => { + const { default: lib } = await import("../dist/lib/browser/index.mjs"); + t.truthy(lib); + t.false("default" in lib, "library should not be nested under `default`"); +}); + +test("lib node cjs", async (t) => { + const lib = await requireCjs("../dist/lib/index.js"); + t.truthy(lib); + t.false("default" in lib, "library should not be nested under `default`"); +}); + +test("lib node mjs", async (t) => { + const { default: lib } = await import("../dist/lib/index.mjs"); + t.truthy(lib); + t.false("default" in lib, "library should not be nested under `default`"); +}); diff --git a/tsconfig.json b/tsconfig.json index 62f8890..c28d11d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,5 @@ "preserveConstEnums": true }, "include": ["src/**/*", "test/**/*"], - "exclude": ["dist/**/*", "node_modules/**/*"] + "exclude": ["dist/**/*", "node_modules/**/*", "test/import.test.ts"] } diff --git a/yarn.lock b/yarn.lock index fe733aa..a2baeb6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2351,6 +2351,11 @@ flatted@^3.2.9: resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz" integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== +flatted@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + follow-redirects@^1.15.0: version "1.15.3" resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz" @@ -2966,7 +2971,7 @@ json-stable-stringify@^1.0.2: json-stringify-safe@^5.0.1: version "5.0.1" - resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== jsonfile@^6.0.1: From 80f5adbf206fa6b1de7a61fcbfdde195e68a4366 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Mon, 11 Mar 2024 19:44:47 -0500 Subject: [PATCH 18/21] Add `Sindri-Client` header to requests This adds a `Sindri-Client` header to all SDK requests which specifies the client type and version. We use separate identifiers for the SDK and CLI of the form `sindri-js-sdk/v0.0.0` and `sindri-js-cli/v0.0.0` respectively. This will allow us to keep track of which clients are people using the most. We were previously pulling the version string from the `package.json` file in the project, but this isn't available in the browser builds, so this PR updates it to use a `VERSION` environment variable that is specified as part of the deployment process. Closes #86 Merges #87 --- src/cli/index.ts | 11 +- src/cli/login.ts | 5 +- src/lib/client.ts | 19 +- test/fixtures/browser.test.ts.json | 59366 ++++++++------------------- test/fixtures/sdk.test.ts.json | 58047 ++++++++------------------ tsup.config.ts | 4 + 6 files changed, 35210 insertions(+), 82242 deletions(-) diff --git a/src/cli/index.ts b/src/cli/index.ts index 5418544..48f7425 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -14,10 +14,13 @@ import { whoamiCommand } from "cli/whoami"; import { loadPackageJson } from "cli/utils"; import sindri from "lib"; +const version = process.env.VERSION || loadPackageJson().version; +const versionTag = version ? `v${version}` : "unknown"; + export const program = new Command() .name("sindri") .description("The Sindri CLI client.") - .version(loadPackageJson().version ?? "unknown") + .version(versionTag) .enablePositionalOptions() .option("-d, --debug", "Enable debug logging.", false) .option( @@ -51,6 +54,12 @@ export const program = new Command() } else { sindri.logLevel = "info"; } + + // Set the `Sindri-Client` header. + sindri._clientConfig.HEADERS = { + ...sindri._clientConfig.HEADERS, + "Sindri-Client": `sindri-js-cli/${versionTag}`, + }; }); if (require.main === module) { diff --git a/src/cli/login.ts b/src/cli/login.ts index 91052f5..c7df203 100644 --- a/src/cli/login.ts +++ b/src/cli/login.ts @@ -89,7 +89,10 @@ export const loginCommand = new Command() } // Generate an API key. - sindri._clientConfig.HEADERS = { "Sindri-Team-Id": `${teamId}` }; + sindri._clientConfig.HEADERS = { + ...sindri._clientConfig.HEADERS, + "Sindri-Team-Id": `${teamId}`, + }; const apiKeyResult = await sindri._client.authorization.apikeyGenerate({ username, password, diff --git a/src/lib/client.ts b/src/lib/client.ts index 5cb774b..a2b63fa 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -125,13 +125,27 @@ export class SindriClient { * @see {@link SindriClient.authorize} for information on retrieving this value. */ constructor(authOptions: AuthOptions = {}) { + // Initialize the client and store a reference to its config. this._client = new ApiClient(); this._clientConfig = this._client.request.config; + + // Set the `Sindri-Client` header. + const versionTag = process.env.VERSION + ? `v${process.env.VERSION}` + : "unknown"; + this._clientConfig.HEADERS = { + ...this._clientConfig.HEADERS, + "Sindri-Client": `sindri-js-sdk/${versionTag}`, + }; + + // Create a local logger instance. this.logger = createLogger(); if (!process.env.BROWSER_BUILD) { this._config = new Config(this.logger); } this._clientConfig.logger = this.logger; + + // Authorize the client. this.authorize(authOptions); } @@ -478,11 +492,12 @@ export class SindriClient { } // We need to shuffle in a hard-coded form boundary for tests to be deterministic. - // Note that it's import the boundary matches the Chrome format because the test runner checks - // payloads for this format in order to compare non-deterministic gzips. + // Note that it's important the boundary matches the Chrome format because the test runner + // checks payloads for this format in order to compare non-deterministic gzips. // TODO: These header changes are global, we need to make them local to this request. const oldHeaders = this._clientConfig.HEADERS; this._clientConfig.HEADERS = { + ...oldHeaders, "Content-Type": "multipart/form-data; boundary=----WebKitFormBoundary0buQ8d6EhWcs9X9d", }; diff --git a/test/fixtures/browser.test.ts.json b/test/fixtures/browser.test.ts.json index 8cd1374..4a7de7f 100644 --- a/test/fixtures/browser.test.ts.json +++ b/test/fixtures/browser.test.ts.json @@ -6,7 +6,7 @@ "body": "", "status": 200, "response": [ - "1f8b08000000000002ff758ec10a03210c44ef7ec58087d2423777cffd83d29b20d2955670776515ba877c7c550ab6949d43c2e42543a4dc9190128069ea1df810ae8ec0540a0c7427754c8c432d6c8ee04e0a308c019a6b22f51baae96c581b5d1680efb43f35b2f7b5b825b79eedc3cd59e1242e3ed910969702d971f233fd4ca22721ae3ebbc9468567ce3129a2e4e771f5838d91c6e59e8a6f0bc33605f106f0784c462f010000" + "1f8b08000000000002ff758e416bc3300c85effe150f72281b2cbae736e865ec3248770b182fd616312731b647d7e11fbf382da463f41d24a4efe9a1aaba21555500f4aaad031792cb44c8b41468741b296bcad89592f51df24616a0336a74b924d27643253debdce96e3100d769ffb4925b5fabd7c8e1c17cf0941adcabbd44e3dc7c6c40c68e32d19f8d1752150e3cfa399820ee047ba14803e370f2dcf6417c42bb7f869dfb88af29895be9e3cb13061311937913273f6cebebf0e2a6c0ef1c78ea99a2fda41449a956128fc6371852f2b1218a32d920b5f1fe7c13cf86fa7b74ea1783a3017d9e010000" ], "rawHeaders": [ "Access-Control-Allow-Origin", @@ -16,15 +16,15 @@ "Content-Encoding", "gzip", "Content-Length", - "169", + "236", "Content-Type", "text/plain; charset=\"utf-8\"", "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Etag", - "\"659ff8b9-12f\"", + "\"65dd333d-19e\"", "Last-Modified", - "Thu, 11 Jan 2024 14:18:33 GMT", + "Tue, 27 Feb 2024 00:56:29 GMT", "Server", "gunicorn", "Vary", @@ -32,6 +32,150 @@ ], "responseIsBinary": false }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d4b4b4c6f4a6e4e44584e55534150440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d4b4b4c6f4a6e4e44584e55534150440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d4b4b4c6f4a6e4e44584e55534150442d2d0d0a", + "status": 201, + "response": { + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727975554132716f48456361744c414e73790d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727975554132716f48456361744c414e73790d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727975554132716f48456361744c414e73792d2d0d0a", + "status": 201, + "response": { + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279423755457468376f4945636e686e494a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279423755457468376f4945636e686e494a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279423755457468376f4945636e686e494a2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, { "scope": "https://sindri.app:443", "method": "GET", @@ -40,35693 +184,12161 @@ "status": 200, "response": [ { - "proof_id": "7206a741-eb14-4b4d-9df8-34d4573a671c", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T20:50:03.892Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.157652S", - "compute_times": { - "prove": 6.974535636603832, - "total": 7.280014621093869, - "queued": 0.699272, - "clean_up": 0.0002770274877548218, - "file_setup": 0.29124958999454975, - "save_results": 0.0023470818996429443, - "generate_witness_c": 0.011234406381845474 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, + "compute_times": { + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "0e78c891-40bf-42e3-bd3f-9ed15ab294f0", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T18:55:20.740Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.626586S", - "compute_times": { - "prove": 6.398727452382445, - "total": 6.695585208013654, - "queued": 0.700341, - "clean_up": 0.00033893808722496033, - "file_setup": 0.2777874078601599, - "save_results": 0.003003843128681183, - "generate_witness_c": 0.015339698642492294 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.18", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,5,7-31,33-63,68-95,97-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,6,32,64-67,96", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-e16b8d72-c644-fe31-8ecb-7760d3065b46", - "driver": "525.125.06", - "serial": "1325021030241", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, + "compute_times": { + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "9d5192cc-1409-4d2f-9396-41caf8f29fe7", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", - "circuit_type": "circom", - "date_created": "2024-01-16T18:52:27.137Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.899607S", - "compute_times": { - "prove": 6.709071487188339, - "total": 6.967682661488652, - "queued": 0.743436, - "clean_up": 0.00023915618658065796, - "file_setup": 0.2436655443161726, - "save_results": 0.0022156648337841034, - "generate_witness_c": 0.012174580246210098 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.018Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, + "compute_times": { + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "c67272e2-9303-477b-8334-654e9254a644", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", - "circuit_type": "circom", - "date_created": "2024-01-16T18:42:04.008Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.841297S", - "compute_times": { - "prove": 6.633739210665226, - "total": 6.908717390149832, - "queued": 19.305507, - "clean_up": 0.0003377869725227356, - "file_setup": 0.2361250314861536, - "save_results": 0.003197876736521721, - "generate_witness_c": 0.034953245893120766 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.932Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, + "compute_times": { + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "03724588-b4a1-43c0-850b-098764b7950d", - "circuit_name": "circom-multiplier2", - "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.482Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.312271S", - "compute_times": { - "prove": 0.3462319001555443, - "total": 2.3874263800680637, - "queued": 12.962683, - "clean_up": 0.0004112236201763153, - "file_setup": 0.7245128508657217, - "save_results": 0.1826412994414568, - "generate_witness_c": 1.133329700678587 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-4,6-31,36-68,70-95,100-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "5,32-35,69,96-99", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.924Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, + "compute_times": { + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "91bd2c4c-c595-4b96-8575-029e389492ca", - "circuit_name": "circom-multiplier2", - "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.101Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.429888S", - "compute_times": { - "prove": 0.6376615725457668, - "total": 2.5025347154587507, - "queued": 8.956946, - "clean_up": 0.0003598276525735855, - "file_setup": 0.7227823697030544, - "save_results": 0.18274421244859695, - "generate_witness_c": 0.9586518034338951 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.909Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, + "compute_times": { + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "81720f66-b35d-4928-9cb3-0ab9822e35c6", - "circuit_name": "circom-multiplier2", - "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:34.090Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.293048S", - "compute_times": { - "prove": 0.3393626883625984, - "total": 2.3659547176212072, - "queued": 7.751341, - "clean_up": 0.00032026320695877075, - "file_setup": 0.7235073558986187, - "save_results": 0.18249027617275715, - "generate_witness_c": 1.1200690548866987 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.810Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, + "compute_times": { + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "0c041b4a-cb98-4972-b274-18350f453414", - "circuit_name": "circom-multiplier2", - "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:33.577Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.087576S", - "compute_times": { - "prove": 0.40940901823341846, - "total": 3.1577404141426086, - "queued": 1.195321, - "clean_up": 0.00036599859595298767, - "file_setup": 0.8494507372379303, - "save_results": 0.18248247168958187, - "generate_witness_c": 1.7156950328499079 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.800Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, + "compute_times": { + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", - "circuit_name": "circom-multiplier2", - "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:36.311Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.092256S", - "compute_times": { - "prove": 0.36259699426591396, - "total": 2.1656957883387804, - "queued": 5.830407, - "clean_up": 0.0003967471420764923, - "file_setup": 0.6623526718467474, - "save_results": 0.18246298655867577, - "generate_witness_c": 0.9574985150247812 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.792Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, + "compute_times": { + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", - "circuit_name": "circom-multiplier2", - "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:34.880Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.002676S", - "compute_times": { - "prove": 0.40854700468480587, - "total": 3.068965345621109, - "queued": 2.266619, - "clean_up": 0.00030806101858615875, - "file_setup": 0.7846233639866114, - "save_results": 0.18261023424565792, - "generate_witness_c": 1.6924956049770117 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.637Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, + "compute_times": { + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", - "circuit_name": "circom-multiplier2", - "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:30.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.202003S", - "compute_times": { - "prove": 0.46431767754256725, - "total": 3.2886892426759005, - "queued": 1.201985, - "clean_up": 0.0002929028123617172, - "file_setup": 0.8507254235446453, - "save_results": 0.18203313648700714, - "generate_witness_c": 1.7910168208181858 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.620Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, + "compute_times": { + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", - "circuit_name": "circom-multiplier2", - "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:09.850Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.165555S", - "compute_times": { - "prove": 0.39277893863618374, - "total": 3.2604714408516884, - "queued": 1.166733, - "clean_up": 0.000250350683927536, - "file_setup": 0.9157394412904978, - "save_results": 0.1821883488446474, - "generate_witness_c": 1.7691551242023706 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.593Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, + "compute_times": { + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", - "circuit_name": "circom-multiplier2", - "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", - "circuit_type": "circom", - "date_created": "2024-01-15T12:58:03.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.952523S", - "compute_times": { - "prove": 5.78664686344564, - "total": 6.02712868899107, - "queued": 19.881766, - "clean_up": 0.000322168692946434, - "file_setup": 0.22792908176779747, - "save_results": 0.0026133283972740173, - "generate_witness_c": 0.009340517222881317 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.516Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, + "compute_times": { + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", - "circuit_name": "circom-multiplier2", - "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", - "circuit_type": "circom", - "date_created": "2024-01-15T12:58:00.883Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.075331S", - "compute_times": { - "prove": 5.884085742756724, - "total": 6.148683849722147, - "queued": 15.626844, - "clean_up": 0.0003361683338880539, - "file_setup": 0.25031704641878605, - "save_results": 0.0027868077158927917, - "generate_witness_c": 0.010888265445828438 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.491Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, + "compute_times": { + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", - "circuit_name": "circom-multiplier2", - "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:55.709Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.347161S", - "compute_times": { - "prove": 6.171584198251367, - "total": 6.416391229256988, - "queued": 13.397523, - "clean_up": 0.00026652775704860687, - "file_setup": 0.23340564966201782, - "save_results": 0.0024722814559936523, - "generate_witness_c": 0.008305234834551811 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.478Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, + "compute_times": { + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", - "circuit_name": "circom-multiplier2", - "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:48.596Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.389301S", - "compute_times": { - "prove": 6.184801682829857, - "total": 6.4623388685286045, - "queued": 13.056683, - "clean_up": 0.00022029876708984375, - "file_setup": 0.2468203753232956, - "save_results": 0.002211831510066986, - "generate_witness_c": 0.027915021404623985 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.414Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, + "compute_times": { + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", - "circuit_name": "circom-multiplier2", - "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:34.540Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.935803S", - "compute_times": { - "prove": 3.0700035598129034, - "total": 4.0028952937573195, - "queued": 0.33355, - "clean_up": 0.0002639107406139374, - "file_setup": 0.27034700475633144, - "save_results": 0.06622319296002388, - "generate_witness_c": 0.5958553366363049 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.362Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, + "compute_times": { + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", - "circuit_name": "circom-multiplier2", - "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:29.773Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.856164S", - "compute_times": { - "prove": 5.639464415609837, - "total": 5.929233264178038, - "queued": 0.650797, - "clean_up": 0.00027068890631198883, - "file_setup": 0.25932174175977707, - "save_results": 0.0027653388679027557, - "generate_witness_c": 0.02706645056605339 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.356Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, + "compute_times": { + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", - "circuit_name": "circom-multiplier2", - "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:24.790Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.340675S", - "compute_times": { - "prove": 1.4024820234626532, - "total": 2.4250366389751434, - "queued": 0.269107, - "clean_up": 0.0002933405339717865, - "file_setup": 0.3153865169733763, - "save_results": 0.06680999137461185, - "generate_witness_c": 0.6396786384284496 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.294Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, + "compute_times": { + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", - "circuit_name": "circom-multiplier2", - "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:20.359Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.889013S", - "compute_times": { - "prove": 5.641947815194726, - "total": 5.964788755401969, - "queued": 0.707221, - "clean_up": 0.00029845722019672394, - "file_setup": 0.2756399307399988, - "save_results": 0.003031056374311447, - "generate_witness_c": 0.04360153712332249 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.184Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, + "compute_times": { + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", - "circuit_name": "circom-multiplier2", - "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:24.129Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.822988S", - "compute_times": { - "prove": 5.622058680281043, - "total": 5.897718669846654, - "queued": 7.598676, - "clean_up": 0.00030495598912239075, - "file_setup": 0.26278817281126976, - "save_results": 0.0033362358808517456, - "generate_witness_c": 0.008939847350120544 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.144Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, + "compute_times": { + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", - "circuit_name": "circom-multiplier2", - "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:23.768Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.857713S", - "compute_times": { - "prove": 5.647087793797255, - "total": 5.9318443313241005, - "queued": 0.709273, - "clean_up": 0.000293998047709465, - "file_setup": 0.259655237197876, - "save_results": 0.0029127690941095352, - "generate_witness_c": 0.021628186106681824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.120Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, + "compute_times": { + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", - "circuit_name": "circom-multiplier2", - "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:39.549Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.830061S", - "compute_times": { - "prove": 5.631390610709786, - "total": 5.904656020924449, - "queued": 1.982144, - "clean_up": 0.00028679706156253815, - "file_setup": 0.2506247963756323, - "save_results": 0.0030198898166418076, - "generate_witness_c": 0.018950100988149643 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, + "compute_times": { + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", - "circuit_name": "circom-multiplier2", - "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:30.608Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.833596S", - "compute_times": { - "prove": 5.6385393515229225, - "total": 5.9040695410221815, - "queued": 0.701332, - "clean_up": 0.00033533573150634766, - "file_setup": 0.24379334598779678, - "save_results": 0.0030993279069662094, - "generate_witness_c": 0.017941521480679512 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.027Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, + "compute_times": { + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", - "circuit_name": "circom-multiplier2", - "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", - "circuit_type": "circom", - "date_created": "2024-01-15T02:01:17.976Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.847273S", - "compute_times": { - "prove": 5.660725159570575, - "total": 5.9144034665077925, - "queued": 0.696042, - "clean_up": 0.000287666916847229, - "file_setup": 0.2316605094820261, - "save_results": 0.0032375045120716095, - "generate_witness_c": 0.018273497000336647 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.006Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, + "compute_times": { + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", - "circuit_name": "circom-multiplier2", - "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", - "circuit_type": "circom", - "date_created": "2024-01-15T01:53:10.576Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.825130S", - "compute_times": { - "prove": 5.63365101441741, - "total": 5.900212554261088, - "queued": 8.137106, - "clean_up": 0.00022866018116474152, - "file_setup": 0.25481966882944107, - "save_results": 0.0027084313333034515, - "generate_witness_c": 0.008522702381014824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.963Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, + "compute_times": { + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", - "circuit_name": "circom-multiplier2", - "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", - "circuit_type": "circom", - "date_created": "2024-01-15T01:53:04.491Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.143579S", - "compute_times": { - "prove": 5.624820232391357, - "total": 6.217369062826037, - "queued": 6.939374, - "clean_up": 0.0002844296395778656, - "file_setup": 0.577876154333353, - "save_results": 0.002981366589665413, - "generate_witness_c": 0.011145314201712608 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.909Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, + "compute_times": { + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", - "circuit_name": "circom-multiplier2", - "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", - "circuit_type": "circom", - "date_created": "2024-01-15T01:53:00.837Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.826862S", - "compute_times": { - "prove": 5.6370560657233, - "total": 5.890984209254384, - "queued": 0.694293, - "clean_up": 0.00031204894185066223, - "file_setup": 0.23010724037885666, - "save_results": 0.0025510434061288834, - "generate_witness_c": 0.02062433399260044 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.896Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, + "compute_times": { + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", - "circuit_name": "circom-multiplier2", - "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:49.479Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.859514S", - "compute_times": { - "prove": 5.655713541433215, - "total": 5.953595075756311, - "queued": 0.693846, - "clean_up": 0.0002659261226654053, - "file_setup": 0.2661227900534868, - "save_results": 0.002224266529083252, - "generate_witness_c": 0.028907276690006256 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.873Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, + "compute_times": { + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", - "circuit_name": "circom-multiplier2", - "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:52.289Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.397579S", - "compute_times": { - "prove": 6.192587662488222, - "total": 6.465461192652583, - "queued": 9.005381, - "clean_up": 0.0004098862409591675, - "file_setup": 0.25517357513308525, - "save_results": 0.00757579505443573, - "generate_witness_c": 0.009418565779924393 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.817Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, + "compute_times": { + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", - "circuit_name": "circom-multiplier2", - "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:47.933Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.415701S", - "compute_times": { - "prove": 6.212794356048107, - "total": 6.486022163182497, - "queued": 5.792826, - "clean_up": 0.0002670474350452423, - "file_setup": 0.2612623367458582, - "save_results": 0.002615245059132576, - "generate_witness_c": 0.008822411298751831 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.806Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, + "compute_times": { + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", - "circuit_name": "circom-multiplier2", - "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:45.581Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.435592S", - "compute_times": { - "prove": 6.2201853562146425, - "total": 6.502878189086914, - "queued": 0.652189, - "clean_up": 0.00024727731943130493, - "file_setup": 0.2532728649675846, - "save_results": 0.0022235289216041565, - "generate_witness_c": 0.026703273877501488 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.774Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, + "compute_times": { + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", - "circuit_name": "circom-multiplier2", - "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:29.960Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.484678S", - "compute_times": { - "prove": 6.229190753772855, - "total": 6.550728781148791, - "queued": 0.657459, - "clean_up": 0.0002836957573890686, - "file_setup": 0.2656614538282156, - "save_results": 0.0025900565087795258, - "generate_witness_c": 0.052704716101288795 - }, - "file_sizes": { - "proof": 710, - "total": 716, - "public": 6, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, + "compute_times": { + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", - "circuit_name": "circom-multiplier2", - "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:35.809Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.078477S", - "compute_times": { - "prove": 5.902009887620807, - "total": 6.183570355176926, - "queued": 6.122612, - "clean_up": 0.0002631358802318573, - "file_setup": 0.26931122317910194, - "save_results": 0.0026443954557180405, - "generate_witness_c": 0.009012777358293533 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, + "compute_times": { + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", - "circuit_name": "circom-multiplier2", - "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:33.921Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.160198S", - "compute_times": { - "prove": 5.963096780702472, - "total": 6.232641618698835, - "queued": 0.650062, - "clean_up": 0.00031645968556404114, - "file_setup": 0.24531847052276134, - "save_results": 0.003001151606440544, - "generate_witness_c": 0.020530829206109047 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, + "compute_times": { + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", - "circuit_name": "circom-multiplier2", - "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:52.815Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.175574S", - "compute_times": { - "prove": 5.9231167789548635, - "total": 6.24663576297462, - "queued": 0.698281, - "clean_up": 0.0002771075814962387, - "file_setup": 0.29058355651795864, - "save_results": 0.002341846004128456, - "generate_witness_c": 0.029908066615462303 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, + "compute_times": { + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", - "circuit_name": "circom-multiplier2", - "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:19.052Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.115018S", - "compute_times": { - "prove": 5.91022140905261, - "total": 6.194757051765919, - "queued": 0.684503, - "clean_up": 0.00032767653465270996, - "file_setup": 0.2622530199587345, - "save_results": 0.003049323335289955, - "generate_witness_c": 0.018631482496857643 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, + "compute_times": { + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", - "circuit_name": "circom-multiplier2", - "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:21:13.615Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.117480S", - "compute_times": { - "prove": 5.914364781230688, - "total": 6.191053604707122, - "queued": 15.514631, - "clean_up": 0.00021071918308734894, - "file_setup": 0.24732953310012817, - "save_results": 0.0019527468830347061, - "generate_witness_c": 0.026822445914149284 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, + "compute_times": { + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "142576", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", - "body": "", - "status": 200, - "response": [ + }, { - "proof_id": "7206a741-eb14-4b4d-9df8-34d4573a671c", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T20:50:03.892Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.157652S", - "compute_times": { - "prove": 6.974535636603832, - "total": 7.280014621093869, - "queued": 0.699272, - "clean_up": 0.0002770274877548218, - "file_setup": 0.29124958999454975, - "save_results": 0.0023470818996429443, - "generate_witness_c": 0.011234406381845474 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, + "compute_times": { + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "0e78c891-40bf-42e3-bd3f-9ed15ab294f0", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T18:55:20.740Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.626586S", - "compute_times": { - "prove": 6.398727452382445, - "total": 6.695585208013654, - "queued": 0.700341, - "clean_up": 0.00033893808722496033, - "file_setup": 0.2777874078601599, - "save_results": 0.003003843128681183, - "generate_witness_c": 0.015339698642492294 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.18", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,5,7-31,33-63,68-95,97-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,6,32,64-67,96", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-e16b8d72-c644-fe31-8ecb-7760d3065b46", - "driver": "525.125.06", - "serial": "1325021030241", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, + "compute_times": { + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "9d5192cc-1409-4d2f-9396-41caf8f29fe7", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", - "circuit_type": "circom", - "date_created": "2024-01-16T18:52:27.137Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.899607S", - "compute_times": { - "prove": 6.709071487188339, - "total": 6.967682661488652, - "queued": 0.743436, - "clean_up": 0.00023915618658065796, - "file_setup": 0.2436655443161726, - "save_results": 0.0022156648337841034, - "generate_witness_c": 0.012174580246210098 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, + "compute_times": { + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "c67272e2-9303-477b-8334-654e9254a644", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", - "circuit_type": "circom", - "date_created": "2024-01-16T18:42:04.008Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.841297S", - "compute_times": { - "prove": 6.633739210665226, - "total": 6.908717390149832, - "queued": 19.305507, - "clean_up": 0.0003377869725227356, - "file_setup": 0.2361250314861536, - "save_results": 0.003197876736521721, - "generate_witness_c": 0.034953245893120766 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, + "compute_times": { + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "03724588-b4a1-43c0-850b-098764b7950d", - "circuit_name": "circom-multiplier2", - "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.482Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.312271S", - "compute_times": { - "prove": 0.3462319001555443, - "total": 2.3874263800680637, - "queued": 12.962683, - "clean_up": 0.0004112236201763153, - "file_setup": 0.7245128508657217, - "save_results": 0.1826412994414568, - "generate_witness_c": 1.133329700678587 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-4,6-31,36-68,70-95,100-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "5,32-35,69,96-99", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, + "compute_times": { + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "91bd2c4c-c595-4b96-8575-029e389492ca", - "circuit_name": "circom-multiplier2", - "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.101Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.429888S", - "compute_times": { - "prove": 0.6376615725457668, - "total": 2.5025347154587507, - "queued": 8.956946, - "clean_up": 0.0003598276525735855, - "file_setup": 0.7227823697030544, - "save_results": 0.18274421244859695, - "generate_witness_c": 0.9586518034338951 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, + "compute_times": { + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "81720f66-b35d-4928-9cb3-0ab9822e35c6", - "circuit_name": "circom-multiplier2", - "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:34.090Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.293048S", - "compute_times": { - "prove": 0.3393626883625984, - "total": 2.3659547176212072, - "queued": 7.751341, - "clean_up": 0.00032026320695877075, - "file_setup": 0.7235073558986187, - "save_results": 0.18249027617275715, - "generate_witness_c": 1.1200690548866987 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, + "compute_times": { + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "0c041b4a-cb98-4972-b274-18350f453414", - "circuit_name": "circom-multiplier2", - "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:33.577Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.087576S", - "compute_times": { - "prove": 0.40940901823341846, - "total": 3.1577404141426086, - "queued": 1.195321, - "clean_up": 0.00036599859595298767, - "file_setup": 0.8494507372379303, - "save_results": 0.18248247168958187, - "generate_witness_c": 1.7156950328499079 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, + "compute_times": { + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", - "circuit_name": "circom-multiplier2", - "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:36.311Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.092256S", - "compute_times": { - "prove": 0.36259699426591396, - "total": 2.1656957883387804, - "queued": 5.830407, - "clean_up": 0.0003967471420764923, - "file_setup": 0.6623526718467474, - "save_results": 0.18246298655867577, - "generate_witness_c": 0.9574985150247812 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, + "compute_times": { + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", - "circuit_name": "circom-multiplier2", - "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:34.880Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.002676S", - "compute_times": { - "prove": 0.40854700468480587, - "total": 3.068965345621109, - "queued": 2.266619, - "clean_up": 0.00030806101858615875, - "file_setup": 0.7846233639866114, - "save_results": 0.18261023424565792, - "generate_witness_c": 1.6924956049770117 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, + "compute_times": { + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", - "circuit_name": "circom-multiplier2", - "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:30.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.202003S", - "compute_times": { - "prove": 0.46431767754256725, - "total": 3.2886892426759005, - "queued": 1.201985, - "clean_up": 0.0002929028123617172, - "file_setup": 0.8507254235446453, - "save_results": 0.18203313648700714, - "generate_witness_c": 1.7910168208181858 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, + "compute_times": { + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", - "circuit_name": "circom-multiplier2", - "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", - "circuit_type": "circom", - "date_created": "2024-01-15T13:29:09.850Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.165555S", - "compute_times": { - "prove": 0.39277893863618374, - "total": 3.2604714408516884, - "queued": 1.166733, - "clean_up": 0.000250350683927536, - "file_setup": 0.9157394412904978, - "save_results": 0.1821883488446474, - "generate_witness_c": 1.7691551242023706 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, + "compute_times": { + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", - "circuit_name": "circom-multiplier2", - "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", - "circuit_type": "circom", - "date_created": "2024-01-15T12:58:03.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.952523S", - "compute_times": { - "prove": 5.78664686344564, - "total": 6.02712868899107, - "queued": 19.881766, - "clean_up": 0.000322168692946434, - "file_setup": 0.22792908176779747, - "save_results": 0.0026133283972740173, - "generate_witness_c": 0.009340517222881317 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, + "compute_times": { + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", - "circuit_name": "circom-multiplier2", - "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", - "circuit_type": "circom", - "date_created": "2024-01-15T12:58:00.883Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.075331S", - "compute_times": { - "prove": 5.884085742756724, - "total": 6.148683849722147, - "queued": 15.626844, - "clean_up": 0.0003361683338880539, - "file_setup": 0.25031704641878605, - "save_results": 0.0027868077158927917, - "generate_witness_c": 0.010888265445828438 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, + "compute_times": { + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", - "circuit_name": "circom-multiplier2", - "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:55.709Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.347161S", - "compute_times": { - "prove": 6.171584198251367, - "total": 6.416391229256988, - "queued": 13.397523, - "clean_up": 0.00026652775704860687, - "file_setup": 0.23340564966201782, - "save_results": 0.0024722814559936523, - "generate_witness_c": 0.008305234834551811 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, + "compute_times": { + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", - "circuit_name": "circom-multiplier2", - "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:48.596Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.389301S", - "compute_times": { - "prove": 6.184801682829857, - "total": 6.4623388685286045, - "queued": 13.056683, - "clean_up": 0.00022029876708984375, - "file_setup": 0.2468203753232956, - "save_results": 0.002211831510066986, - "generate_witness_c": 0.027915021404623985 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, + "compute_times": { + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", - "circuit_name": "circom-multiplier2", - "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:34.540Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.935803S", - "compute_times": { - "prove": 3.0700035598129034, - "total": 4.0028952937573195, - "queued": 0.33355, - "clean_up": 0.0002639107406139374, - "file_setup": 0.27034700475633144, - "save_results": 0.06622319296002388, - "generate_witness_c": 0.5958553366363049 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, + "compute_times": { + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", - "circuit_name": "circom-multiplier2", - "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:29.773Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.856164S", - "compute_times": { - "prove": 5.639464415609837, - "total": 5.929233264178038, - "queued": 0.650797, - "clean_up": 0.00027068890631198883, - "file_setup": 0.25932174175977707, - "save_results": 0.0027653388679027557, - "generate_witness_c": 0.02706645056605339 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, + "compute_times": { + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", - "circuit_name": "circom-multiplier2", - "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:24.790Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.340675S", - "compute_times": { - "prove": 1.4024820234626532, - "total": 2.4250366389751434, - "queued": 0.269107, - "clean_up": 0.0002933405339717865, - "file_setup": 0.3153865169733763, - "save_results": 0.06680999137461185, - "generate_witness_c": 0.6396786384284496 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, + "compute_times": { + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", - "circuit_name": "circom-multiplier2", - "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:20.359Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.889013S", - "compute_times": { - "prove": 5.641947815194726, - "total": 5.964788755401969, - "queued": 0.707221, - "clean_up": 0.00029845722019672394, - "file_setup": 0.2756399307399988, - "save_results": 0.003031056374311447, - "generate_witness_c": 0.04360153712332249 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, + "compute_times": { + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", - "circuit_name": "circom-multiplier2", - "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:24.129Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.822988S", - "compute_times": { - "prove": 5.622058680281043, - "total": 5.897718669846654, - "queued": 7.598676, - "clean_up": 0.00030495598912239075, - "file_setup": 0.26278817281126976, - "save_results": 0.0033362358808517456, - "generate_witness_c": 0.008939847350120544 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, + "compute_times": { + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", - "circuit_name": "circom-multiplier2", - "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:23.768Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.857713S", - "compute_times": { - "prove": 5.647087793797255, - "total": 5.9318443313241005, - "queued": 0.709273, - "clean_up": 0.000293998047709465, - "file_setup": 0.259655237197876, - "save_results": 0.0029127690941095352, - "generate_witness_c": 0.021628186106681824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, + "compute_times": { + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", - "circuit_name": "circom-multiplier2", - "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:39.549Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.830061S", - "compute_times": { - "prove": 5.631390610709786, - "total": 5.904656020924449, - "queued": 1.982144, - "clean_up": 0.00028679706156253815, - "file_setup": 0.2506247963756323, - "save_results": 0.0030198898166418076, - "generate_witness_c": 0.018950100988149643 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.549Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, + "compute_times": { + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", - "circuit_name": "circom-multiplier2", - "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:30.608Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.833596S", - "compute_times": { - "prove": 5.6385393515229225, - "total": 5.9040695410221815, - "queued": 0.701332, - "clean_up": 0.00033533573150634766, - "file_setup": 0.24379334598779678, - "save_results": 0.0030993279069662094, - "generate_witness_c": 0.017941521480679512 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, + "compute_times": { + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", - "circuit_name": "circom-multiplier2", - "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", - "circuit_type": "circom", - "date_created": "2024-01-15T02:01:17.976Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.847273S", - "compute_times": { - "prove": 5.660725159570575, - "total": 5.9144034665077925, - "queued": 0.696042, - "clean_up": 0.000287666916847229, - "file_setup": 0.2316605094820261, - "save_results": 0.0032375045120716095, - "generate_witness_c": 0.018273497000336647 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, + "compute_times": { + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", - "circuit_name": "circom-multiplier2", - "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", - "circuit_type": "circom", - "date_created": "2024-01-15T01:53:10.576Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.825130S", - "compute_times": { - "prove": 5.63365101441741, - "total": 5.900212554261088, - "queued": 8.137106, - "clean_up": 0.00022866018116474152, - "file_setup": 0.25481966882944107, - "save_results": 0.0027084313333034515, - "generate_witness_c": 0.008522702381014824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, + "compute_times": { + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", - "circuit_name": "circom-multiplier2", - "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", - "circuit_type": "circom", - "date_created": "2024-01-15T01:53:04.491Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.143579S", - "compute_times": { - "prove": 5.624820232391357, - "total": 6.217369062826037, - "queued": 6.939374, - "clean_up": 0.0002844296395778656, - "file_setup": 0.577876154333353, - "save_results": 0.002981366589665413, - "generate_witness_c": 0.011145314201712608 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, + "compute_times": { + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", - "circuit_name": "circom-multiplier2", - "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", - "circuit_type": "circom", - "date_created": "2024-01-15T01:53:00.837Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.826862S", - "compute_times": { - "prove": 5.6370560657233, - "total": 5.890984209254384, - "queued": 0.694293, - "clean_up": 0.00031204894185066223, - "file_setup": 0.23010724037885666, - "save_results": 0.0025510434061288834, - "generate_witness_c": 0.02062433399260044 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, + "compute_times": { + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", - "circuit_name": "circom-multiplier2", - "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:49.479Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.859514S", - "compute_times": { - "prove": 5.655713541433215, - "total": 5.953595075756311, - "queued": 0.693846, - "clean_up": 0.0002659261226654053, - "file_setup": 0.2661227900534868, - "save_results": 0.002224266529083252, - "generate_witness_c": 0.028907276690006256 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, + "compute_times": { + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", - "circuit_name": "circom-multiplier2", - "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:52.289Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.397579S", - "compute_times": { - "prove": 6.192587662488222, - "total": 6.465461192652583, - "queued": 9.005381, - "clean_up": 0.0004098862409591675, - "file_setup": 0.25517357513308525, - "save_results": 0.00757579505443573, - "generate_witness_c": 0.009418565779924393 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, + "compute_times": { + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", - "circuit_name": "circom-multiplier2", - "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:47.933Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.415701S", - "compute_times": { - "prove": 6.212794356048107, - "total": 6.486022163182497, - "queued": 5.792826, - "clean_up": 0.0002670474350452423, - "file_setup": 0.2612623367458582, - "save_results": 0.002615245059132576, - "generate_witness_c": 0.008822411298751831 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, + "compute_times": { + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", - "circuit_name": "circom-multiplier2", - "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:45.581Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.435592S", - "compute_times": { - "prove": 6.2201853562146425, - "total": 6.502878189086914, - "queued": 0.652189, - "clean_up": 0.00024727731943130493, - "file_setup": 0.2532728649675846, - "save_results": 0.0022235289216041565, - "generate_witness_c": 0.026703273877501488 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, + "compute_times": { + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", - "circuit_name": "circom-multiplier2", - "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:29.960Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.484678S", - "compute_times": { - "prove": 6.229190753772855, - "total": 6.550728781148791, - "queued": 0.657459, - "clean_up": 0.0002836957573890686, - "file_setup": 0.2656614538282156, - "save_results": 0.0025900565087795258, - "generate_witness_c": 0.052704716101288795 - }, - "file_sizes": { - "proof": 710, - "total": 716, - "public": 6, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, + "compute_times": { + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", - "circuit_name": "circom-multiplier2", - "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:35.809Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.078477S", - "compute_times": { - "prove": 5.902009887620807, - "total": 6.183570355176926, - "queued": 6.122612, - "clean_up": 0.0002631358802318573, - "file_setup": 0.26931122317910194, - "save_results": 0.0026443954557180405, - "generate_witness_c": 0.009012777358293533 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, + "compute_times": { + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", - "circuit_name": "circom-multiplier2", - "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:33.921Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.160198S", - "compute_times": { - "prove": 5.963096780702472, - "total": 6.232641618698835, - "queued": 0.650062, - "clean_up": 0.00031645968556404114, - "file_setup": 0.24531847052276134, - "save_results": 0.003001151606440544, - "generate_witness_c": 0.020530829206109047 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, + "compute_times": { + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", - "circuit_name": "circom-multiplier2", - "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:52.815Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.175574S", - "compute_times": { - "prove": 5.9231167789548635, - "total": 6.24663576297462, - "queued": 0.698281, - "clean_up": 0.0002771075814962387, - "file_setup": 0.29058355651795864, - "save_results": 0.002341846004128456, - "generate_witness_c": 0.029908066615462303 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, + "compute_times": { + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", - "circuit_name": "circom-multiplier2", - "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:19.052Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.115018S", - "compute_times": { - "prove": 5.91022140905261, - "total": 6.194757051765919, - "queued": 0.684503, - "clean_up": 0.00032767653465270996, - "file_setup": 0.2622530199587345, - "save_results": 0.003049323335289955, - "generate_witness_c": 0.018631482496857643 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, + "compute_times": { + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null }, { - "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", - "circuit_name": "circom-multiplier2", - "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:21:13.615Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.117480S", - "compute_times": { - "prove": 5.914364781230688, - "total": 6.191053604707122, - "queued": 15.514631, - "clean_up": 0.00021071918308734894, - "file_setup": 0.24732953310012817, - "save_results": 0.0019527468830347061, - "generate_witness_c": 0.026822445914149284 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, + "compute_times": { + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "142576", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:21 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/list?include_verification_key=false", - "body": "", - "status": 200, - "response": [ + }, { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, + "compute_times": { + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, + "compute_times": { + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, + "compute_times": { + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, + "compute_times": { + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, + "compute_times": { + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, "compute_times": { - "total": 0.0004401206970214844, - "queued": 1.179371 - }, - "file_sizes": { - "total": 493, - "total_gb": 4.93e-7, - "total_mb": 0.000493, - "code.tar.gz": 493 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "29fb3a82-1590-4be9-b70a-88f5984dc124", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-16T20:48:35.963Z", - "proving_scheme": "groth16", + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.844513S", - "compute_times": { - "total": 7.923681704327464, - "queued": 15.45273, - "clean_up": 0.01527201198041439, - "create_cpp": 0.06142416223883629, - "file_setup": 0.3039850164204836, - "compile_cpp": 4.784410445019603, - "create_r1cs": 0.03248248063027859, - "save_results": 0.005430160090327263, - "get_r1cs_info": 0.0006867349147796631, - "groth16_setup": 1.4019621182233095, - "export_verification_key": 1.3149166032671928, - "download_trusted_setup_file": 0.002530926838517189 - }, - "file_sizes": { - "total": 1720180, - "circuit": 221992, - "total_gb": 0.00172018, - "total_mb": 1.72018, - "circuit.dat": 6264, - "code.tar.gz": 1485443, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, + "compute_times": { + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-16T18:40:22.847Z", - "proving_scheme": "groth16", + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.646149S", - "compute_times": { - "total": 7.724423663690686, - "queued": 15.761971, - "clean_up": 0.014004472643136978, - "create_cpp": 0.05887523107230663, - "file_setup": 0.29307289980351925, - "compile_cpp": 4.618602339178324, - "create_r1cs": 0.030209284275770187, - "save_results": 0.005881253629922867, - "get_r1cs_info": 0.0006434936076402664, - "groth16_setup": 1.3945081308484077, - "export_verification_key": 1.3054639268666506, - "download_trusted_setup_file": 0.002590106800198555 - }, - "file_sizes": { - "total": 1720180, - "circuit": 221992, - "total_gb": 0.00172018, - "total_mb": 1.72018, - "circuit.dat": 6264, - "code.tar.gz": 1485443, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, + "compute_times": { + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-15T19:02:13.653Z", - "proving_scheme": "groth16", + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.610477S", - "compute_times": { - "total": 7.686040507629514, - "queued": 13.887033, - "clean_up": 0.012916117906570435, - "create_cpp": 0.07114601135253906, - "file_setup": 0.318003311753273, - "compile_cpp": 4.542702650651336, - "create_r1cs": 0.0307772196829319, - "save_results": 0.006008602678775787, - "get_r1cs_info": 0.0006719175726175308, - "groth16_setup": 1.3185164164751768, - "export_verification_key": 1.3821478076279163, - "download_trusted_setup_file": 0.0025328118354082108 - }, - "file_sizes": { - "total": 1719978, - "circuit": 221992, - "total_gb": 0.001719978, - "total_mb": 1.719978, - "circuit.dat": 6264, - "code.tar.gz": 1485241, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, + "compute_times": { + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:28.205Z", - "proving_scheme": "groth16", + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.747574S", - "compute_times": { - "total": 4.78177017706912, - "queued": 5.016909, - "clean_up": 0.0004598660161718726, - "create_cpp": 0.030555953970178962, - "file_setup": 0.20548532891552895, - "compile_cpp": 2.9665471400367096, - "create_r1cs": 0.00540319096762687, - "save_results": 0.0024345499696210027, - "get_r1cs_info": 0.0003199470229446888, - "groth16_setup": 0.7762336740270257, - "export_verification_key": 0.7933770680101588, - "download_trusted_setup_file": 0.000703481025993824 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, + "compute_times": { + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:27.776Z", - "proving_scheme": "groth16", + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M06.629298S", - "compute_times": { - "total": 6.6755576292052865, - "queued": 1.176057, - "clean_up": 0.0018914993852376938, - "create_cpp": 0.05316939204931259, - "file_setup": 0.22646267898380756, - "compile_cpp": 4.249306512996554, - "create_r1cs": 0.017062108032405376, - "save_results": 0.030750948935747147, - "get_r1cs_info": 0.0009490260854363441, - "groth16_setup": 1.0647103870287538, - "export_verification_key": 1.028034188784659, - "download_trusted_setup_file": 0.0026015527546405792 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "32", - "BogoMIPS:": "6400.00", - "L2 cache:": "16 MiB (16 instances)", - "L3 cache:": "49.5 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "512 KiB (16 instances)", - "L1i cache:": "512 KiB (16 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "8", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0-31", - "Vulnerability Srbds:": "Not affected", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, + "compute_times": { + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:27.371Z", - "proving_scheme": "groth16", + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M05.028025S", - "compute_times": { - "total": 5.060947331017815, - "queued": 1.002764, - "clean_up": 0.0005010430468246341, - "create_cpp": 0.030848323018290102, - "file_setup": 0.3499931499827653, - "compile_cpp": 2.9625711779808626, - "create_r1cs": 0.005965905962511897, - "save_results": 0.0023849039571359754, - "get_r1cs_info": 0.0003329960163682699, - "groth16_setup": 0.8954589819768444, - "export_verification_key": 0.8118982950691134, - "download_trusted_setup_file": 0.000777014996856451 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, + "compute_times": { + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:27.344Z", - "proving_scheme": "groth16", + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.938049S", - "compute_times": { - "total": 4.9735322810010985, - "queued": 0.972193, - "clean_up": 0.0004673229996114969, - "create_cpp": 0.029697786085307598, - "file_setup": 0.18970869795884937, - "compile_cpp": 3.0105657579842955, - "create_r1cs": 0.005213497905060649, - "save_results": 0.0022177600767463446, - "get_r1cs_info": 0.0002456710208207369, - "groth16_setup": 0.884783201967366, - "export_verification_key": 0.8496285049477592, - "download_trusted_setup_file": 0.0007285490864887834 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, + "compute_times": { + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:26.518Z", - "proving_scheme": "groth16", + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.816702S", - "compute_times": { - "total": 4.8482058160007, - "queued": 0.906488, - "clean_up": 0.0006248310673981905, - "create_cpp": 0.02985287399496883, - "file_setup": 0.19871655595488846, - "compile_cpp": 2.975329626002349, - "create_r1cs": 0.005557317053899169, - "save_results": 0.007954819942824543, - "get_r1cs_info": 0.00032641494181007147, - "groth16_setup": 0.7642357499571517, - "export_verification_key": 0.8646354200318456, - "download_trusted_setup_file": 0.0007459390908479691 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, + "compute_times": { + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:26.040Z", - "proving_scheme": "groth16", + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.255852S", - "compute_times": { - "total": 8.342214539647102, - "queued": 1.207576, - "clean_up": 0.001900574192404747, - "create_cpp": 0.048632413148880005, - "file_setup": 0.29853893630206585, - "compile_cpp": 4.7833232916891575, - "create_r1cs": 0.010217664763331413, - "save_results": 0.006458930671215057, - "get_r1cs_info": 0.00041519850492477417, - "groth16_setup": 1.685638464987278, - "export_verification_key": 1.505559166893363, - "download_trusted_setup_file": 0.001057775691151619 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, + "compute_times": { + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:25.692Z", - "proving_scheme": "groth16", + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.989370S", - "compute_times": { - "total": 8.078493990004063, - "queued": 1.082236, - "clean_up": 0.0013379640877246857, - "create_cpp": 0.046086084097623825, - "file_setup": 0.26662280783057213, - "compile_cpp": 4.741464577615261, - "create_r1cs": 0.010393906384706497, - "save_results": 0.004450704902410507, - "get_r1cs_info": 0.0003890320658683777, - "groth16_setup": 1.424798371270299, - "export_verification_key": 1.581564825028181, - "download_trusted_setup_file": 0.0009499248117208481 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, + "compute_times": { + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:25.616Z", - "proving_scheme": "groth16", + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.171096S", - "compute_times": { - "total": 8.264494920149446, - "queued": 1.091233, - "clean_up": 0.0011752620339393616, - "create_cpp": 0.047388264909386635, - "file_setup": 0.2554698046296835, - "compile_cpp": 5.00205560401082, - "create_r1cs": 0.016951866447925568, - "save_results": 0.004460513591766357, - "get_r1cs_info": 0.0007659532129764557, - "groth16_setup": 1.5022341907024384, - "export_verification_key": 1.43130037561059, - "download_trusted_setup_file": 0.0023894812911748886 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, + "compute_times": { + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:24.753Z", - "proving_scheme": "groth16", + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.002611S", - "compute_times": { - "total": 8.10809656791389, - "queued": 1.196517, - "clean_up": 0.0010557789355516434, - "create_cpp": 0.04669773019850254, - "file_setup": 0.29523342847824097, - "compile_cpp": 4.564519450068474, - "create_r1cs": 0.018192801624536514, - "save_results": 0.005101308226585388, - "get_r1cs_info": 0.0006758365780115128, - "groth16_setup": 1.4404480885714293, - "export_verification_key": 1.733376519754529, - "download_trusted_setup_file": 0.0023900754749774933 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, + "compute_times": { + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:31:24.744Z", - "proving_scheme": "groth16", + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.974658S", - "compute_times": { - "total": 8.07497458346188, - "queued": 1.213266, - "clean_up": 0.0014442000538110733, - "create_cpp": 0.04963418282568455, - "file_setup": 0.2647697776556015, - "compile_cpp": 4.544425489380956, - "create_r1cs": 0.009241640567779541, - "save_results": 0.0048146117478609085, - "get_r1cs_info": 0.00042194314301013947, - "groth16_setup": 1.4614581391215324, - "export_verification_key": 1.737057751044631, - "download_trusted_setup_file": 0.00112207792699337 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, + "compute_times": { + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "9bbe03cb-c39f-42df-b91c-ad40785769a7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.977Z", - "proving_scheme": "groth16", + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.046214S", - "compute_times": { - "total": 8.123173575848341, - "queued": 37.732277, - "clean_up": 0.0018738601356744766, - "create_cpp": 0.05183893069624901, - "file_setup": 0.2543136142194271, - "compile_cpp": 4.950523996725678, - "create_r1cs": 0.015572600066661835, - "save_results": 0.005953660234808922, - "get_r1cs_info": 0.0006317459046840668, - "groth16_setup": 1.518635692074895, - "export_verification_key": 1.321570660918951, - "download_trusted_setup_file": 0.0017584580928087234 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, + "compute_times": { + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c0575a32-e974-4036-8343-02890b5dd43f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.276Z", - "proving_scheme": "groth16", + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.025239S", - "compute_times": { - "total": 8.103251675143838, - "queued": 37.071617, - "clean_up": 0.0019434932619333267, - "create_cpp": 0.05545089207589626, - "file_setup": 0.2586412336677313, - "compile_cpp": 4.959581568837166, - "create_r1cs": 0.017252666875720024, - "save_results": 0.005369381979107857, - "get_r1cs_info": 0.0007654130458831787, - "groth16_setup": 1.369353175163269, - "export_verification_key": 1.4320305939763784, - "download_trusted_setup_file": 0.0025755316019058228 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, + "compute_times": { + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.179Z", - "proving_scheme": "groth16", + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.049708S", - "compute_times": { - "total": 8.133471051231027, - "queued": 33.561144, - "clean_up": 0.001717088744044304, - "create_cpp": 0.04866603575646877, - "file_setup": 0.239702383056283, - "compile_cpp": 5.001192836090922, - "create_r1cs": 0.009522216394543648, - "save_results": 0.006353143602609634, - "get_r1cs_info": 0.000697137787938118, - "groth16_setup": 1.4610587637871504, - "export_verification_key": 1.361605390906334, - "download_trusted_setup_file": 0.002519451081752777 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, + "compute_times": { + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.099Z", - "proving_scheme": "groth16", + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.940388S", - "compute_times": { - "total": 8.01799102500081, - "queued": 32.362319, - "clean_up": 0.001860274001955986, - "create_cpp": 0.05603296309709549, - "file_setup": 0.24690320529043674, - "compile_cpp": 4.9119456727057695, - "create_r1cs": 0.009936073794960976, - "save_results": 0.005414023995399475, - "get_r1cs_info": 0.0005574170500040054, - "groth16_setup": 1.3544788006693125, - "export_verification_key": 1.4287667162716389, - "download_trusted_setup_file": 0.0015699360519647598 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, + "compute_times": { + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fb643fa2-c0d1-43c0-b005-e94ecc364e81", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:52.239Z", - "proving_scheme": "groth16", + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.931796S", - "compute_times": { - "total": 8.004282549023628, - "queued": 30.380939, - "clean_up": 0.003405677154660225, - "create_cpp": 0.04673151113092899, - "file_setup": 0.27263920940458775, - "compile_cpp": 4.911707244813442, - "create_r1cs": 0.017409181222319603, - "save_results": 0.007333524525165558, - "get_r1cs_info": 0.00041870400309562683, - "groth16_setup": 1.4117986112833023, - "export_verification_key": 1.330976827070117, - "download_trusted_setup_file": 0.001385936513543129 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, + "compute_times": { + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:51.703Z", - "proving_scheme": "groth16", + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.805326S", - "compute_times": { - "total": 7.880803409963846, - "queued": 29.627509, - "clean_up": 0.0018093828111886978, - "create_cpp": 0.04843143746256828, - "file_setup": 0.2650751415640116, - "compile_cpp": 4.736435519531369, - "create_r1cs": 0.01788560301065445, - "save_results": 0.0059021469205617905, - "get_r1cs_info": 0.00045815669000148773, - "groth16_setup": 1.429807098582387, - "export_verification_key": 1.3734482415020466, - "download_trusted_setup_file": 0.0011302679777145386 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, + "compute_times": { + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ef0f5d45-cc4a-44dc-bbcc-68cec83e7279", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:51.482Z", - "proving_scheme": "groth16", + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.567289S", - "compute_times": { - "total": 7.648521225899458, - "queued": 26.571096, - "clean_up": 0.001760430634021759, - "create_cpp": 0.05707797780632973, - "file_setup": 0.25215250812470913, - "compile_cpp": 4.578133208677173, - "create_r1cs": 0.016807612031698227, - "save_results": 0.005696004256606102, - "get_r1cs_info": 0.0005241129547357559, - "groth16_setup": 1.3513143379241228, - "export_verification_key": 1.3831868078559637, - "download_trusted_setup_file": 0.001370033249258995 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, + "compute_times": { + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "aa53da22-0b0e-4a8e-859e-fccdac3b504b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:51.339Z", - "proving_scheme": "groth16", + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.705618S", - "compute_times": { - "total": 7.775683760643005, - "queued": 17.802545, - "clean_up": 0.0016981493681669235, - "create_cpp": 0.04159858077764511, - "file_setup": 0.2633522041141987, - "compile_cpp": 4.702255232259631, - "create_r1cs": 0.016227660700678825, - "save_results": 0.006025375798344612, - "get_r1cs_info": 0.0004564579576253891, - "groth16_setup": 1.386870777234435, - "export_verification_key": 1.355175631120801, - "download_trusted_setup_file": 0.0015500187873840332 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, + "compute_times": { + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:50.820Z", - "proving_scheme": "groth16", + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.571579S", - "compute_times": { - "total": 7.648920483887196, - "queued": 9.579982, - "clean_up": 0.0016354341059923172, - "create_cpp": 0.04483112692832947, - "file_setup": 0.25358958914875984, - "compile_cpp": 4.433619428426027, - "create_r1cs": 0.015889232978224754, - "save_results": 0.02785000577569008, - "get_r1cs_info": 0.0006279703229665756, - "groth16_setup": 1.4690972827374935, - "export_verification_key": 1.3993326891213655, - "download_trusted_setup_file": 0.00199044868350029 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, + "compute_times": { + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d277da2b-a725-479a-a7b5-45d7faaade8c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T13:28:50.187Z", - "proving_scheme": "groth16", + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.506613S", - "compute_times": { - "total": 7.5880236234515905, - "queued": 1.494971, - "clean_up": 0.001649005338549614, - "create_cpp": 0.0485001876950264, - "file_setup": 0.2546906843781471, - "compile_cpp": 4.532622603699565, - "create_r1cs": 0.017625445500016212, - "save_results": 0.006649702787399292, - "get_r1cs_info": 0.000700976699590683, - "groth16_setup": 1.304074052721262, - "export_verification_key": 1.4185661766678095, - "download_trusted_setup_file": 0.0024695247411727905 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, + "compute_times": { + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7e87dad2-322f-4d95-8e15-98ae32d5b826", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:14.415Z", - "proving_scheme": "groth16", + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M09.377530S", - "compute_times": { - "total": 9.451860029250383, - "queued": 40.689702, - "clean_up": 0.0017610322684049606, - "create_cpp": 0.039578983560204506, - "file_setup": 0.24412750452756882, - "compile_cpp": 6.24841209128499, - "create_r1cs": 0.009235382080078125, - "save_results": 0.006292244419455528, - "get_r1cs_info": 0.000551098957657814, - "groth16_setup": 1.5359418783336878, - "export_verification_key": 1.3637649361044168, - "download_trusted_setup_file": 0.0016706939786672592 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, + "compute_times": { + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4a19fd18-26a5-4539-8450-fdc3c57ed2e6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.901Z", - "proving_scheme": "groth16", + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.557773S", - "compute_times": { - "total": 8.646001007407904, - "queued": 40.098382, - "clean_up": 0.0008681099861860275, - "create_cpp": 0.04919867962598801, - "file_setup": 0.2636448033154011, - "compile_cpp": 5.393070332705975, - "create_r1cs": 0.01822390779852867, - "save_results": 0.004401525482535362, - "get_r1cs_info": 0.0008187666535377502, - "groth16_setup": 1.5381991360336542, - "export_verification_key": 1.3743581157177687, - "download_trusted_setup_file": 0.0025259219110012054 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, + "compute_times": { + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.697Z", - "proving_scheme": "groth16", + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.013795S", - "compute_times": { - "total": 8.088545773178339, - "queued": 40.279611, - "clean_up": 0.0012215152382850647, - "create_cpp": 0.05022146739065647, - "file_setup": 0.26072706654667854, - "compile_cpp": 5.073584912344813, - "create_r1cs": 0.01825350522994995, - "save_results": 0.004272386431694031, - "get_r1cs_info": 0.0007919874042272568, - "groth16_setup": 1.3669961635023355, - "export_verification_key": 1.3096041847020388, - "download_trusted_setup_file": 0.0024598315358161926 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, + "compute_times": { + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.508Z", - "proving_scheme": "groth16", + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.156157S", - "compute_times": { - "total": 8.234552638605237, - "queued": 37.671742, - "clean_up": 0.001722807064652443, - "create_cpp": 0.04674012400209904, - "file_setup": 0.24939687177538872, - "compile_cpp": 5.042005067691207, - "create_r1cs": 0.018849780783057213, - "save_results": 0.0057501643896102905, - "get_r1cs_info": 0.0007910709828138351, - "groth16_setup": 1.4699617084115744, - "export_verification_key": 1.396314723417163, - "download_trusted_setup_file": 0.002504836767911911 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, + "compute_times": { + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f6935d07-74b9-4eaa-917a-dd40eb8c3eb5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.072Z", - "proving_scheme": "groth16", + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.484689S", - "compute_times": { - "total": 8.550514187663794, - "queued": 35.796557, - "clean_up": 0.001462932676076889, - "create_cpp": 0.04712385684251785, - "file_setup": 0.22329718619585037, - "compile_cpp": 5.446879722177982, - "create_r1cs": 0.01579388603568077, - "save_results": 0.012278709560632706, - "get_r1cs_info": 0.0005889721214771271, - "groth16_setup": 1.4639050755649805, - "export_verification_key": 1.3370745498687029, - "download_trusted_setup_file": 0.001513822004199028 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, + "compute_times": { + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:12.326Z", - "proving_scheme": "groth16", + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:14.150Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.840774S", - "compute_times": { - "total": 7.925517087802291, - "queued": 33.768323, - "clean_up": 0.0019125081598758698, - "create_cpp": 0.0470704510807991, - "file_setup": 0.25080676563084126, - "compile_cpp": 4.833130354061723, - "create_r1cs": 0.017199259251356125, - "save_results": 0.0060319844633340836, - "get_r1cs_info": 0.0008542612195014954, - "groth16_setup": 1.3945932500064373, - "export_verification_key": 1.3710776213556528, - "download_trusted_setup_file": 0.002456527203321457 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, + "compute_times": { + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "946b487f-afc3-4bce-aaae-aa306a76c11e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:12.265Z", - "proving_scheme": "groth16", + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:12.520Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.802354S", - "compute_times": { - "total": 7.876622410491109, - "queued": 32.510341, - "clean_up": 0.0016722455620765686, - "create_cpp": 0.047051187604665756, - "file_setup": 0.24521219171583652, - "compile_cpp": 4.761473456397653, - "create_r1cs": 0.01887539029121399, - "save_results": 0.005280636250972748, - "get_r1cs_info": 0.0006754584610462189, - "groth16_setup": 1.3808959163725376, - "export_verification_key": 1.4123545419424772, - "download_trusted_setup_file": 0.0024936143308877945 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, + "compute_times": { + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:12.235Z", - "proving_scheme": "groth16", + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:10.959Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.715939S", - "compute_times": { - "total": 7.792726593092084, - "queued": 27.774632, - "clean_up": 0.0008173845708370209, - "create_cpp": 0.04740807227790356, - "file_setup": 0.24712751060724258, - "compile_cpp": 4.673818884417415, - "create_r1cs": 0.01585347205400467, - "save_results": 0.005448015406727791, - "get_r1cs_info": 0.0006210263818502426, - "groth16_setup": 1.4341732878237963, - "export_verification_key": 1.3649929203093052, - "download_trusted_setup_file": 0.001871241256594658 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, + "compute_times": { + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a8fe6c7b-48d4-4d31-9357-d7d9a184b933", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:11.316Z", - "proving_scheme": "groth16", + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:09.368Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.241682S", - "compute_times": { - "total": 8.319445628672838, - "queued": 25.35184, - "clean_up": 0.0016656406223773956, - "create_cpp": 0.047069305554032326, - "file_setup": 0.24678357504308224, - "compile_cpp": 5.164380734786391, - "create_r1cs": 0.017509033903479576, - "save_results": 0.0056435465812683105, - "get_r1cs_info": 0.000514056533575058, - "groth16_setup": 1.471221825107932, - "export_verification_key": 1.3627644162625074, - "download_trusted_setup_file": 0.001434769481420517 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, + "compute_times": { + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8dd11963-c9e5-4610-b47e-06e1a6721b7b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:11.310Z", - "proving_scheme": "groth16", + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:07.782Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.516111S", - "compute_times": { - "total": 7.592797514051199, - "queued": 16.636252, - "clean_up": 0.00167083740234375, - "create_cpp": 0.05534513108432293, - "file_setup": 0.24897748976945877, - "compile_cpp": 4.495417779311538, - "create_r1cs": 0.01559985987842083, - "save_results": 0.005447791889309883, - "get_r1cs_info": 0.0003331173211336136, - "groth16_setup": 1.3702464755624533, - "export_verification_key": 1.3981607723981142, - "download_trusted_setup_file": 0.0010023191571235657 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, + "compute_times": { + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "17fa8218-c2f7-4e58-9490-ab5f57ec84cf", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:13.061Z", - "proving_scheme": "groth16", + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:06.214Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.636293S", - "compute_times": { - "total": 7.71372976899147, - "queued": 15.303177, - "clean_up": 0.0018192771822214127, - "create_cpp": 0.04809073731303215, - "file_setup": 0.2711461931467056, - "compile_cpp": 4.684678319841623, - "create_r1cs": 0.010924961417913437, - "save_results": 0.005295315757393837, - "get_r1cs_info": 0.0006762687116861343, - "groth16_setup": 1.3283091206103563, - "export_verification_key": 1.359778843820095, - "download_trusted_setup_file": 0.00243326835334301 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, + "compute_times": { + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:12.338Z", - "proving_scheme": "groth16", + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:04.623Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.673188S", - "compute_times": { - "total": 4.704905105987564, - "queued": 15.967736, - "clean_up": 0.0005092429928481579, - "create_cpp": 0.030301433987915516, - "file_setup": 0.17748972598928958, - "compile_cpp": 2.933968245051801, - "create_r1cs": 0.005270819994620979, - "save_results": 0.0024895829847082496, - "get_r1cs_info": 0.0002773590385913849, - "groth16_setup": 0.7643708229297772, - "export_verification_key": 0.7893407850060612, - "download_trusted_setup_file": 0.0007287419866770506 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, + "compute_times": { + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "12ae269c-cfa3-4132-ba3e-c623ce2e22c8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:12.206Z", - "proving_scheme": "groth16", + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:03.050Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.807982S", - "compute_times": { - "total": 7.882879471406341, - "queued": 8.13048, - "clean_up": 0.0016283374279737473, - "create_cpp": 0.0489681139588356, - "file_setup": 0.2604731395840645, - "compile_cpp": 4.725069401785731, - "create_r1cs": 0.01646772027015686, - "save_results": 0.005680175498127937, - "get_r1cs_info": 0.0007954202592372894, - "groth16_setup": 1.4267123583704233, - "export_verification_key": 1.3941872529685497, - "download_trusted_setup_file": 0.0024522673338651657 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, + "compute_times": { + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:12.153Z", - "proving_scheme": "groth16", + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:01.474Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.684574S", - "compute_times": { - "total": 7.763364655897021, - "queued": 8.156539, - "clean_up": 0.0008707121014595032, - "create_cpp": 0.04779571294784546, - "file_setup": 0.26266710832715034, - "compile_cpp": 4.542561935260892, - "create_r1cs": 0.049717847257852554, - "save_results": 0.0047896187752485275, - "get_r1cs_info": 0.0007063969969749451, - "groth16_setup": 1.432243825867772, - "export_verification_key": 1.4190982822328806, - "download_trusted_setup_file": 0.0024577490985393524 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, + "compute_times": { + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:11.234Z", - "proving_scheme": "groth16", + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:59.935Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.668960S", - "compute_times": { - "total": 4.70031307998579, - "queued": 7.067504, - "clean_up": 0.0005026600556448102, - "create_cpp": 0.030464475974440575, - "file_setup": 0.18320538906846195, - "compile_cpp": 2.9281170460162684, - "create_r1cs": 0.00510658894199878, - "save_results": 0.002476120018400252, - "get_r1cs_info": 0.00033819000236690044, - "groth16_setup": 0.7497855660039932, - "export_verification_key": 0.7994677489623427, - "download_trusted_setup_file": 0.0006945140194147825 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, + "compute_times": { + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1d85f8c0-a58c-491e-9d17-4ce07902f6be", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:11.224Z", - "proving_scheme": "groth16", + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:58.407Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.392307S", - "compute_times": { - "total": 7.469517232850194, - "queued": 8.534181, - "clean_up": 0.001875605434179306, - "create_cpp": 0.053479813039302826, - "file_setup": 0.22859745100140572, - "compile_cpp": 4.603027116507292, - "create_r1cs": 0.010996641591191292, - "save_results": 0.005396205931901932, - "get_r1cs_info": 0.0006968453526496887, - "groth16_setup": 1.3165561687201262, - "export_verification_key": 1.2459994573146105, - "download_trusted_setup_file": 0.002440648153424263 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, + "compute_times": { + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8ce7821a-ac27-47d4-b226-4fc1757f0a30", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:10.585Z", - "proving_scheme": "groth16", + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:56.860Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.604279S", - "compute_times": { - "total": 4.635603144066408, - "queued": 0.97709, - "clean_up": 0.00047702505253255367, - "create_cpp": 0.030288457055576146, - "file_setup": 0.19134966598358005, - "compile_cpp": 2.92873600195162, - "create_r1cs": 0.005112337996251881, - "save_results": 0.003062595962546766, - "get_r1cs_info": 0.0002235310385003686, - "groth16_setup": 0.70648637204431, - "export_verification_key": 0.7690231120213866, - "download_trusted_setup_file": 0.000696779927238822 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, + "compute_times": { + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:10.148Z", - "proving_scheme": "groth16", + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:55.316Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.670361S", - "compute_times": { - "total": 7.7598298992961645, - "queued": 1.340101, - "clean_up": 0.0019132401794195175, - "create_cpp": 0.047642480581998825, - "file_setup": 0.28451264277100563, - "compile_cpp": 4.557841159403324, - "create_r1cs": 0.01719365455210209, - "save_results": 0.00552779994904995, - "get_r1cs_info": 0.0007379818707704544, - "groth16_setup": 1.4282774832099676, - "export_verification_key": 1.4133095126599073, - "download_trusted_setup_file": 0.002416664734482765 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, + "compute_times": { + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "44c0f928-5c25-4bc0-a78f-1523c457f5af", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:10.140Z", - "proving_scheme": "groth16", + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:53.766Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.658778S", - "compute_times": { - "total": 7.742852771654725, - "queued": 1.336022, - "clean_up": 0.0016133859753608704, - "create_cpp": 0.05547862686216831, - "file_setup": 0.29617039300501347, - "compile_cpp": 4.542897034436464, - "create_r1cs": 0.017181839793920517, - "save_results": 0.0058561451733112335, - "get_r1cs_info": 0.0004195272922515869, - "groth16_setup": 1.408520732074976, - "export_verification_key": 1.4131443835794926, - "download_trusted_setup_file": 0.0012377090752124786 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, + "compute_times": { + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "123f913d-504d-4246-8d29-85a68b8f685c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:09.711Z", - "proving_scheme": "groth16", + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:52.213Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.738898S", - "compute_times": { - "total": 7.813894247636199, - "queued": 1.100992, - "clean_up": 0.0010037794709205627, - "create_cpp": 0.04616817645728588, - "file_setup": 0.24978489242494106, - "compile_cpp": 4.788679093122482, - "create_r1cs": 0.016563747078180313, - "save_results": 0.004571622237563133, - "get_r1cs_info": 0.0006682649254798889, - "groth16_setup": 1.4005869701504707, - "export_verification_key": 1.3029269501566887, - "download_trusted_setup_file": 0.0024551209062337875 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, + "compute_times": { + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ed55e890-c65c-4978-94c2-62c36da8309a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:14.554Z", - "proving_scheme": "groth16", + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:50.640Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.639042S", - "compute_times": { - "total": 4.670196183025837, - "queued": 1.192037, - "clean_up": 0.0004636390367522836, - "create_cpp": 0.029885608004406095, - "file_setup": 0.19036857096944004, - "compile_cpp": 2.9288433239562437, - "create_r1cs": 0.005293185007758439, - "save_results": 0.002376335905864835, - "get_r1cs_info": 0.00021172501146793365, - "groth16_setup": 0.7855832269415259, - "export_verification_key": 0.7263032890623435, - "download_trusted_setup_file": 0.0007130390731617808 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, + "compute_times": { + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f6bf151d-2fd0-488a-8dd5-f8fafee7a06b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:14.087Z", - "proving_scheme": "groth16", + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:49.058Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.582657S", - "compute_times": { - "total": 7.672385489568114, - "queued": 1.09439, - "clean_up": 0.002001248300075531, - "create_cpp": 0.05665309727191925, - "file_setup": 0.28869662806391716, - "compile_cpp": 4.477934097871184, - "create_r1cs": 0.018961958587169647, - "save_results": 0.005625590682029724, - "get_r1cs_info": 0.0006451867520809174, - "groth16_setup": 1.400868695229292, - "export_verification_key": 1.4178343042731285, - "download_trusted_setup_file": 0.002523709088563919 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, + "compute_times": { + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:13.808Z", - "proving_scheme": "groth16", + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:47.479Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.789518S", - "compute_times": { - "total": 7.865276617929339, - "queued": 1.233985, - "clean_up": 0.0009253527969121933, - "create_cpp": 0.057666877284646034, - "file_setup": 0.42827480658888817, - "compile_cpp": 4.4704748671501875, - "create_r1cs": 0.009908992797136307, - "save_results": 0.0053389593958854675, - "get_r1cs_info": 0.0004046596586704254, - "groth16_setup": 1.474434545263648, - "export_verification_key": 1.4163631908595562, - "download_trusted_setup_file": 0.0010532364249229431 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, + "compute_times": { + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:07:13.622Z", - "proving_scheme": "groth16", + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:45.920Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.484271S", - "compute_times": { - "total": 7.556855067610741, - "queued": 1.163986, - "clean_up": 0.00173221156001091, - "create_cpp": 0.053104178979992867, - "file_setup": 0.25219348073005676, - "compile_cpp": 4.602972414344549, - "create_r1cs": 0.016127610579133034, - "save_results": 0.0044687893241643906, - "get_r1cs_info": 0.0006831474602222443, - "groth16_setup": 1.384469285607338, - "export_verification_key": 1.2383170630782843, - "download_trusted_setup_file": 0.002438986673951149 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, + "compute_times": { + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c43fd46d-1d67-4e43-9087-2fd558de038f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:24.311Z", - "proving_scheme": "groth16", + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:44.421Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.415030S", - "compute_times": { - "total": 7.4919023886322975, - "queued": 15.399161, - "clean_up": 0.0017888862639665604, - "create_cpp": 0.04686305299401283, - "file_setup": 0.2366184201091528, - "compile_cpp": 4.676926027983427, - "create_r1cs": 0.016247382387518883, - "save_results": 0.005460144951939583, - "get_r1cs_info": 0.0005027409642934799, - "groth16_setup": 1.222083330154419, - "export_verification_key": 1.2832992672920227, - "download_trusted_setup_file": 0.001483755186200142 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, + "compute_times": { + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "9e12ff5e-5632-46c4-9ab1-3349ec0b131e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:23.911Z", - "proving_scheme": "groth16", + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:42.838Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.661941S", - "compute_times": { - "total": 4.693298900965601, - "queued": 14.904538, - "clean_up": 0.00046248501166701317, - "create_cpp": 0.030274335062131286, - "file_setup": 0.20949947088956833, - "compile_cpp": 2.9299584419932216, - "create_r1cs": 0.005165933980606496, - "save_results": 0.0026655279798433185, - "get_r1cs_info": 0.00022936402820050716, - "groth16_setup": 0.7548628870863467, - "export_verification_key": 0.7593056479236111, - "download_trusted_setup_file": 0.0007180699612945318 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, + "compute_times": { + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:23.662Z", - "proving_scheme": "groth16", + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:41.260Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.640504S", - "compute_times": { - "total": 4.674585030064918, - "queued": 9.563851, - "clean_up": 0.0004374060081318021, - "create_cpp": 0.029949681949801743, - "file_setup": 0.18676624703221023, - "compile_cpp": 2.926436795038171, - "create_r1cs": 0.00553747802041471, - "save_results": 0.0025256150402128696, - "get_r1cs_info": 0.00030519498977810144, - "groth16_setup": 0.74638494302053, - "export_verification_key": 0.7754071449162439, - "download_trusted_setup_file": 0.0006875250255689025 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, + "compute_times": { + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:03:23.403Z", - "proving_scheme": "groth16", + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:39.684Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.659658S", - "compute_times": { - "total": 4.6912087330129, - "queued": 0.999787, - "clean_up": 0.0005085699958726764, - "create_cpp": 0.030190049903467298, - "file_setup": 0.1714191420469433, - "compile_cpp": 2.942204582039267, - "create_r1cs": 0.0055296330247074366, - "save_results": 0.0026200800202786922, - "get_r1cs_info": 0.0003244479885324836, - "groth16_setup": 0.7581778330495581, - "export_verification_key": 0.7793734009610489, - "download_trusted_setup_file": 0.0007095789769664407 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, + "compute_times": { + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:01:10.696Z", - "proving_scheme": "groth16", + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:38.137Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.600004S", - "compute_times": { - "total": 4.634266157983802, - "queued": 1.007035, - "clean_up": 0.0004430810222402215, - "create_cpp": 0.029862282914109528, - "file_setup": 0.19106685707811266, - "compile_cpp": 2.921206888044253, - "create_r1cs": 0.005109910038299859, - "save_results": 0.003121474990621209, - "get_r1cs_info": 0.0002160179428756237, - "groth16_setup": 0.7425107170129195, - "export_verification_key": 0.7398575020488352, - "download_trusted_setup_file": 0.000722195953130722 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, + "compute_times": { + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:29.407Z", - "proving_scheme": "groth16", + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:36.609Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.795432S", - "compute_times": { - "total": 7.873008634895086, - "queued": 31.342195, - "clean_up": 0.0018993616104125977, - "create_cpp": 0.055077794939279556, - "file_setup": 0.24360725842416286, - "compile_cpp": 4.703614357858896, - "create_r1cs": 0.02081167884171009, - "save_results": 0.0056080929934978485, - "get_r1cs_info": 0.0008842349052429199, - "groth16_setup": 1.4346165657043457, - "export_verification_key": 1.4034891910851002, - "download_trusted_setup_file": 0.002933880314230919 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, + "compute_times": { + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "64c8849e-21b2-46a5-8786-87d5fe82f4d6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:28.573Z", - "proving_scheme": "groth16", + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:35.023Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.741476S", - "compute_times": { - "total": 7.819348992779851, - "queued": 31.913431, - "clean_up": 0.0019285250455141068, - "create_cpp": 0.04896355792880058, - "file_setup": 0.23411452770233154, - "compile_cpp": 4.654933050274849, - "create_r1cs": 0.016990680247545242, - "save_results": 0.005897335708141327, - "get_r1cs_info": 0.0007398743182420731, - "groth16_setup": 1.392984814941883, - "export_verification_key": 1.4599114395678043, - "download_trusted_setup_file": 0.0024141818284988403 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, + "compute_times": { + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:28.552Z", - "proving_scheme": "groth16", + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:33.480Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.657088S", - "compute_times": { - "total": 4.6882268759654835, - "queued": 29.904162, - "clean_up": 0.0004538500215858221, - "create_cpp": 0.029869360965676606, - "file_setup": 0.18104861094616354, - "compile_cpp": 2.9436706830747426, - "create_r1cs": 0.005239389953203499, - "save_results": 0.0024021610151976347, - "get_r1cs_info": 0.00020038604270666838, - "groth16_setup": 0.762411353061907, - "export_verification_key": 0.7620555579196662, - "download_trusted_setup_file": 0.0007234419463202357 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, + "compute_times": { + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b5d133fc-f5f0-4fd8-8a37-bec3f105f957", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:28.531Z", - "proving_scheme": "groth16", + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:31.932Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.815061S", - "compute_times": { - "total": 7.892049107700586, - "queued": 26.139954, - "clean_up": 0.0009030122309923172, - "create_cpp": 0.04740026593208313, - "file_setup": 0.24122893437743187, - "compile_cpp": 4.7460735235363245, - "create_r1cs": 0.010444654151797295, - "save_results": 0.003931155428290367, - "get_r1cs_info": 0.0007425416260957718, - "groth16_setup": 1.4072796031832695, - "export_verification_key": 1.4309465549886227, - "download_trusted_setup_file": 0.0025080330669879913 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, + "compute_times": { + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:27.630Z", - "proving_scheme": "groth16", + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:30.405Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.577744S", - "compute_times": { - "total": 7.656200651079416, - "queued": 24.444641, - "clean_up": 0.0016275551170110703, - "create_cpp": 0.04782847873866558, - "file_setup": 0.25123047828674316, - "compile_cpp": 4.509421624243259, - "create_r1cs": 0.017046067863702774, - "save_results": 0.005663003772497177, - "get_r1cs_info": 0.000681556761264801, - "groth16_setup": 1.3982542753219604, - "export_verification_key": 1.421325797215104, - "download_trusted_setup_file": 0.0025193486362695694 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, + "compute_times": { + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "dc9db61e-d2c3-40f8-a3f3-afbd9e8042c4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:27.313Z", - "proving_scheme": "groth16", + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:28.882Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.545149S", - "compute_times": { - "total": 7.623603418469429, - "queued": 24.498309, - "clean_up": 0.0017016865313053131, - "create_cpp": 0.04762609116733074, - "file_setup": 0.24350149184465408, - "compile_cpp": 4.597848556935787, - "create_r1cs": 0.012152310460805893, - "save_results": 0.005475817248225212, - "get_r1cs_info": 0.0004205126315355301, - "groth16_setup": 1.3248953483998775, - "export_verification_key": 1.3882451467216015, - "download_trusted_setup_file": 0.0009885765612125397 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, + "compute_times": { + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2c1beb82-6dc9-44ea-bbf7-3514b27e47fe", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:27.047Z", - "proving_scheme": "groth16", + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:27.303Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.629165S", - "compute_times": { - "total": 4.66044994990807, - "queued": 25.910415, - "clean_up": 0.00046650797594338655, - "create_cpp": 0.030314832110889256, - "file_setup": 0.17054930399172008, - "compile_cpp": 2.9262271099723876, - "create_r1cs": 0.005123129929415882, - "save_results": 0.0024022479774430394, - "get_r1cs_info": 0.0003190510906279087, - "groth16_setup": 0.7423932970268652, - "export_verification_key": 0.7817557220114395, - "download_trusted_setup_file": 0.0007441989146173 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, + "compute_times": { + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:26.747Z", - "proving_scheme": "groth16", + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:25.623Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.578700S", - "compute_times": { - "total": 4.609950889949687, - "queued": 16.176819, - "clean_up": 0.0004615719662979245, - "create_cpp": 0.029976019985042512, - "file_setup": 0.16958309896290302, - "compile_cpp": 2.9370939240325242, - "create_r1cs": 0.005518535035662353, - "save_results": 0.0025302410358563066, - "get_r1cs_info": 0.00021990097593516111, - "groth16_setup": 0.7456176759442315, - "export_verification_key": 0.7180980830453336, - "download_trusted_setup_file": 0.0006872049998492002 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, + "compute_times": { + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b4dd22c7-ef45-415b-9adb-b55796852c23", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:26.416Z", - "proving_scheme": "groth16", + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:24.063Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.686577S", - "compute_times": { - "total": 4.717802106984891, - "queued": 6.382446, - "clean_up": 0.000551781035028398, - "create_cpp": 0.029999293037690222, - "file_setup": 0.18139734293799847, - "compile_cpp": 2.932805340969935, - "create_r1cs": 0.005408287048339844, - "save_results": 0.015873302007094026, - "get_r1cs_info": 0.00022628996521234512, - "groth16_setup": 0.7609705639770254, - "export_verification_key": 0.7896749229403213, - "download_trusted_setup_file": 0.0007316060364246368 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, + "compute_times": { + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "62424675-e5a3-472b-b6d9-360469112a6c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:52:26.115Z", - "proving_scheme": "groth16", + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:22.482Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M04.768701S", - "compute_times": { - "total": 4.799833326018415, - "queued": 0.976508, - "clean_up": 0.00047689699567854404, - "create_cpp": 0.030055438983254135, - "file_setup": 0.17185658100061119, - "compile_cpp": 2.9329681789968163, - "create_r1cs": 0.005263481056317687, - "save_results": 0.09661219897679985, - "get_r1cs_info": 0.00022084394004195929, - "groth16_setup": 0.7651074749883264, - "export_verification_key": 0.7962674020091072, - "download_trusted_setup_file": 0.0007937300251796842 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, + "compute_times": { + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:13.892Z", - "proving_scheme": "groth16", + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:20.927Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.885708S", - "compute_times": { - "total": 7.955762881785631, - "queued": 28.847048, - "clean_up": 0.0018043965101242065, - "create_cpp": 0.055242860689759254, - "file_setup": 0.24882620573043823, - "compile_cpp": 4.8809529915452, - "create_r1cs": 0.01775236241519451, - "save_results": 0.006603563204407692, - "get_r1cs_info": 0.000814288854598999, - "groth16_setup": 1.4022877030074596, - "export_verification_key": 1.3382868971675634, - "download_trusted_setup_file": 0.002887807786464691 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, + "compute_times": { + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:13.567Z", - "proving_scheme": "groth16", + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:19.297Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.745866S", - "compute_times": { - "total": 7.822312492877245, - "queued": 25.557495, - "clean_up": 0.0016726050525903702, - "create_cpp": 0.054300736635923386, - "file_setup": 0.24556394666433334, - "compile_cpp": 4.760834071785212, - "create_r1cs": 0.011471176519989967, - "save_results": 0.005745843052864075, - "get_r1cs_info": 0.0006968062371015549, - "groth16_setup": 1.4245723970234394, - "export_verification_key": 1.3145959675312042, - "download_trusted_setup_file": 0.0024240929633378983 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, + "compute_times": { + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "68922dfc-836b-4954-915d-91e6474e1b5d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:13.542Z", - "proving_scheme": "groth16", + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:17.717Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.127036S", - "compute_times": { - "total": 8.208296919241548, - "queued": 23.853413, - "clean_up": 0.0016598310321569443, - "create_cpp": 0.046626683324575424, - "file_setup": 0.24938496574759483, - "compile_cpp": 5.05383531935513, - "create_r1cs": 0.050674159079790115, - "save_results": 0.005311015993356705, - "get_r1cs_info": 0.000824756920337677, - "groth16_setup": 1.4834840036928654, - "export_verification_key": 1.3135647680610418, - "download_trusted_setup_file": 0.0025572720915079117 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, + "compute_times": { + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:12.640Z", - "proving_scheme": "groth16", + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:16.204Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.854047S", - "compute_times": { - "total": 7.929084803909063, - "queued": 23.597366, - "clean_up": 0.0012285895645618439, - "create_cpp": 0.04848377965390682, - "file_setup": 0.24958525598049164, - "compile_cpp": 4.769202491268516, - "create_r1cs": 0.016365252435207367, - "save_results": 0.005111081525683403, - "get_r1cs_info": 0.0006984081119298935, - "groth16_setup": 1.324900783598423, - "export_verification_key": 1.5104059372097254, - "download_trusted_setup_file": 0.0024766679853200912 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, + "compute_times": { + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "53eb66ff-b56b-4cb7-a75a-49924b2fb393", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:12.394Z", - "proving_scheme": "groth16", + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:14.654Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.394188S", - "compute_times": { - "total": 7.469893058761954, - "queued": 21.7528, - "clean_up": 0.0017232540994882584, - "create_cpp": 0.04593514837324619, - "file_setup": 0.2557643633335829, - "compile_cpp": 4.412009971216321, - "create_r1cs": 0.009809941053390503, - "save_results": 0.00808953307569027, - "get_r1cs_info": 0.000814361497759819, - "groth16_setup": 1.357611108571291, - "export_verification_key": 1.3745716717094183, - "download_trusted_setup_file": 0.0029620975255966187 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, + "compute_times": { + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "407bcfed-fe41-4066-9332-aeb40b808d06", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:12.156Z", - "proving_scheme": "groth16", + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:13.059Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.571485S", - "compute_times": { - "total": 7.641632162034512, - "queued": 18.226087, - "clean_up": 0.0013474393635988235, - "create_cpp": 0.05902073346078396, - "file_setup": 0.23511924035847187, - "compile_cpp": 4.656228628009558, - "create_r1cs": 0.018529707565903664, - "save_results": 0.004187965765595436, - "get_r1cs_info": 0.0008369125425815582, - "groth16_setup": 1.2646941412240267, - "export_verification_key": 1.3983517494052649, - "download_trusted_setup_file": 0.002851281315088272 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, + "compute_times": { + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:11.755Z", - "proving_scheme": "groth16", + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:11.558Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.694656S", - "compute_times": { - "total": 7.773913914337754, - "queued": 9.755186, - "clean_up": 0.0017512477934360504, - "create_cpp": 0.05254339054226875, - "file_setup": 0.25238266587257385, - "compile_cpp": 4.748115291818976, - "create_r1cs": 0.017892709001898766, - "save_results": 0.005697643384337425, - "get_r1cs_info": 0.0006967000663280487, - "groth16_setup": 1.3444917406886816, - "export_verification_key": 1.3474417924880981, - "download_trusted_setup_file": 0.0025170259177684784 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, + "compute_times": { + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7b7b7b2a-451c-4d73-ab46-f0e66c2c85ca", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:11.486Z", - "proving_scheme": "groth16", + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:10.032Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.630543S", - "compute_times": { - "total": 7.710038185119629, - "queued": 1.150464, - "clean_up": 0.0011645127087831497, - "create_cpp": 0.058946333825588226, - "file_setup": 0.25080287642776966, - "compile_cpp": 4.800692165270448, - "create_r1cs": 0.01764843240380287, - "save_results": 0.004682136699557304, - "get_r1cs_info": 0.0006801802664995193, - "groth16_setup": 1.2236122898757458, - "export_verification_key": 1.3488865680992603, - "download_trusted_setup_file": 0.002442905679345131 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, + "compute_times": { + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "02c640e5-cfcb-41ae-af49-b931f9a8c09c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:24.401Z", - "proving_scheme": "groth16", + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:08.462Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.241318S", - "compute_times": { - "total": 8.329373510554433, - "queued": 1.121606, - "clean_up": 0.0019346550107002258, - "create_cpp": 0.05594826489686966, - "file_setup": 0.27456157468259335, - "compile_cpp": 4.8171467911452055, - "create_r1cs": 0.026553984731435776, - "save_results": 0.006161559373140335, - "get_r1cs_info": 0.0005842037498950958, - "groth16_setup": 1.7246721610426903, - "export_verification_key": 1.4198596961796284, - "download_trusted_setup_file": 0.001470223069190979 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, + "compute_times": { + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:24.332Z", - "proving_scheme": "groth16", + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:06.935Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.354681S", - "compute_times": { - "total": 8.443675557151437, - "queued": 1.117419, - "clean_up": 0.0017919130623340607, - "create_cpp": 0.04705219343304634, - "file_setup": 0.2759277820587158, - "compile_cpp": 4.905571544542909, - "create_r1cs": 0.009557157754898071, - "save_results": 0.006301635876297951, - "get_r1cs_info": 0.00048459507524967194, - "groth16_setup": 1.7585814129561186, - "export_verification_key": 1.4364026803523302, - "download_trusted_setup_file": 0.0015424657613039017 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, + "compute_times": { + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:23.531Z", - "proving_scheme": "groth16", + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:05.334Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.068099S", - "compute_times": { - "total": 8.153660595417023, - "queued": 1.071738, - "clean_up": 0.001531621441245079, - "create_cpp": 0.045755207538604736, - "file_setup": 0.2599444091320038, - "compile_cpp": 4.871264658868313, - "create_r1cs": 0.017335444688796997, - "save_results": 0.005486989393830299, - "get_r1cs_info": 0.0006858445703983307, - "groth16_setup": 1.361423509195447, - "export_verification_key": 1.5872800443321466, - "download_trusted_setup_file": 0.0024511031806468964 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, + "compute_times": { + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7347f61d-b7cb-4343-a5bf-ebce2cc55f8a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:23.438Z", - "proving_scheme": "groth16", + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:03.737Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.140640S", - "compute_times": { - "total": 8.235822454094887, - "queued": 1.081126, - "clean_up": 0.0017961226403713226, - "create_cpp": 0.04311295971274376, - "file_setup": 0.27040280401706696, - "compile_cpp": 4.741711314767599, - "create_r1cs": 0.008934037759900093, - "save_results": 0.0059998612850904465, - "get_r1cs_info": 0.0005991235375404358, - "groth16_setup": 1.4837695751339197, - "export_verification_key": 1.6770079042762518, - "download_trusted_setup_file": 0.0020057205110788345 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, + "compute_times": { + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "60568e01-5db1-4bcc-8b5d-9a5d0c597cfc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:22.740Z", - "proving_scheme": "groth16", + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:02.220Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.678150S", - "compute_times": { - "total": 7.751736994832754, - "queued": 1.13689, - "clean_up": 0.0017000120133161545, - "create_cpp": 0.04771371744573116, - "file_setup": 0.25899965688586235, - "compile_cpp": 4.8372255228459835, - "create_r1cs": 0.017538156360387802, - "save_results": 0.00590207614004612, - "get_r1cs_info": 0.0006850995123386383, - "groth16_setup": 1.2987089455127716, - "export_verification_key": 1.2803236413747072, - "download_trusted_setup_file": 0.0023799482733011246 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, + "compute_times": { + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "631a6175-1cf5-4d85-9dba-beb0b7f39ac4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:22.659Z", - "proving_scheme": "groth16", + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:00.620Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.029136S", - "compute_times": { - "total": 8.106146903708577, - "queued": 1.175805, - "clean_up": 0.0012847986072301865, - "create_cpp": 0.046614110469818115, - "file_setup": 0.25902401097118855, - "compile_cpp": 4.752150634303689, - "create_r1cs": 0.009271597489714622, - "save_results": 0.0047521647065877914, - "get_r1cs_info": 0.0004211030900478363, - "groth16_setup": 1.3230060525238514, - "export_verification_key": 1.7080091033130884, - "download_trusted_setup_file": 0.0011603403836488724 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, + "compute_times": { + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fc9f5f13-b3fb-4921-9e72-79d9e66e179b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:43.592Z", - "proving_scheme": "groth16", + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:59.069Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.307121S", - "compute_times": { - "total": 8.39285988919437, - "queued": 1.170429, - "clean_up": 0.0017455965280532837, - "create_cpp": 0.05315246060490608, - "file_setup": 0.25207769870758057, - "compile_cpp": 4.999113095924258, - "create_r1cs": 0.011692922562360764, - "save_results": 0.005579909309744835, - "get_r1cs_info": 0.0005984082818031311, - "groth16_setup": 1.5826541632413864, - "export_verification_key": 1.484537510201335, - "download_trusted_setup_file": 0.0012438185513019562 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, + "compute_times": { + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "e4031874-dd5e-44fe-9c00-d1fd6fb202c6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:43.503Z", - "proving_scheme": "groth16", + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:57.502Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.235985S", - "compute_times": { - "total": 8.321344017982483, - "queued": 1.068236, - "clean_up": 0.0016151797026395798, - "create_cpp": 0.05340844392776489, - "file_setup": 0.26708511635661125, - "compile_cpp": 4.841666031628847, - "create_r1cs": 0.012876151129603386, - "save_results": 0.005826536566019058, - "get_r1cs_info": 0.0005277041345834732, - "groth16_setup": 1.6289604622870684, - "export_verification_key": 1.5077580194920301, - "download_trusted_setup_file": 0.0011740028858184814 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, + "compute_times": { + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:42.642Z", - "proving_scheme": "groth16", + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:55.884Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.289158S", - "compute_times": { - "total": 8.37978408485651, - "queued": 1.052437, - "clean_up": 0.0008304361253976822, - "create_cpp": 0.04860556498169899, - "file_setup": 0.25936984457075596, - "compile_cpp": 5.029499880969524, - "create_r1cs": 0.01772325113415718, - "save_results": 0.0037908367812633514, - "get_r1cs_info": 0.0006020087748765945, - "groth16_setup": 1.5292650777846575, - "export_verification_key": 1.488473566249013, - "download_trusted_setup_file": 0.001187194138765335 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, + "compute_times": { + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "25366e22-1f30-4f2b-9c24-b18e1f015e63", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:42.295Z", - "proving_scheme": "groth16", + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:54.264Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.117529S", - "compute_times": { - "total": 8.207875268533826, - "queued": 1.087153, - "clean_up": 0.0015377029776573181, - "create_cpp": 0.04848550260066986, - "file_setup": 0.284574668854475, - "compile_cpp": 4.720001315698028, - "create_r1cs": 0.019293557852506638, - "save_results": 0.005876583978533745, - "get_r1cs_info": 0.0006543230265378952, - "groth16_setup": 1.3807134442031384, - "export_verification_key": 1.7450519409030676, - "download_trusted_setup_file": 0.0012251269072294235 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, + "compute_times": { + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d5b7ab09-4ca6-4521-a7db-c4d157012d70", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:42.146Z", - "proving_scheme": "groth16", + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:52.472Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.534592S", - "compute_times": { - "total": 7.610471937805414, - "queued": 1.093385, - "clean_up": 0.0015752967447042465, - "create_cpp": 0.05304797925055027, - "file_setup": 0.26768016442656517, - "compile_cpp": 4.674749160185456, - "create_r1cs": 0.011171292513608932, - "save_results": 0.005162520334124565, - "get_r1cs_info": 0.0006882045418024063, - "groth16_setup": 1.2686850260943174, - "export_verification_key": 1.324827728793025, - "download_trusted_setup_file": 0.002427944913506508 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, + "compute_times": { + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "259650fb-5b58-4325-a93c-aae8b050e8de", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:41.758Z", - "proving_scheme": "groth16", + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:50.941Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.763101S", - "compute_times": { - "total": 7.8425999116152525, - "queued": 1.180645, - "clean_up": 0.0010943040251731873, - "create_cpp": 0.04768798500299454, - "file_setup": 0.27950611896812916, - "compile_cpp": 4.640486840158701, - "create_r1cs": 0.017582029104232788, - "save_results": 0.005249707028269768, - "get_r1cs_info": 0.0008139610290527344, - "groth16_setup": 1.330995000898838, - "export_verification_key": 1.5162372961640358, - "download_trusted_setup_file": 0.0024677496403455734 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, + "compute_times": { + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fdd63193-c8f9-44d3-808f-1c141d8943a9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:08.312Z", - "proving_scheme": "groth16", + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:49.312Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.531226S", - "compute_times": { - "total": 7.6369316056370735, - "queued": 8.365347, - "clean_up": 0.0019285567104816437, - "create_cpp": 0.046893924474716187, - "file_setup": 0.27671243622899055, - "compile_cpp": 4.530390504747629, - "create_r1cs": 0.0143166184425354, - "save_results": 0.0062755923718214035, - "get_r1cs_info": 0.0004708431661128998, - "groth16_setup": 1.3666829708963633, - "export_verification_key": 1.3914693985134363, - "download_trusted_setup_file": 0.0013060756027698517 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, + "compute_times": { + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "904ee935-e47f-4e51-b8af-4fa75cc308f7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:07.917Z", - "proving_scheme": "groth16", + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:47.661Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.578702S", - "compute_times": { - "total": 8.665514579042792, - "queued": 1.330868, - "clean_up": 0.0017162077128887177, - "create_cpp": 0.054726479575037956, - "file_setup": 0.2634403742849827, - "compile_cpp": 5.288504149764776, - "create_r1cs": 0.008948137983679771, - "save_results": 0.005719773471355438, - "get_r1cs_info": 0.0004977621138095856, - "groth16_setup": 1.6173019856214523, - "export_verification_key": 1.4229414779692888, - "download_trusted_setup_file": 0.0012561678886413574 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, + "compute_times": { + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:07.224Z", - "proving_scheme": "groth16", + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:46.099Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.530179S", - "compute_times": { - "total": 8.615118628367782, - "queued": 1.275027, - "clean_up": 0.0011486634612083435, - "create_cpp": 0.05415670946240425, - "file_setup": 0.26388018019497395, - "compile_cpp": 4.947564886882901, - "create_r1cs": 0.011440899223089218, - "save_results": 0.0037490390241146088, - "get_r1cs_info": 0.0004730690270662308, - "groth16_setup": 1.862619386985898, - "export_verification_key": 1.4681414254009724, - "download_trusted_setup_file": 0.0015218798071146011 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, + "compute_times": { + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a379c18b-369a-44db-aad6-85af9e6bb9cb", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:06.762Z", - "proving_scheme": "groth16", + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:44.552Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.830370S", - "compute_times": { - "total": 7.921309085562825, - "queued": 1.088554, - "clean_up": 0.0007459353655576706, - "create_cpp": 0.047761064022779465, - "file_setup": 0.2782799396663904, - "compile_cpp": 4.597128139808774, - "create_r1cs": 0.011429710313677788, - "save_results": 0.0036425814032554626, - "get_r1cs_info": 0.0006814338266849518, - "groth16_setup": 1.4388698264956474, - "export_verification_key": 1.5397362746298313, - "download_trusted_setup_file": 0.0024739503860473633 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, + "compute_times": { + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d040cbc0-5324-4999-b9fd-1c1377b68a5c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:06.594Z", - "proving_scheme": "groth16", + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:42.989Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.915835S", - "compute_times": { - "total": 7.990416899323463, - "queued": 1.043149, - "clean_up": 0.0017143674194812775, - "create_cpp": 0.04796867072582245, - "file_setup": 0.23446950316429138, - "compile_cpp": 4.777510790154338, - "create_r1cs": 0.017401328310370445, - "save_results": 0.0054901354014873505, - "get_r1cs_info": 0.0009919870644807816, - "groth16_setup": 1.4934867825359106, - "export_verification_key": 1.4077130891382694, - "download_trusted_setup_file": 0.00322798453271389 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, + "compute_times": { + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ec4c4efa-85f5-4706-98f5-c074c42fdd6a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:06.301Z", - "proving_scheme": "groth16", + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:41.451Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.731619S", - "compute_times": { - "total": 7.811778577044606, - "queued": 1.204783, - "clean_up": 0.001674732193350792, - "create_cpp": 0.041051892563700676, - "file_setup": 0.252486540004611, - "compile_cpp": 4.601586431264877, - "create_r1cs": 0.016725540161132812, - "save_results": 0.006723517552018166, - "get_r1cs_info": 0.0007968861609697342, - "groth16_setup": 1.3249811921268702, - "export_verification_key": 1.5628648214042187, - "download_trusted_setup_file": 0.0024388227611780167 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, + "compute_times": { + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a89d05b7-2a7f-48de-8017-c628dfdfbc8b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:47.917Z", - "proving_scheme": "groth16", + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:39.456Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.789579S", - "compute_times": { - "total": 7.86683814227581, - "queued": 25.35176, - "clean_up": 0.0017080958932638168, - "create_cpp": 0.049080340191721916, - "file_setup": 0.2709489520639181, - "compile_cpp": 4.813403956592083, - "create_r1cs": 0.01896231807768345, - "save_results": 0.005731154233217239, - "get_r1cs_info": 0.0008451472967863083, - "groth16_setup": 1.3692182656377554, - "export_verification_key": 1.3333069793879986, - "download_trusted_setup_file": 0.0029204636812210083 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, + "compute_times": { + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fb9804ea-e593-4510-b89a-b98a0011e155", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:47.325Z", - "proving_scheme": "groth16", + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:37.847Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.584035S", - "compute_times": { - "total": 7.674813883379102, - "queued": 23.350262, - "clean_up": 0.00165599025785923, - "create_cpp": 0.05108293518424034, - "file_setup": 0.2647382654249668, - "compile_cpp": 4.588076556101441, - "create_r1cs": 0.01682026870548725, - "save_results": 0.006049007177352905, - "get_r1cs_info": 0.0008010715246200562, - "groth16_setup": 1.3996620196849108, - "export_verification_key": 1.3428493328392506, - "download_trusted_setup_file": 0.002526400610804558 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, + "compute_times": { + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:46.978Z", - "proving_scheme": "groth16", + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:36.258Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.813443S", - "compute_times": { - "total": 7.886057889088988, - "queued": 17.997581, - "clean_up": 0.0019489061087369919, - "create_cpp": 0.04485638998448849, - "file_setup": 0.23824510909616947, - "compile_cpp": 4.771794518455863, - "create_r1cs": 0.017174607142806053, - "save_results": 0.005540786311030388, - "get_r1cs_info": 0.0006840340793132782, - "groth16_setup": 1.3794465400278568, - "export_verification_key": 1.4234893918037415, - "download_trusted_setup_file": 0.002448735758662224 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, + "compute_times": { + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4e253e9d-53bb-4dc3-a7ae-3f7c845833c9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:46.598Z", - "proving_scheme": "groth16", + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:34.681Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.749153S", - "compute_times": { - "total": 7.8208857625722885, - "queued": 9.451752, - "clean_up": 0.0019070468842983246, - "create_cpp": 0.04770251177251339, - "file_setup": 0.23707264475524426, - "compile_cpp": 4.817640336230397, - "create_r1cs": 0.018378887325525284, - "save_results": 0.005359206348657608, - "get_r1cs_info": 0.0008528921753168106, - "groth16_setup": 1.3206407614052296, - "export_verification_key": 1.3683953396975994, - "download_trusted_setup_file": 0.002521853893995285 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, + "compute_times": { + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "50a969b6-0f0e-4066-818e-0d6bee58a675", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:46.380Z", - "proving_scheme": "groth16", + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:33.146Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.412180S", - "compute_times": { - "total": 7.489693740382791, - "queued": 1.076624, - "clean_up": 0.0017442163079977036, - "create_cpp": 0.049648238345980644, - "file_setup": 0.23472837172448635, - "compile_cpp": 4.6169865392148495, - "create_r1cs": 0.01770802214741707, - "save_results": 0.005789747461676598, - "get_r1cs_info": 0.000413551926612854, - "groth16_setup": 1.244078028947115, - "export_verification_key": 1.3168906792998314, - "download_trusted_setup_file": 0.0012542679905891418 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, + "compute_times": { + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8b80ca27-37f0-4a48-b203-3e2d185edd90", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:52.340Z", - "proving_scheme": "groth16", + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:31.611Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.883228S", - "compute_times": { - "total": 7.962817557156086, - "queued": 30.893441, - "clean_up": 0.0015963222831487656, - "create_cpp": 0.05661488324403763, - "file_setup": 0.26580186001956463, - "compile_cpp": 4.7885665241628885, - "create_r1cs": 0.017876187339425087, - "save_results": 0.005185702815651894, - "get_r1cs_info": 0.0006853118538856506, - "groth16_setup": 1.458715070039034, - "export_verification_key": 1.3646998051553965, - "download_trusted_setup_file": 0.002479085698723793 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, + "compute_times": { + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ff738348-86c5-4a5b-bbf5-f59ebacaa83f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:51.149Z", - "proving_scheme": "groth16", + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:30.068Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.795750S", - "compute_times": { - "total": 7.888047279790044, - "queued": 29.425801, - "clean_up": 0.0008769631385803223, - "create_cpp": 0.05921477451920509, - "file_setup": 0.25372832454741, - "compile_cpp": 4.736947797238827, - "create_r1cs": 0.01815476454794407, - "save_results": 0.004680829122662544, - "get_r1cs_info": 0.0006990842521190643, - "groth16_setup": 1.3821367472410202, - "export_verification_key": 1.4278872478753328, - "download_trusted_setup_file": 0.002650303766131401 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, + "compute_times": { + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "bd06acf7-db8e-4e1b-add1-78e51aa51bbe", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:50.720Z", - "proving_scheme": "groth16", + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:28.546Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.390978S", - "compute_times": { - "total": 7.46995716355741, - "queued": 29.832962, - "clean_up": 0.00176163949072361, - "create_cpp": 0.05480833351612091, - "file_setup": 0.23235405422747135, - "compile_cpp": 4.604168305173516, - "create_r1cs": 0.017065662890672684, - "save_results": 0.005929179489612579, - "get_r1cs_info": 0.0009844768792390823, - "groth16_setup": 1.2335669491440058, - "export_verification_key": 1.3159250803291798, - "download_trusted_setup_file": 0.003006463870406151 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, + "compute_times": { + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "afcb9e22-9f99-41d0-9901-af4903b766b4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:50.518Z", - "proving_scheme": "groth16", + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:27.002Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.546432S", - "compute_times": { - "total": 7.620507316663861, - "queued": 21.381816, - "clean_up": 0.0019138902425765991, - "create_cpp": 0.04845607653260231, - "file_setup": 0.22649670392274857, - "compile_cpp": 4.595834456384182, - "create_r1cs": 0.017602143809199333, - "save_results": 0.006120938807725906, - "get_r1cs_info": 0.0006583519279956818, - "groth16_setup": 1.3733069580048323, - "export_verification_key": 1.3470811117440462, - "download_trusted_setup_file": 0.002516990527510643 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, + "compute_times": { + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c3c2e5be-17ce-49c9-a590-17a34dae5b43", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:38.831Z", - "proving_scheme": "groth16", + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:25.415Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.495982S", - "compute_times": { - "total": 7.583129834383726, - "queued": 9.308287, - "clean_up": 0.0016463026404380798, - "create_cpp": 0.048509422689676285, - "file_setup": 0.2788010146468878, - "compile_cpp": 4.499293332919478, - "create_r1cs": 0.008868083357810974, - "save_results": 0.006020659580826759, - "get_r1cs_info": 0.0004023592919111252, - "groth16_setup": 1.3391796126961708, - "export_verification_key": 1.3986896388232708, - "download_trusted_setup_file": 0.0012662895023822784 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, + "compute_times": { + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "594d795b-4e83-4bdc-9384-adc6dc579063", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:38.077Z", - "proving_scheme": "groth16", + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:23.831Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.994296S", - "compute_times": { - "total": 8.085218539461493, - "queued": 1.072056, - "clean_up": 0.0018068403005599976, - "create_cpp": 0.04692729189991951, - "file_setup": 0.24390947446227074, - "compile_cpp": 4.863685358315706, - "create_r1cs": 0.015030544251203537, - "save_results": 0.006564289331436157, - "get_r1cs_info": 0.0005463734269142151, - "groth16_setup": 1.4818106144666672, - "export_verification_key": 1.4225131068378687, - "download_trusted_setup_file": 0.0018362998962402344 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, + "compute_times": { + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cc3da49e-2510-421d-867f-012f50ee430c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:37.920Z", - "proving_scheme": "groth16", + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:22.258Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.896573S", - "compute_times": { - "total": 7.971910724416375, - "queued": 1.115917, - "clean_up": 0.0015832837671041489, - "create_cpp": 0.03922662511467934, - "file_setup": 0.24468977935612202, - "compile_cpp": 4.67575691267848, - "create_r1cs": 0.01803159900009632, - "save_results": 0.005611082538962364, - "get_r1cs_info": 0.0004954636096954346, - "groth16_setup": 1.507937928661704, - "export_verification_key": 1.4767322856932878, - "download_trusted_setup_file": 0.0013241283595561981 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, + "compute_times": { + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "64c96c11-dba7-4189-aa14-9aecfedddd24", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:37.888Z", - "proving_scheme": "groth16", + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:20.735Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.498334S", - "compute_times": { - "total": 8.571772133931518, - "queued": 1.074783, - "clean_up": 0.0019186809659004211, - "create_cpp": 0.054686328396201134, - "file_setup": 0.2371922954916954, - "compile_cpp": 5.385636718943715, - "create_r1cs": 0.01953158527612686, - "save_results": 0.00620056688785553, - "get_r1cs_info": 0.0007338318973779678, - "groth16_setup": 1.5156110264360905, - "export_verification_key": 1.3472961355000734, - "download_trusted_setup_file": 0.0024816375225782394 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, + "compute_times": { + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "37c2d797-16be-44b3-af1f-25f921d56027", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:00:47.710Z", - "proving_scheme": "groth16", + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:19.166Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.442405S", - "compute_times": { - "total": 7.519877161830664, - "queued": 18.163234, - "clean_up": 0.0016106609255075455, - "create_cpp": 0.04706509783864021, - "file_setup": 0.2573662418872118, - "compile_cpp": 4.5406668819487095, - "create_r1cs": 0.010846516117453575, - "save_results": 0.0050650909543037415, - "get_r1cs_info": 0.0006506964564323425, - "groth16_setup": 1.2932439744472504, - "export_verification_key": 1.3604716714471579, - "download_trusted_setup_file": 0.0025113988667726517 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, + "compute_times": { + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "64245855-4d0a-4a37-8ac5-5cd8fafd4df6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:00:47.196Z", - "proving_scheme": "groth16", + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:17.494Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.598393S", - "compute_times": { - "total": 7.670226508751512, - "queued": 9.858631, - "clean_up": 0.0017396323382854462, - "create_cpp": 0.056736381724476814, - "file_setup": 0.2335924208164215, - "compile_cpp": 4.717564798891544, - "create_r1cs": 0.01664743758738041, - "save_results": 0.00606883130967617, - "get_r1cs_info": 0.0007533375173807144, - "groth16_setup": 1.2358768321573734, - "export_verification_key": 1.3982864208519459, - "download_trusted_setup_file": 0.0024993102997541428 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, + "compute_times": { + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "67f4649b-cef0-48a9-853e-08bc9071a422", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:00:47.135Z", - "proving_scheme": "groth16", + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:15.887Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.668392S", - "compute_times": { - "total": 7.747372977435589, - "queued": 1.05809, - "clean_up": 0.001848604530096054, - "create_cpp": 0.04929644614458084, - "file_setup": 0.22854838147759438, - "compile_cpp": 4.640512635931373, - "create_r1cs": 0.015147404745221138, - "save_results": 0.005650337785482407, - "get_r1cs_info": 0.0006706751883029938, - "groth16_setup": 1.3484645150601864, - "export_verification_key": 1.4543015789240599, - "download_trusted_setup_file": 0.002453230321407318 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, + "compute_times": { + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7a70a5ab-e8ed-4f4b-86e7-6b4fee6732b5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T21:59:59.139Z", - "proving_scheme": "groth16", + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:14.188Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.396312S", - "compute_times": { - "total": 7.46887100674212, - "queued": 18.652859, - "clean_up": 0.0016880836337804794, - "create_cpp": 0.042848482728004456, - "file_setup": 0.22210602462291718, - "compile_cpp": 4.473998909816146, - "create_r1cs": 0.018347671255469322, - "save_results": 0.005641408264636993, - "get_r1cs_info": 0.0005728006362915039, - "groth16_setup": 1.427965046837926, - "export_verification_key": 1.2737494725733995, - "download_trusted_setup_file": 0.0014454666525125504 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, + "compute_times": { + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1d2b65a6-0b62-46f1-8552-e5d306b8e5a9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:18.351Z", - "proving_scheme": "groth16", + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:12.610Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.072504S", - "compute_times": { - "total": 8.165413077920675, - "queued": 1.073288, - "clean_up": 0.001566711813211441, - "create_cpp": 0.04813777469098568, - "file_setup": 0.273874131962657, - "compile_cpp": 4.797466650605202, - "create_r1cs": 0.012367704883217812, - "save_results": 0.005589749664068222, - "get_r1cs_info": 0.0007054843008518219, - "groth16_setup": 1.6635373625904322, - "export_verification_key": 1.359395258128643, - "download_trusted_setup_file": 0.0024296436458826065 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, + "compute_times": { + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6c8880ec-74b0-4668-a577-bf49ab082ee6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:17.471Z", - "proving_scheme": "groth16", + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:11.068Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.660558S", - "compute_times": { - "total": 8.733056403696537, - "queued": 1.092197, - "clean_up": 0.0028520766645669937, - "create_cpp": 0.052579380571842194, - "file_setup": 0.23965846560895443, - "compile_cpp": 5.635051192715764, - "create_r1cs": 0.019429346546530724, - "save_results": 0.005396207794547081, - "get_r1cs_info": 0.0007434431463479996, - "groth16_setup": 1.4462960939854383, - "export_verification_key": 1.3281519785523415, - "download_trusted_setup_file": 0.0024572182446718216 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, + "compute_times": { + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3b4060a2-6272-49df-a5f5-2d848ea3568d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:17.080Z", - "proving_scheme": "groth16", + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:09.525Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.963489S", - "compute_times": { - "total": 8.049663323909044, - "queued": 1.109603, - "clean_up": 0.0019163694232702255, - "create_cpp": 0.05177045613527298, - "file_setup": 0.2615332882851362, - "compile_cpp": 4.643600087612867, - "create_r1cs": 0.016842812299728394, - "save_results": 0.006387719884514809, - "get_r1cs_info": 0.0007886830717325211, - "groth16_setup": 1.5305246319621801, - "export_verification_key": 1.5330269560217857, - "download_trusted_setup_file": 0.0027020927518606186 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, + "compute_times": { + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "e9738cfe-e43f-47eb-bf7e-1aee7eda254d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:17.031Z", - "proving_scheme": "groth16", + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:07.842Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.752852S", - "compute_times": { - "total": 7.833738502115011, - "queued": 1.103525, - "clean_up": 0.0007738582789897919, - "create_cpp": 0.04726468026638031, - "file_setup": 0.2604553271085024, - "compile_cpp": 4.593758463859558, - "create_r1cs": 0.017804840579628944, - "save_results": 0.005725737661123276, - "get_r1cs_info": 0.0007703714072704315, - "groth16_setup": 1.4161110799759626, - "export_verification_key": 1.4887929297983646, - "download_trusted_setup_file": 0.001879064366221428 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, + "compute_times": { + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "42288e72-32af-4d49-a000-0c4106d72b1a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:50.525Z", - "proving_scheme": "groth16", + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:06.256Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.721066S", - "compute_times": { - "total": 7.797398852184415, - "queued": 29.569685, - "clean_up": 0.00167049840092659, - "create_cpp": 0.05636698007583618, - "file_setup": 0.2505635917186737, - "compile_cpp": 4.744883842766285, - "create_r1cs": 0.009372701868414879, - "save_results": 0.0053126197308301926, - "get_r1cs_info": 0.0004866402596235275, - "groth16_setup": 1.37183235026896, - "export_verification_key": 1.3548658676445484, - "download_trusted_setup_file": 0.0013033263385295868 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, + "compute_times": { + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fbaee0ab-13a1-4548-9434-7f31a9db8909", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:50.133Z", - "proving_scheme": "groth16", + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:04.726Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.576409S", - "compute_times": { - "total": 7.656400920823216, - "queued": 27.995471, - "clean_up": 0.0009287483990192413, - "create_cpp": 0.05411672405898571, - "file_setup": 0.26574583910405636, - "compile_cpp": 4.590775987133384, - "create_r1cs": 0.01676061749458313, - "save_results": 0.00399848073720932, - "get_r1cs_info": 0.000689459964632988, - "groth16_setup": 1.3729439843446016, - "export_verification_key": 1.3473240491002798, - "download_trusted_setup_file": 0.0025283172726631165 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, + "compute_times": { + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "033af40b-8898-431b-a0e9-67c0d4a8d482", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:49.642Z", - "proving_scheme": "groth16", + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:03.182Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.669965S", - "compute_times": { - "total": 7.7474795281887054, - "queued": 25.186763, - "clean_up": 0.0007379837334156036, - "create_cpp": 0.05420535057783127, - "file_setup": 0.2591994274407625, - "compile_cpp": 4.683894477784634, - "create_r1cs": 0.01852503977715969, - "save_results": 0.004642404615879059, - "get_r1cs_info": 0.0008469689637422562, - "groth16_setup": 1.3640733323991299, - "export_verification_key": 1.3582920264452696, - "download_trusted_setup_file": 0.0026291999965906143 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, + "compute_times": { + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c3770fbd-f11b-4b49-90d3-cfad9feb3fd9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:49.597Z", - "proving_scheme": "groth16", + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:01.643Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.666218S", - "compute_times": { - "total": 7.743923228234053, - "queued": 16.244985, - "clean_up": 0.0016544517129659653, - "create_cpp": 0.04558009281754494, - "file_setup": 0.24755106307566166, - "compile_cpp": 4.744448408484459, - "create_r1cs": 0.01863648183643818, - "save_results": 0.005422661080956459, - "get_r1cs_info": 0.0007555857300758362, - "groth16_setup": 1.3294172957539558, - "export_verification_key": 1.347303519025445, - "download_trusted_setup_file": 0.002494456246495247 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, + "compute_times": { + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ace357b8-01b9-4f55-9d17-a2ca4bc4d638", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:05.843Z", - "proving_scheme": "groth16", + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:59.991Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.484466S", - "compute_times": { - "total": 7.562151093035936, - "queued": 20.625634, - "clean_up": 0.0017509087920188904, - "create_cpp": 0.04661180265247822, - "file_setup": 0.24942035041749477, - "compile_cpp": 4.542725313454866, - "create_r1cs": 0.019399696961045265, - "save_results": 0.007124448195099831, - "get_r1cs_info": 0.0007141679525375366, - "groth16_setup": 1.3570096530020237, - "export_verification_key": 1.3343026712536812, - "download_trusted_setup_file": 0.0024999063462018967 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, + "compute_times": { + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a69bedc7-a23a-48c0-9a6d-d7257cd0ee07", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:04.740Z", - "proving_scheme": "groth16", + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:58.419Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.611924S", - "compute_times": { - "total": 7.688939314335585, - "queued": 18.98661, - "clean_up": 0.0007829554378986359, - "create_cpp": 0.05032696574926376, - "file_setup": 0.2520132940262556, - "compile_cpp": 4.722641088068485, - "create_r1cs": 0.0107505451887846, - "save_results": 0.005139663815498352, - "get_r1cs_info": 0.0006618890911340714, - "groth16_setup": 1.3368865679949522, - "export_verification_key": 1.3068783804774284, - "download_trusted_setup_file": 0.0024257171899080276 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, + "compute_times": { + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2806fe3b-b959-40b4-b68a-6a48a4730339", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:04.538Z", - "proving_scheme": "groth16", + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:56.855Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.671080S", - "compute_times": { - "total": 7.7527586203068495, - "queued": 10.266939, - "clean_up": 0.0017596669495105743, - "create_cpp": 0.05662725120782852, - "file_setup": 0.24927497655153275, - "compile_cpp": 4.834171952679753, - "create_r1cs": 0.015801193192601204, - "save_results": 0.005597377195954323, - "get_r1cs_info": 0.0006633754819631577, - "groth16_setup": 1.285094628110528, - "export_verification_key": 1.3006944358348846, - "download_trusted_setup_file": 0.002444768324494362 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, + "compute_times": { + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "14806e82-8e0e-42f4-921c-aba1914cc309", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:04.382Z", - "proving_scheme": "groth16", + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:55.300Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.909717S", - "compute_times": { - "total": 7.9800247810781, - "queued": 1.219168, - "clean_up": 0.0017995405942201614, - "create_cpp": 0.04708561487495899, - "file_setup": 0.2477656602859497, - "compile_cpp": 4.89770944416523, - "create_r1cs": 0.01611543633043766, - "save_results": 0.005786914378404617, - "get_r1cs_info": 0.0007048510015010834, - "groth16_setup": 1.3873562160879374, - "export_verification_key": 1.3729455471038818, - "download_trusted_setup_file": 0.002437746152281761 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, + "compute_times": { + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6ed31334-d260-4652-ad11-fce789b04ad2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:09.984Z", - "proving_scheme": "groth16", + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:53.639Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.597495S", - "compute_times": { - "total": 7.674594018608332, - "queued": 8.634986, - "clean_up": 0.0016419794410467148, - "create_cpp": 0.047586649656295776, - "file_setup": 0.2436046116054058, - "compile_cpp": 4.683977667242289, - "create_r1cs": 0.017859995365142822, - "save_results": 0.00542888417840004, - "get_r1cs_info": 0.0007064882665872574, - "groth16_setup": 1.3227286096662283, - "export_verification_key": 1.3475021123886108, - "download_trusted_setup_file": 0.00292983278632164 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, + "compute_times": { + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "adb0b7b7-c2cd-4260-8369-e0f2d400a104", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:09.000Z", - "proving_scheme": "groth16", + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.345Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.020968S", - "compute_times": { - "total": 8.11050195991993, - "queued": 1.106339, - "clean_up": 0.0017776619642972946, - "create_cpp": 0.042624855414032936, - "file_setup": 0.29933272302150726, - "compile_cpp": 4.833516420796514, - "create_r1cs": 0.01687009632587433, - "save_results": 0.006504466757178307, - "get_r1cs_info": 0.00066353939473629, - "groth16_setup": 1.4784862399101257, - "export_verification_key": 1.427861487492919, - "download_trusted_setup_file": 0.002409808337688446 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, + "compute_times": { + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "22d70ee8-f3df-4941-b399-07d13f78abe9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:08.494Z", - "proving_scheme": "groth16", + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.240Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.691111S", - "compute_times": { - "total": 7.771573496982455, - "queued": 1.17, - "clean_up": 0.0016926135867834091, - "create_cpp": 0.05935652367770672, - "file_setup": 0.2620077710598707, - "compile_cpp": 4.75682108476758, - "create_r1cs": 0.014452280476689339, - "save_results": 0.005480160936713219, - "get_r1cs_info": 0.0006888676434755325, - "groth16_setup": 1.3388383872807026, - "export_verification_key": 1.32946134544909, - "download_trusted_setup_file": 0.0022690370678901672 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, + "compute_times": { + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "737f5589-b161-48c1-8afb-3c24a136a6c1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:08.468Z", - "proving_scheme": "groth16", + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.291924S", - "compute_times": { - "total": 8.365394989028573, - "queued": 1.157799, - "clean_up": 0.0015689730644226074, - "create_cpp": 0.04686474800109863, - "file_setup": 0.24952785670757294, - "compile_cpp": 5.094061799347401, - "create_r1cs": 0.019047506153583527, - "save_results": 0.0056635066866874695, - "get_r1cs_info": 0.0004320461302995682, - "groth16_setup": 1.5466318130493164, - "export_verification_key": 1.39987507276237, - "download_trusted_setup_file": 0.0013030990958213806 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, + "compute_times": { + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "00baff55-6d30-4365-9727-806c227187ec", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:15:35.627Z", - "proving_scheme": "groth16", + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.619282S", - "compute_times": { - "total": 7.691293215379119, - "queued": 19.200144, - "clean_up": 0.0017832368612289429, - "create_cpp": 0.04681010544300079, - "file_setup": 0.24938089400529861, - "compile_cpp": 4.651383237913251, - "create_r1cs": 0.016947990283370018, - "save_results": 0.0064728278666734695, - "get_r1cs_info": 0.0008025597780942917, - "groth16_setup": 1.3398670889437199, - "export_verification_key": 1.37474081851542, - "download_trusted_setup_file": 0.002573670819401741 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, + "compute_times": { + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "83b80a52-0af7-4ce3-971e-f271e4657643", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:15:35.129Z", - "proving_scheme": "groth16", + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.112Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.374925S", - "compute_times": { - "total": 7.4528124667704105, - "queued": 16.312228, - "clean_up": 0.0017383582890033722, - "create_cpp": 0.05669763870537281, - "file_setup": 0.2676529083400965, - "compile_cpp": 4.4346959348768, - "create_r1cs": 0.017131024971604347, - "save_results": 0.0058726053684949875, - "get_r1cs_info": 0.00045347586274147034, - "groth16_setup": 1.302895437926054, - "export_verification_key": 1.3638175278902054, - "download_trusted_setup_file": 0.001258334144949913 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, + "compute_times": { + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5db66e21-93fa-4cfd-9b54-eba6cc5f0b5d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:15:35.089Z", - "proving_scheme": "groth16", + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:39.613Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.658449S", - "compute_times": { - "total": 7.735888196155429, - "queued": 15.077966, - "clean_up": 0.0016767363995313644, - "create_cpp": 0.047638872638344765, - "file_setup": 0.2675781920552254, - "compile_cpp": 4.7792276702821255, - "create_r1cs": 0.018472682684659958, - "save_results": 0.00616835243999958, - "get_r1cs_info": 0.0007582195103168488, - "groth16_setup": 1.3009603060781956, - "export_verification_key": 1.3102184478193521, - "download_trusted_setup_file": 0.002536667510867119 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, + "compute_times": { + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5665be07-b604-414b-b6a1-9f87a21cab12", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:01:33.996Z", - "proving_scheme": "groth16", + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:38.083Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.358621S", - "compute_times": { - "total": 7.430434772744775, - "queued": 1.067157, - "clean_up": 0.0017831884324550629, - "create_cpp": 0.04887022823095322, - "file_setup": 0.24746119230985641, - "compile_cpp": 4.42920583859086, - "create_r1cs": 0.015806885436177254, - "save_results": 0.005989404395222664, - "get_r1cs_info": 0.000494047999382019, - "groth16_setup": 1.2992996741086245, - "export_verification_key": 1.3796110693365335, - "download_trusted_setup_file": 0.0014664717018604279 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, + "compute_times": { + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3bc09c20-22e4-443a-b3c1-55ddb5488ed4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:53.344Z", - "proving_scheme": "groth16", + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:36.595Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.484230S", - "compute_times": { - "total": 7.559012655168772, - "queued": 24.038113, - "clean_up": 0.001834215596318245, - "create_cpp": 0.047222478315234184, - "file_setup": 0.2665374279022217, - "compile_cpp": 4.527841242030263, - "create_r1cs": 0.010656235739588737, - "save_results": 0.005962014198303223, - "get_r1cs_info": 0.0007966365665197372, - "groth16_setup": 1.3851932883262634, - "export_verification_key": 1.3095076736062765, - "download_trusted_setup_file": 0.0028558634221553802 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, + "compute_times": { + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b16923be-f1f5-4721-b1fe-e77e60c5075c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:52.361Z", - "proving_scheme": "groth16", + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:35.046Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.613447S", - "compute_times": { - "total": 7.678777739405632, - "queued": 18.390724, - "clean_up": 0.0018066484481096268, - "create_cpp": 0.046223074197769165, - "file_setup": 0.2186940722167492, - "compile_cpp": 4.732459098100662, - "create_r1cs": 0.016505463048815727, - "save_results": 0.005674159154295921, - "get_r1cs_info": 0.0008121822029352188, - "groth16_setup": 1.3473218008875847, - "export_verification_key": 1.3064227681607008, - "download_trusted_setup_file": 0.0024397335946559906 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, + "compute_times": { + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "85cadabf-0e5d-41ba-8414-9b85a788205a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:52.036Z", - "proving_scheme": "groth16", + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:33.547Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.728439S", - "compute_times": { - "total": 7.805055180564523, - "queued": 9.804823, - "clean_up": 0.001579929143190384, - "create_cpp": 0.04664304107427597, - "file_setup": 0.2456628568470478, - "compile_cpp": 4.755457693710923, - "create_r1cs": 0.01651918888092041, - "save_results": 0.005783999338746071, - "get_r1cs_info": 0.0008587650954723358, - "groth16_setup": 1.394832018762827, - "export_verification_key": 1.3348707742989063, - "download_trusted_setup_file": 0.0024223458021879196 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, + "compute_times": { + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "00cf3999-3779-4e65-bd0e-61d6f2fa12c5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:51.993Z", - "proving_scheme": "groth16", + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:40.710Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.467315S", - "compute_times": { - "total": 7.544081119820476, - "queued": 1.176942, - "clean_up": 0.0019962936639785767, - "create_cpp": 0.05820799432694912, - "file_setup": 0.23373237252235413, - "compile_cpp": 4.640454025939107, - "create_r1cs": 0.010518679395318031, - "save_results": 0.005797773599624634, - "get_r1cs_info": 0.0006531458348035812, - "groth16_setup": 1.3033402767032385, - "export_verification_key": 1.2865915279835463, - "download_trusted_setup_file": 0.0024898946285247803 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, + "compute_times": { + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "91708ea2-6a57-4d0f-b439-e615c869eb0c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:12.640Z", - "proving_scheme": "groth16", + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:39.000Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.566330S", - "compute_times": { - "total": 7.638872114941478, - "queued": 1.083533, - "clean_up": 0.0016686953604221344, - "create_cpp": 0.05361836962401867, - "file_setup": 0.22490951046347618, - "compile_cpp": 4.661991640925407, - "create_r1cs": 0.011098312214016914, - "save_results": 0.005372248589992523, - "get_r1cs_info": 0.0006810426712036133, - "groth16_setup": 1.2943047359585762, - "export_verification_key": 1.3822605535387993, - "download_trusted_setup_file": 0.002469819039106369 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, + "compute_times": { + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "80695249-80cb-4b30-a607-9a08ce4088aa", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:58:37.170Z", - "proving_scheme": "groth16", + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:37.260Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.588053S", - "compute_times": { - "total": 7.659883642569184, - "queued": 1.115212, - "clean_up": 0.0017240364104509354, - "create_cpp": 0.05423728749155998, - "file_setup": 0.22653288766741753, - "compile_cpp": 4.715006854385138, - "create_r1cs": 0.01801958493888378, - "save_results": 0.005619559437036514, - "get_r1cs_info": 0.0006584189832210541, - "groth16_setup": 1.3719583936035633, - "export_verification_key": 1.2632665000855923, - "download_trusted_setup_file": 0.0024633388966321945 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, + "compute_times": { + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3e14f13a-54bd-4442-b5b7-96e5317e52ed", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:57:16.314Z", - "proving_scheme": "groth16", + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:35.691Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.363533S", - "compute_times": { - "total": 7.428888592869043, - "queued": 1.09539, - "clean_up": 0.0010978449136018753, - "create_cpp": 0.05030778981745243, - "file_setup": 0.220810754224658, - "compile_cpp": 4.5690462831407785, - "create_r1cs": 0.017519544810056686, - "save_results": 0.0052297115325927734, - "get_r1cs_info": 0.000794650986790657, - "groth16_setup": 1.3148892186582088, - "export_verification_key": 1.246385119855404, - "download_trusted_setup_file": 0.002508854493498802 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, + "compute_times": { + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f049037e-e519-40da-a915-67be08cbb857", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:56:20.673Z", - "proving_scheme": "groth16", + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:34.182Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.554562S", - "compute_times": { - "total": 7.62885358184576, - "queued": 1.122774, - "clean_up": 0.0015935692936182022, - "create_cpp": 0.038827916607260704, - "file_setup": 0.2388095259666443, - "compile_cpp": 4.741127427667379, - "create_r1cs": 0.017170095816254616, - "save_results": 0.005732323974370956, - "get_r1cs_info": 0.0008209142833948135, - "groth16_setup": 1.341518772765994, - "export_verification_key": 1.2402091566473246, - "download_trusted_setup_file": 0.0024810880422592163 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, + "compute_times": { + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c6b7c7c4-a68c-4c52-a44d-c430303e9c83", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:56:06.666Z", - "proving_scheme": "groth16", + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:32.679Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.640262S", - "compute_times": { - "total": 7.717317624017596, - "queued": 1.153472, - "clean_up": 0.001708121970295906, - "create_cpp": 0.055834874510765076, - "file_setup": 0.26282420568168163, - "compile_cpp": 4.616852128878236, - "create_r1cs": 0.01816796325147152, - "save_results": 0.005182689055800438, - "get_r1cs_info": 0.0008097067475318909, - "groth16_setup": 1.4200150053948164, - "export_verification_key": 1.3325735349208117, - "download_trusted_setup_file": 0.0028655603528022766 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, + "compute_times": { + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7ce11338-e787-4c30-872e-4994cf25cd21", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:55:47.449Z", - "proving_scheme": "groth16", + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:31.191Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.649332S", - "compute_times": { - "total": 7.72703692317009, - "queued": 1.083808, - "clean_up": 0.0017609763890504837, - "create_cpp": 0.055810270830988884, - "file_setup": 0.23338888958096504, - "compile_cpp": 4.682565299794078, - "create_r1cs": 0.017131242901086807, - "save_results": 0.005780013278126717, - "get_r1cs_info": 0.0008372049778699875, - "groth16_setup": 1.321879891678691, - "export_verification_key": 1.4050091002136469, - "download_trusted_setup_file": 0.0024436842650175095 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, + "compute_times": { + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "21b7b98f-ac89-4036-984a-9b7d76c8246e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:54:57.998Z", - "proving_scheme": "groth16", + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:29.642Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.709162S", - "compute_times": { - "total": 7.77805152349174, - "queued": 1.14492, - "clean_up": 0.0016839038580656052, - "create_cpp": 0.04769276827573776, - "file_setup": 0.24134804122149944, - "compile_cpp": 4.741177011281252, - "create_r1cs": 0.01839756965637207, - "save_results": 0.00636446475982666, - "get_r1cs_info": 0.0007227305322885513, - "groth16_setup": 1.3326963353902102, - "export_verification_key": 1.3850416559726, - "download_trusted_setup_file": 0.0024724528193473816 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, + "compute_times": { + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1ea845af-4477-4887-b4c9-1fc60922c64a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:54:16.166Z", - "proving_scheme": "groth16", + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:27.981Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.418977S", - "compute_times": { - "total": 7.494983484968543, - "queued": 1.149669, - "clean_up": 0.0016745738685131073, - "create_cpp": 0.05047656036913395, - "file_setup": 0.2317434661090374, - "compile_cpp": 4.548192359507084, - "create_r1cs": 0.01588592678308487, - "save_results": 0.0058114491403102875, - "get_r1cs_info": 0.0006539300084114075, - "groth16_setup": 1.359997482970357, - "export_verification_key": 1.2780188340693712, - "download_trusted_setup_file": 0.0020805764943361282 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, + "compute_times": { + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ae8e8612-b57b-484a-992b-a2e9077ded25", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:53:57.024Z", - "proving_scheme": "groth16", + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:26.328Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.568414S", - "compute_times": { - "total": 7.645044168457389, - "queued": 1.146369, - "clean_up": 0.0016998127102851868, - "create_cpp": 0.051619796082377434, - "file_setup": 0.24771465547382832, - "compile_cpp": 4.563909590244293, - "create_r1cs": 0.017467238008975983, - "save_results": 0.0046049561351537704, - "get_r1cs_info": 0.0007205326110124588, - "groth16_setup": 1.392288465052843, - "export_verification_key": 1.3620477262884378, - "download_trusted_setup_file": 0.0024884194135665894 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, + "compute_times": { + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f2be0b1e-405f-4793-82eb-31ae4233e9b6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:48:07.274Z", - "proving_scheme": "groth16", + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:54.687Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.634375S", - "compute_times": { - "total": 7.711648900061846, - "queued": 1.151518, - "clean_up": 0.0016132276505231857, - "create_cpp": 0.051139988005161285, - "file_setup": 0.23978900723159313, - "compile_cpp": 4.6589622385799885, - "create_r1cs": 0.010407604277133942, - "save_results": 0.0053712837398052216, - "get_r1cs_info": 0.0006775856018066406, - "groth16_setup": 1.376387370750308, - "export_verification_key": 1.364480024203658, - "download_trusted_setup_file": 0.0024138204753398895 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, + "compute_times": { + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "65318a49-b41d-4ff8-897a-1cdebf6379cd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:46:27.705Z", - "proving_scheme": "groth16", + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:52.059Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.794943S", - "compute_times": { - "total": 7.869940539821982, - "queued": 1.12935, - "clean_up": 0.001537129282951355, - "create_cpp": 0.046995386481285095, - "file_setup": 0.24573437683284283, - "compile_cpp": 4.844812747091055, - "create_r1cs": 0.010960787534713745, - "save_results": 0.00475454144179821, - "get_r1cs_info": 0.0004996396601200104, - "groth16_setup": 1.4448041189461946, - "export_verification_key": 1.2678779624402523, - "download_trusted_setup_file": 0.0016316790133714676 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, + "compute_times": { + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2c7b1bf7-070e-4c11-a948-0f02bf06248a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:40:38.978Z", - "proving_scheme": "groth16", + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:49.557Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.664033S", - "compute_times": { - "total": 7.736426949501038, - "queued": 1.136515, - "clean_up": 0.001613633707165718, - "create_cpp": 0.04840335436165333, - "file_setup": 0.22559695690870285, - "compile_cpp": 4.761518849059939, - "create_r1cs": 0.01633301004767418, - "save_results": 0.0055974628776311874, - "get_r1cs_info": 0.0007108338177204132, - "groth16_setup": 1.3652087282389402, - "export_verification_key": 1.308535685762763, - "download_trusted_setup_file": 0.0024619195610284805 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, + "compute_times": { + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "87fdc20a-7e4b-4244-931d-ab5548da9644", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:40:08.434Z", - "proving_scheme": "groth16", + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:47.111Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.326295S", - "compute_times": { - "total": 7.400858150795102, - "queued": 1.118441, - "clean_up": 0.0016694236546754837, - "create_cpp": 0.04726249352097511, - "file_setup": 0.22566148824989796, - "compile_cpp": 4.567545756697655, - "create_r1cs": 0.01814442314207554, - "save_results": 0.005112992599606514, - "get_r1cs_info": 0.0006955582648515701, - "groth16_setup": 1.211182564496994, - "export_verification_key": 1.3208420500159264, - "download_trusted_setup_file": 0.002416292205452919 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, + "compute_times": { + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "48fa4f1d-8be2-4377-b0a3-e847a4c9d0b4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:39:39.153Z", - "proving_scheme": "groth16", + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:44.587Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.594315S", - "compute_times": { - "total": 7.668981021270156, - "queued": 14.286631, - "clean_up": 0.001645909622311592, - "create_cpp": 0.04893757589161396, - "file_setup": 0.2278295625001192, - "compile_cpp": 4.749169761314988, - "create_r1cs": 0.018283158540725708, - "save_results": 0.00601276196539402, - "get_r1cs_info": 0.0007984023541212082, - "groth16_setup": 1.3189964778721333, - "export_verification_key": 1.2939927615225315, - "download_trusted_setup_file": 0.0029653161764144897 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, + "compute_times": { + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3719aee6-7aa8-443b-9ccd-c6dd06bc0947", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:38.604Z", - "proving_scheme": "groth16", + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:32.787Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.483459S", - "compute_times": { - "total": 7.563022721558809, - "queued": 17.659509, - "clean_up": 0.0018138419836759567, - "create_cpp": 0.04657592810690403, - "file_setup": 0.25030036829411983, - "compile_cpp": 4.458605896681547, - "create_r1cs": 0.010267989709973335, - "save_results": 0.006375599652528763, - "get_r1cs_info": 0.0003939960151910782, - "groth16_setup": 1.3946119882166386, - "export_verification_key": 1.3923067282885313, - "download_trusted_setup_file": 0.0011770892888307571 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, + "compute_times": { + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fdaa2dd0-a1ed-4313-ad5b-bd23d130fb47", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:37.752Z", - "proving_scheme": "groth16", + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:29.506Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.576781S", - "compute_times": { - "total": 7.655046196654439, - "queued": 18.143709, - "clean_up": 0.0016271453350782394, - "create_cpp": 0.052942270413041115, - "file_setup": 0.23309797048568726, - "compile_cpp": 4.72314483858645, - "create_r1cs": 0.01772555708885193, - "save_results": 0.00583222322165966, - "get_r1cs_info": 0.0007539559155702591, - "groth16_setup": 1.292042575776577, - "export_verification_key": 1.3249626532196999, - "download_trusted_setup_file": 0.002419590950012207 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, + "compute_times": { + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3f8e4d03-69b6-43c8-93c1-d447edf67b35", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:37.266Z", - "proving_scheme": "groth16", + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:26.174Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.236164S", - "compute_times": { - "total": 7.311267904937267, - "queued": 1.155332, - "clean_up": 0.0008716173470020294, - "create_cpp": 0.05489862523972988, - "file_setup": 0.2424852568656206, - "compile_cpp": 4.473982494324446, - "create_r1cs": 0.01902007684111595, - "save_results": 0.005060611292719841, - "get_r1cs_info": 0.00068698450922966, - "groth16_setup": 1.2233653031289577, - "export_verification_key": 1.2878586202859879, - "download_trusted_setup_file": 0.002506690099835396 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, + "compute_times": { + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c55e85d0-37b5-4821-b205-f033b2bb85a9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:37.258Z", - "proving_scheme": "groth16", + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:10:50.403Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.909980S", - "compute_times": { - "total": 7.98988794349134, - "queued": 9.595895, - "clean_up": 0.0014979057013988495, - "create_cpp": 0.056887710466980934, - "file_setup": 0.2363742906600237, - "compile_cpp": 4.887871127575636, - "create_r1cs": 0.016758300364017487, - "save_results": 0.00578792579472065, - "get_r1cs_info": 0.000655466690659523, - "groth16_setup": 1.3654928021132946, - "export_verification_key": 1.4161598179489374, - "download_trusted_setup_file": 0.00191524438560009 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, + "compute_times": { + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6a61d82c-84e8-4c6b-9cbc-afa59a3dd297", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:50:20.025Z", - "proving_scheme": "groth16", + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:47.502Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.851374S", - "compute_times": { - "total": 7.936480965465307, - "queued": 1.058339, - "clean_up": 0.001843426376581192, - "create_cpp": 0.04711670242249966, - "file_setup": 0.2590673416852951, - "compile_cpp": 4.6749470960348845, - "create_r1cs": 0.011059625074267387, - "save_results": 0.006622841581702232, - "get_r1cs_info": 0.0006548557430505753, - "groth16_setup": 1.4773112516850233, - "export_verification_key": 1.4550056345760822, - "download_trusted_setup_file": 0.002507215365767479 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, + "compute_times": { + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 }, + "file_size": 451, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f076d1e9-1221-4e4f-b93a-5d1a65e70f91", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:50:18.711Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.671909S", - "compute_times": { - "total": 7.752114692702889, - "queued": 1.120105, - "clean_up": 0.0017052926123142242, - "create_cpp": 0.0554554108530283, - "file_setup": 0.254299521446228, - "compile_cpp": 4.53538416698575, - "create_r1cs": 0.019296107813715935, - "save_results": 0.005684012547135353, - "get_r1cs_info": 0.000739341601729393, - "groth16_setup": 1.4482497554272413, - "export_verification_key": 1.4276448003947735, - "download_trusted_setup_file": 0.0031732507050037384 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:39.474Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, + "compute_times": { + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" }, { - "circuit_id": "3ac018ab-21c3-4149-9bec-ae77a8fb49ab", - "circuit_name": "circom-multiplier2", + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", "circuit_type": "circom", - "date_created": "2024-01-14T16:50:18.680Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.682966S", - "compute_times": { - "total": 7.775568487122655, - "queued": 1.374417, - "clean_up": 0.0017570890486240387, - "create_cpp": 0.04991978965699673, - "file_setup": 0.2661570589989424, - "compile_cpp": 4.481879696249962, - "create_r1cs": 0.017130015417933464, - "save_results": 0.005561588332056999, - "get_r1cs_info": 0.0007625855505466461, - "groth16_setup": 1.442964818328619, - "export_verification_key": 1.5065135695040226, - "download_trusted_setup_file": 0.00246431864798069 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-27T02:04:03.037Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, + "compute_times": { + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "circuit_id": "ce96ccac-95af-43a0-a81e-cd23e9068d37", - "circuit_name": "circom-multiplier2", + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", "circuit_type": "circom", - "date_created": "2024-01-14T16:50:18.623Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.668288S", - "compute_times": { - "total": 7.74694580771029, - "queued": 1.160826, - "clean_up": 0.0016458947211503983, - "create_cpp": 0.05009524151682854, - "file_setup": 0.27001221664249897, - "compile_cpp": 4.7398079466074705, - "create_r1cs": 0.01706443540751934, - "save_results": 0.0056135449558496475, - "get_r1cs_info": 0.0006729774177074432, - "groth16_setup": 1.340934656560421, - "export_verification_key": 1.3180796634405851, - "download_trusted_setup_file": 0.002530023455619812 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-27T02:02:47.565Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, + "compute_times": { + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "circuit_id": "d2151d0c-5dcb-49ae-b451-f763b9fb0830", - "circuit_name": "circom-multiplier2", + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", "circuit_type": "circom", - "date_created": "2024-01-14T16:49:27.765Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.710537S", - "compute_times": { - "total": 7.809466190636158, - "queued": 1.098008, - "clean_up": 0.001737702637910843, - "create_cpp": 0.048770468682050705, - "file_setup": 0.2964275795966387, - "compile_cpp": 4.62178766913712, - "create_r1cs": 0.016994547098875046, - "save_results": 0.005755074322223663, - "get_r1cs_info": 0.000483684241771698, - "groth16_setup": 1.4868505895137787, - "export_verification_key": 1.328504517674446, - "download_trusted_setup_file": 0.001583334058523178 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-27T02:02:37.757Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, + "compute_times": { + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "circuit_id": "4b8bd698-0ec8-4a3c-b054-dc94702908b8", - "circuit_name": "circom-multiplier2", + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", "circuit_type": "circom", - "date_created": "2024-01-14T16:49:26.693Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.874326S", - "compute_times": { - "total": 7.964226454496384, - "queued": 1.179343, - "clean_up": 0.0016873739659786224, - "create_cpp": 0.049062516540288925, - "file_setup": 0.26052811928093433, - "compile_cpp": 4.61213406175375, - "create_r1cs": 0.018942877650260925, - "save_results": 0.006677566096186638, - "get_r1cs_info": 0.0005794204771518707, - "groth16_setup": 1.48171117156744, - "export_verification_key": 1.5311051458120346, - "download_trusted_setup_file": 0.0014842581003904343 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-27T02:00:37.596Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, + "compute_times": { + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "circuit_id": "155b4b85-b7ae-4f95-a4ed-4147a7de7fe6", - "circuit_name": "circom-multiplier2", + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", "circuit_type": "circom", - "date_created": "2024-01-14T16:49:26.383Z", - "proving_scheme": "groth16", + "date_created": "2024-02-16T16:46:40.976Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.749949S", - "compute_times": { - "total": 7.829013995826244, - "queued": 1.142999, - "clean_up": 0.0008353088051080704, - "create_cpp": 0.053893035277724266, - "file_setup": 0.24244733341038227, - "compile_cpp": 4.61862338334322, - "create_r1cs": 0.015483187511563301, - "save_results": 0.004380660131573677, - "get_r1cs_info": 0.0006992518901824951, - "groth16_setup": 1.4251426942646503, - "export_verification_key": 1.4645712282508612, - "download_trusted_setup_file": 0.0024489928036928177 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, + "compute_times": { + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 }, + "file_size": 789, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "413361ac-bcaa-4057-85e6-479dc0e9deba", - "circuit_name": "circom-multiplier2", + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", "circuit_type": "circom", - "date_created": "2024-01-14T16:49:26.324Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.642788S", - "compute_times": { - "total": 7.720644621178508, - "queued": 1.162661, - "clean_up": 0.0008935760706663132, - "create_cpp": 0.05431099981069565, - "file_setup": 0.2567560989409685, - "compile_cpp": 4.618247997015715, - "create_r1cs": 0.01814628764986992, - "save_results": 0.0049981530755758286, - "get_r1cs_info": 0.0009683482348918915, - "groth16_setup": 1.4208254627883434, - "export_verification_key": 1.342044984921813, - "download_trusted_setup_file": 0.002907775342464447 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T19:09:39.253Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, + "compute_times": { + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" }, { - "circuit_id": "f6721499-2c00-429c-9215-306562087f3c", - "circuit_name": "circom-multiplier2", + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:59.864Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.476797S", - "compute_times": { - "total": 7.554694190621376, - "queued": 8.490739, - "clean_up": 0.001280084252357483, - "create_cpp": 0.04679052531719208, - "file_setup": 0.2480800412595272, - "compile_cpp": 4.608315961435437, - "create_r1cs": 0.010296281427145004, - "save_results": 0.005138525739312172, - "get_r1cs_info": 0.0006614606827497482, - "groth16_setup": 1.2760554868727922, - "export_verification_key": 1.3551383931189775, - "download_trusted_setup_file": 0.002459688112139702 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T19:08:49.137Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, + "compute_times": { + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "circuit_id": "c64d50b6-82b2-488e-b16a-d8579f7164b2", - "circuit_name": "circom-multiplier2", + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:58.842Z", - "proving_scheme": "groth16", + "date_created": "2024-02-15T16:53:18.626Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.682333S", - "compute_times": { - "total": 7.775689832866192, - "queued": 1.146722, - "clean_up": 0.0018197707831859589, - "create_cpp": 0.045808885246515274, - "file_setup": 0.2579942364245653, - "compile_cpp": 4.6305790320038795, - "create_r1cs": 0.0165061317384243, - "save_results": 0.006031488999724388, - "get_r1cs_info": 0.0005368776619434357, - "groth16_setup": 1.4302892293781042, - "export_verification_key": 1.3840640261769295, - "download_trusted_setup_file": 0.001457681879401207 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, + "compute_times": { + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fd68ec95-cb88-4944-a62e-d762e4d6e851", - "circuit_name": "circom-multiplier2", + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:58.484Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.845773S", - "compute_times": { - "total": 7.921329101547599, - "queued": 1.401368, - "clean_up": 0.0007218196988105774, - "create_cpp": 0.05786048248410225, - "file_setup": 0.303074324503541, - "compile_cpp": 4.705286420881748, - "create_r1cs": 0.0170378927141428, - "save_results": 0.005208676680922508, - "get_r1cs_info": 0.0006915386766195297, - "groth16_setup": 1.3473380841314793, - "export_verification_key": 1.4811212103813887, - "download_trusted_setup_file": 0.0025439634919166565 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:49:33.830Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, + "compute_times": { + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "circuit_id": "150e09f9-0ad0-4b12-9afa-1c95076c1ad2", - "circuit_name": "circom-multiplier2", + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:58.436Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.537626S", - "compute_times": { - "total": 7.609223047271371, - "queued": 1.174004, - "clean_up": 0.0018986072391271591, - "create_cpp": 0.04804324172437191, - "file_setup": 0.23359503969550133, - "compile_cpp": 4.719695445150137, - "create_r1cs": 0.017463305965065956, - "save_results": 0.005400665104389191, - "get_r1cs_info": 0.0008178930729627609, - "groth16_setup": 1.291828017681837, - "export_verification_key": 1.2875860054045916, - "download_trusted_setup_file": 0.002461083233356476 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:48:55.324Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, + "compute_times": { + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "circuit_id": "8697f2af-8ae6-406c-a49a-032242345f4c", - "circuit_name": "circom-multiplier2", + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:08.500Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.786954S", - "compute_times": { - "total": 7.866660824045539, - "queued": 26.529028, - "clean_up": 0.001429310068488121, - "create_cpp": 0.05666426755487919, - "file_setup": 0.24920494854450226, - "compile_cpp": 4.811976304277778, - "create_r1cs": 0.009921343997120857, - "save_results": 0.005788298323750496, - "get_r1cs_info": 0.000774867832660675, - "groth16_setup": 1.3699789196252823, - "export_verification_key": 1.3578939326107502, - "download_trusted_setup_file": 0.0025129076093435287 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:47:58.610Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, + "compute_times": { + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "circuit_id": "1d8ed536-7799-4104-9829-aab438b46c50", - "circuit_name": "circom-multiplier2", + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:07.542Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.742077S", - "compute_times": { - "total": 7.817316031083465, - "queued": 18.599385, - "clean_up": 0.0018254183232784271, - "create_cpp": 0.046345429494977, - "file_setup": 0.2319784890860319, - "compile_cpp": 4.7667300291359425, - "create_r1cs": 0.028794724494218826, - "save_results": 0.00572955422103405, - "get_r1cs_info": 0.0007030870765447617, - "groth16_setup": 1.3311582524329424, - "export_verification_key": 1.4022186826914549, - "download_trusted_setup_file": 0.0013777166604995728 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:47:01.336Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, + "compute_times": { + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "circuit_id": "31036229-08f3-46ef-8764-d07d8457ae98", - "circuit_name": "circom-multiplier2", + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:07.152Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.755260S", - "compute_times": { - "total": 7.827754411846399, - "queued": 1.187311, - "clean_up": 0.0015825219452381134, - "create_cpp": 0.055841829627752304, - "file_setup": 0.24094245955348015, - "compile_cpp": 4.727515337988734, - "create_r1cs": 0.01797172799706459, - "save_results": 0.00582987442612648, - "get_r1cs_info": 0.0007000844925642014, - "groth16_setup": 1.3169381711632013, - "export_verification_key": 1.457504654303193, - "download_trusted_setup_file": 0.0024551209062337875 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:45:59.082Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, + "compute_times": { + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "circuit_id": "5903cf7f-4216-4310-9b75-38372f8c388c", - "circuit_name": "circom-multiplier2", + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", "circuit_type": "circom", - "date_created": "2024-01-14T16:48:07.102Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.629072S", - "compute_times": { - "total": 7.706731498241425, - "queued": 10.220574, - "clean_up": 0.0017311125993728638, - "create_cpp": 0.04118148237466812, - "file_setup": 0.24070367217063904, - "compile_cpp": 4.700527288019657, - "create_r1cs": 0.018805818632245064, - "save_results": 0.00452309288084507, - "get_r1cs_info": 0.0006768498569726944, - "groth16_setup": 1.3046912178397179, - "export_verification_key": 1.3908804636448622, - "download_trusted_setup_file": 0.002524895593523979 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-12T16:08:49.852Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, + "compute_times": { + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "circuit_id": "b0c793e4-b515-45ac-8a72-cfae0ac922dc", - "circuit_name": "circom-multiplier2", + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", "circuit_type": "circom", - "date_created": "2024-01-14T16:44:24.312Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.482628S", - "compute_times": { - "total": 7.561975220218301, - "queued": 1.222391, - "clean_up": 0.0017055310308933258, - "create_cpp": 0.05199330858886242, - "file_setup": 0.2374334391206503, - "compile_cpp": 4.667886773124337, - "create_r1cs": 0.01656530611217022, - "save_results": 0.006572069600224495, - "get_r1cs_info": 0.000768609344959259, - "groth16_setup": 1.3185450080782175, - "export_verification_key": 1.257138391956687, - "download_trusted_setup_file": 0.002875484526157379 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-12T16:08:15.347Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, + "compute_times": { + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "circuit_id": "8233556a-9137-4b8f-87d6-5bef601f558e", - "circuit_name": "circom-multiplier2", + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", "circuit_type": "circom", - "date_created": "2024-01-14T16:43:35.089Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.884736S", - "compute_times": { - "total": 7.959419224411249, - "queued": 1.229535, - "clean_up": 0.0019381027668714523, - "create_cpp": 0.05442995950579643, - "file_setup": 0.24910731054842472, - "compile_cpp": 4.846454568207264, - "create_r1cs": 0.017506379634141922, - "save_results": 0.006044380366802216, - "get_r1cs_info": 0.0007475633174180984, - "groth16_setup": 1.4534037355333567, - "export_verification_key": 1.326861247420311, - "download_trusted_setup_file": 0.0024160724133253098 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "date_created": "2024-02-12T16:07:32.862Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, + "compute_times": { + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, + "compute_times": { + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "circuit_id": "33b156af-e90c-45b9-8443-ef17bd8f6d97", - "circuit_name": "circom-multiplier2", + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", "circuit_type": "circom", - "date_created": "2024-01-14T16:42:30.035Z", - "proving_scheme": "groth16", + "date_created": "2024-02-11T19:35:59.958Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.407008S", - "compute_times": { - "total": 7.483849035575986, - "queued": 1.19642, - "clean_up": 0.0023624245077371597, - "create_cpp": 0.04774354584515095, - "file_setup": 0.2423761673271656, - "compile_cpp": 4.617915507405996, - "create_r1cs": 0.010918818414211273, - "save_results": 0.005705619230866432, - "get_r1cs_info": 0.0007171276956796646, - "groth16_setup": 1.274269174784422, - "export_verification_key": 1.2790968604385853, - "download_trusted_setup_file": 0.0024453066289424896 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, + "compute_times": { + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, + "compute_times": { + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "circuit_id": "fdfc7247-b167-4abd-91b0-6371c1577350", - "circuit_name": "circom-multiplier2", + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", "circuit_type": "circom", - "date_created": "2024-01-14T16:41:31.147Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.445445S", - "compute_times": { - "total": 7.523868313059211, - "queued": 1.124406, - "clean_up": 0.0018163751810789108, - "create_cpp": 0.05418575927615166, - "file_setup": 0.2429647035896778, - "compile_cpp": 4.620327420532703, - "create_r1cs": 0.009532531723380089, - "save_results": 0.005571851506829262, - "get_r1cs_info": 0.0006300453096628189, - "groth16_setup": 1.2738962657749653, - "export_verification_key": 1.312037419527769, - "download_trusted_setup_file": 0.0024276338517665863 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "date_created": "2024-02-11T19:34:33.443Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, + "compute_times": { + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, + "compute_times": { + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "circuit_id": "42522dc2-f82b-4520-967a-55e3e5dabc3c", + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", "circuit_type": "circom", - "date_created": "2024-01-14T16:41:15.809Z", - "proving_scheme": "groth16", + "date_created": "2024-01-31T18:16:21.991Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.571921S", - "compute_times": { - "total": 7.650477720424533, - "queued": 1.111976, - "clean_up": 0.0017036069184541702, - "create_cpp": 0.05775970779359341, - "file_setup": 0.24369817227125168, - "compile_cpp": 4.567208100110292, - "create_r1cs": 0.010626023635268211, - "save_results": 0.005508618429303169, - "get_r1cs_info": 0.0007592644542455673, - "groth16_setup": 1.325358035042882, - "export_verification_key": 1.434918174520135, - "download_trusted_setup_file": 0.002489684149622917 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, + "compute_times": { + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ccb365dd-aaa7-4135-8451-8109549d2425", + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", "circuit_type": "circom", - "date_created": "2024-01-14T16:40:40.350Z", - "proving_scheme": "groth16", + "date_created": "2024-01-31T18:15:45.826Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.478422S", - "compute_times": { - "total": 7.552844997495413, - "queued": 1.131376, - "clean_up": 0.0011975225061178207, - "create_cpp": 0.04975225776433945, - "file_setup": 0.23737302795052528, - "compile_cpp": 4.705687249079347, - "create_r1cs": 0.010492220520973206, - "save_results": 0.005188409239053726, - "get_r1cs_info": 0.000648990273475647, - "groth16_setup": 1.239344047382474, - "export_verification_key": 1.3002808820456266, - "download_trusted_setup_file": 0.0024506710469722748 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, + "compute_times": { + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cb341471-b6e3-493d-b1e8-b53ce3cd6a5b", + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", "circuit_type": "circom", - "date_created": "2024-01-14T16:39:10.262Z", - "proving_scheme": "groth16", + "date_created": "2024-01-31T18:15:26.403Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.538228S", - "compute_times": { - "total": 7.6150872856378555, - "queued": 1.141062, - "clean_up": 0.0008311737328767776, - "create_cpp": 0.049604376778006554, - "file_setup": 0.2431975770741701, - "compile_cpp": 4.613074295222759, - "create_r1cs": 0.010859638452529907, - "save_results": 0.0043745823204517365, - "get_r1cs_info": 0.0006608162075281143, - "groth16_setup": 1.3494537398219109, - "export_verification_key": 1.3401750400662422, - "download_trusted_setup_file": 0.0024873558431863785 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, + "compute_times": { + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "0dc923b0-4401-4293-a34b-d6c5580a0645", + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", "circuit_type": "circom", - "date_created": "2024-01-14T16:38:13.292Z", - "proving_scheme": "groth16", + "date_created": "2024-01-31T18:15:18.014Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.395198S", - "compute_times": { - "total": 7.466056250035763, - "queued": 1.163961, - "clean_up": 0.0011384561657905579, - "create_cpp": 0.04686044529080391, - "file_setup": 0.24102316424250603, - "compile_cpp": 4.544771498069167, - "create_r1cs": 0.024224452674388885, - "save_results": 0.003494899719953537, - "get_r1cs_info": 0.0006983857601881027, - "groth16_setup": 1.3162990398705006, - "export_verification_key": 1.2855232805013657, - "download_trusted_setup_file": 0.0015111621469259262 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, + "compute_times": { + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "326d7770-6645-42f7-8e1f-4bbf78603c2d", - "circuit_name": "circom-multiplier2", + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", "circuit_type": "circom", - "date_created": "2024-01-14T16:36:59.942Z", - "proving_scheme": "groth16", + "date_created": "2023-12-02T03:59:27.851Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.493549S", - "compute_times": { - "total": 7.5688981637358665, - "queued": 1.122729, - "clean_up": 0.0016787368804216385, - "create_cpp": 0.04684302769601345, - "file_setup": 0.24815072491765022, - "compile_cpp": 4.597322579473257, - "create_r1cs": 0.01063484326004982, - "save_results": 0.006045779213309288, - "get_r1cs_info": 0.0006333775818347931, - "groth16_setup": 1.3306193556636572, - "export_verification_key": 1.3240374308079481, - "download_trusted_setup_file": 0.0024573486298322678 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, + "compute_times": { + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2e5c81e7-f594-4e07-b4f7-1886781181b1", - "circuit_name": "circom-multiplier2", + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", "circuit_type": "circom", - "date_created": "2024-01-14T16:36:29.172Z", - "proving_scheme": "groth16", + "date_created": "2023-12-02T03:54:14.687Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.746103S", - "compute_times": { - "total": 7.818564524874091, - "queued": 1.135853, - "clean_up": 0.0016661174595355988, - "create_cpp": 0.04841892793774605, - "file_setup": 0.247941792011261, - "compile_cpp": 4.713706800714135, - "create_r1cs": 0.01695185899734497, - "save_results": 0.006999487057328224, - "get_r1cs_info": 0.0007085073739290237, - "groth16_setup": 1.3950544595718384, - "export_verification_key": 1.3842929042875767, - "download_trusted_setup_file": 0.0024377331137657166 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, + "compute_times": { + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4a85b21e-2567-4d75-8cf7-f7879d832acf", - "circuit_name": "circom-multiplier2", + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", "circuit_type": "circom", - "date_created": "2024-01-14T16:33:59.993Z", - "proving_scheme": "groth16", + "date_created": "2023-12-02T03:52:28.815Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.627692S", - "compute_times": { - "total": 7.703156094998121, - "queued": 1.154377, - "clean_up": 0.0018535908311605453, - "create_cpp": 0.047643400728702545, - "file_setup": 0.2447856217622757, - "compile_cpp": 4.74752707220614, - "create_r1cs": 0.015797777101397514, - "save_results": 0.005216935649514198, - "get_r1cs_info": 0.0007510744035243988, - "groth16_setup": 1.3178835678845644, - "export_verification_key": 1.3187684249132872, - "download_trusted_setup_file": 0.002450980246067047 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, + "compute_times": { + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" - }, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "187148", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727978614b3251373269376d357547497a590d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727978614b3251373269376d357547497a590d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727978614b3251373269376d357547497a592d2d0d0a", + "status": 201, + "response": { + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/list?include_verification_key=false", + "body": "", + "status": 200, + "response": [ { - "circuit_id": "49969f00-5b6b-4e1b-ae54-3ebb821dde8b", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T16:33:38.587Z", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.552651S", - "compute_times": { - "total": 7.624790228903294, - "queued": 1.115758, - "clean_up": 0.0017047524452209473, - "create_cpp": 0.04909936711192131, - "file_setup": 0.24133107624948025, - "compile_cpp": 4.7210179921239614, - "create_r1cs": 0.011723736301064491, - "save_results": 0.005721684545278549, - "get_r1cs_info": 0.00038177333772182465, - "groth16_setup": 1.2864660620689392, - "export_verification_key": 1.3059150949120522, - "download_trusted_setup_file": 0.0009307935833930969 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "4e1013e6-c530-4e8d-9755-f26a64b2d572", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T16:33:08.324Z", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.724889S", - "compute_times": { - "total": 7.7971851993352175, - "queued": 1.116063, - "clean_up": 0.0017428696155548096, - "create_cpp": 0.05533359386026859, - "file_setup": 0.23893662728369236, - "compile_cpp": 4.91211068071425, - "create_r1cs": 0.017335472628474236, - "save_results": 0.005370132625102997, - "get_r1cs_info": 0.0007455870509147644, - "groth16_setup": 1.2513550594449043, - "export_verification_key": 1.3113222550600767, - "download_trusted_setup_file": 0.0024493057280778885 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "a2b170e4-edf9-4798-bb85-35245768207d", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T16:09:57.696Z", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.679682S", - "compute_times": { - "total": 7.756731368601322, - "queued": 1.193863, - "clean_up": 0.0013168156147003174, - "create_cpp": 0.04220888577401638, - "file_setup": 0.24753136932849884, - "compile_cpp": 4.787212835624814, - "create_r1cs": 0.017687704414129257, - "save_results": 0.007237255573272705, - "get_r1cs_info": 0.000683177262544632, - "groth16_setup": 1.3392270132899284, - "export_verification_key": 1.3106779605150223, - "download_trusted_setup_file": 0.002470754086971283 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "4fba5244-d526-41a5-bf36-a34c17c25f9b", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T15:55:58.030Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.665572S", - "compute_times": { - "total": 7.745568448677659, - "queued": 1.257926, - "clean_up": 0.0018980763852596283, - "create_cpp": 0.055884186178445816, - "file_setup": 0.26442782394587994, - "compile_cpp": 4.797283286228776, - "create_r1cs": 0.01778632216155529, - "save_results": 0.005175711587071419, - "get_r1cs_info": 0.0007982272654771805, - "groth16_setup": 1.322161003947258, - "export_verification_key": 1.2772313170135021, - "download_trusted_setup_file": 0.0024321619421243668 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "60ad4516-8a32-43e1-916b-ab2680b0224a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T15:52:58.481Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.728836S", - "compute_times": { - "total": 7.801407495513558, - "queued": 1.158764, - "clean_up": 0.0015893597155809402, - "create_cpp": 0.05614244565367699, - "file_setup": 0.25334477610886097, - "compile_cpp": 4.813857762143016, - "create_r1cs": 0.012846684083342552, - "save_results": 0.004946554079651833, - "get_r1cs_info": 0.000693419948220253, - "groth16_setup": 1.3405254911631346, - "export_verification_key": 1.3146384991705418, - "download_trusted_setup_file": 0.0024357400834560394 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "7b802406-de93-4b76-8a09-11511e22bfa4", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T15:49:20.630Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.696878S", - "compute_times": { - "total": 7.7695643454790115, - "queued": 1.208482, - "clean_up": 0.001626061275601387, - "create_cpp": 0.047227565199136734, - "file_setup": 0.26737155206501484, - "compile_cpp": 4.872535202652216, - "create_r1cs": 0.01879102736711502, - "save_results": 0.005725011229515076, - "get_r1cs_info": 0.0006924495100975037, - "groth16_setup": 1.232976334169507, - "export_verification_key": 1.3196605183184147, - "download_trusted_setup_file": 0.0024542957544326782 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "ff3d54cb-7235-405e-a9e3-be957dc4c587", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T15:49:00.734Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.630205S", - "compute_times": { - "total": 7.71001566760242, - "queued": 1.114729, - "clean_up": 0.0020035244524478912, - "create_cpp": 0.053196635097265244, - "file_setup": 0.2405914142727852, - "compile_cpp": 4.621033746749163, - "create_r1cs": 0.03503704071044922, - "save_results": 0.005230717360973358, - "get_r1cs_info": 0.0007014013826847076, - "groth16_setup": 1.402680803090334, - "export_verification_key": 1.3465964272618294, - "download_trusted_setup_file": 0.0024281106889247894 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "90f970fc-7021-49fe-80eb-4aaae78d684e", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T15:47:58.175Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.246888S", - "compute_times": { - "total": 7.320567287504673, - "queued": 1.199892, - "clean_up": 0.0018009450286626816, - "create_cpp": 0.046688828617334366, - "file_setup": 0.23241388611495495, - "compile_cpp": 4.509111732244492, - "create_r1cs": 0.010652711614966393, - "save_results": 0.0053970906883478165, - "get_r1cs_info": 0.0007533896714448929, - "groth16_setup": 1.233302304521203, - "export_verification_key": 1.2775605637580156, - "download_trusted_setup_file": 0.002413202077150345 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0004733838140964508, + "queued": 0.748407 }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "925640ea-fa79-4730-ae82-8add47e913cb", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-14T15:47:41.292Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.486909S", - "compute_times": { - "total": 7.5634617283940315, - "queued": 1.050597, - "clean_up": 0.0016485508531332016, - "create_cpp": 0.05515584722161293, - "file_setup": 0.23679853416979313, - "compile_cpp": 4.659947486594319, - "create_r1cs": 0.017400609329342842, - "save_results": 0.005805689841508865, - "get_r1cs_info": 0.0006781201809644699, - "groth16_setup": 1.2767266910523176, - "export_verification_key": 1.306356867775321, - "download_trusted_setup_file": 0.0024945326149463654 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00038475729525089264, + "queued": 0.480293 }, + "file_size": 495, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "a5b16192-6898-41e6-bfb5-b73a50b8ebbe", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:45:51.911Z", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_name": "poseidon", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:08:55.369Z", + "num_proofs": 229, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.977553S", - "compute_times": { - "total": 8.051811749115586, - "queued": 1.228243, - "clean_up": 0.0016383752226829529, - "create_cpp": 0.04780636169016361, - "file_setup": 0.23954333923757076, - "compile_cpp": 5.166752548888326, - "create_r1cs": 0.018863901495933533, - "save_results": 0.00531991571187973, - "get_r1cs_info": 0.0004027280956506729, - "groth16_setup": 1.2763246074318886, - "export_verification_key": 1.293736344203353, - "download_trusted_setup_file": 0.0010492932051420212 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M20.064560S", + "compute_time_sec": 20.06456, + "compute_times": { + "total": 20.07014292757958, + "queued": 0.281108, + "compile": 12.642420304007828, + "clean_up": 5.060501893050969, + "file_setup": 2.2013850677758455, + "save_results": 0.036197442561388016, + "compile_r1cs_and_keygen": 0.12922980543226004 }, + "file_size": 30921195, + "uploaded_file_name": "poseidon.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "68adc5ea-f06c-4d28-ac34-b3077b759a9c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:43:16.141Z", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:01:02.213Z", + "num_proofs": 2, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.564382S", - "compute_times": { - "total": 7.62931395880878, - "queued": 1.225967, - "clean_up": 0.0016656853258609772, - "create_cpp": 0.04816170781850815, - "file_setup": 0.22820086777210236, - "compile_cpp": 4.6605421509593725, - "create_r1cs": 0.018833832815289497, - "save_results": 0.006733657792210579, - "get_r1cs_info": 0.0006740186363458633, - "groth16_setup": 1.2996833566576242, - "export_verification_key": 1.3620503433048725, - "download_trusted_setup_file": 0.002435106784105301 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.157686S", + "compute_time_sec": 14.157686, + "compute_times": { + "total": 14.164283829275519, + "queued": 0.242197, + "compile": 9.50105039961636, + "clean_up": 2.131474153138697, + "file_setup": 2.504877657163888, + "save_results": 0.007419941946864128, + "compile_r1cs_and_keygen": 0.018980357330292463 }, + "file_size": 19726986, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "6f3bad22-1634-46d7-886e-832cba917fec", - "circuit_name": "circom-multiplier2", + "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-14T15:39:36.584Z", + "date_created": "2024-02-28T16:06:54.944Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.664941S", - "compute_times": { - "total": 7.740619659423828, - "queued": 1.1192, - "clean_up": 0.0017648059874773026, - "create_cpp": 0.04447110556066036, - "file_setup": 0.24230228178203106, - "compile_cpp": 4.694819539785385, - "create_r1cs": 0.016316721215844154, - "save_results": 0.005714010447263718, - "get_r1cs_info": 0.0007064640522003174, - "groth16_setup": 1.4219826646149158, - "export_verification_key": 1.309614883735776, - "download_trusted_setup_file": 0.002441825345158577 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.680331S", + "compute_time_sec": 2.680331, + "compute_times": { + "total": 2.6865532309748232, + "queued": 0.278162, + "clean_up": 0.15621905494481325, + "file_setup": 0.07576264115050435, + "create_r1cs": 0.02499393606558442, + "create_wasm": 0.037889659870415926, + "save_results": 0.006284092087298632, + "get_r1cs_info": 0.0003155169542878866, + "groth16_setup": 1.1963414950296283, + "export_verification_key": 1.1868828509468585, + "download_trusted_setup_file": 0.0014421690721064806 }, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "d26ab648-29b6-43e8-aacf-40e14dfa4ed1", - "circuit_name": "circom-multiplier2", + "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-14T15:39:12.911Z", + "date_created": "2024-02-28T16:06:28.625Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.596027S", - "compute_times": { - "total": 7.671294875442982, - "queued": 1.147463, - "clean_up": 0.0013887789100408554, - "create_cpp": 0.05159107968211174, - "file_setup": 0.23307767510414124, - "compile_cpp": 4.7507233787328005, - "create_r1cs": 0.01823563687503338, - "save_results": 0.005490930750966072, - "get_r1cs_info": 0.0010182727128267288, - "groth16_setup": 1.3135271780192852, - "export_verification_key": 1.2921632956713438, - "download_trusted_setup_file": 0.003589954227209091 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.723950S", + "compute_time_sec": 2.72395, + "compute_times": { + "total": 2.730448425281793, + "queued": 0.24759, + "clean_up": 0.03860751632601023, + "file_setup": 0.08125918405130506, + "create_r1cs": 0.025404677726328373, + "create_wasm": 0.03741568187251687, + "save_results": 0.007240877952426672, + "get_r1cs_info": 0.00033877836540341377, + "groth16_setup": 1.2571284701116383, + "export_verification_key": 1.2813060129992664, + "download_trusted_setup_file": 0.0013454826548695564 }, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "d3a3e7a5-5b0b-459c-81cf-ae43938aa3c3", - "circuit_name": "circom-multiplier2", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-14T15:38:01.245Z", + "date_created": "2024-02-27T01:57:59.411Z", + "num_proofs": 4, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.820008S", - "compute_times": { - "total": 7.897290702909231, - "queued": 1.170189, - "clean_up": 0.0018852725625038147, - "create_cpp": 0.053761351853609085, - "file_setup": 0.24285616353154182, - "compile_cpp": 4.875218540430069, - "create_r1cs": 0.017158547416329384, - "save_results": 0.006690884009003639, - "get_r1cs_info": 0.0008476302027702332, - "groth16_setup": 1.337174404412508, - "export_verification_key": 1.3581416513770819, - "download_trusted_setup_file": 0.00307416170835495 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.843744S", + "compute_time_sec": 36.843744, + "compute_times": { + "total": 36.91908207698725, + "queued": 0.286679, + "clean_up": 0.03467807709239423, + "create_cpp": 0.7680627549998462, + "file_setup": 0.1394905720371753, + "compile_cpp": 28.152615127852187, + "create_r1cs": 0.34302311204373837, + "save_results": 0.006143820006400347, + "get_r1cs_info": 0.0005576841067522764, + "groth16_setup": 4.3415444530546665, + "export_verification_key": 1.252952174982056, + "download_trusted_setup_file": 1.879397285869345 }, + "file_size": 3870229, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "327c28d6-d905-40a9-aa5e-910432b8c457", - "circuit_name": "circom-multiplier2", + "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-14T15:36:34.772Z", + "date_created": "2024-02-26T02:32:51.263Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.386210S", - "compute_times": { - "total": 7.46240858733654, - "queued": 20.421796, - "clean_up": 0.0016153063625097275, - "create_cpp": 0.05553690902888775, - "file_setup": 0.2416877392679453, - "compile_cpp": 4.540888287127018, - "create_r1cs": 0.017148081213235855, - "save_results": 0.005492938682436943, - "get_r1cs_info": 0.0007535982877016068, - "groth16_setup": 1.2554643210023642, - "export_verification_key": 1.3404564801603556, - "download_trusted_setup_file": 0.002688312903046608 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.040985S", + "compute_time_sec": 0.040985, + "compute_times": { + "total": 0.03328296495601535, + "queued": 0.306452, + "file_setup": 0.02101697097532451, + "create_wasm": 0.011749706929549575 }, + "file_size": 1015, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "52a77185-bd08-4e1d-a040-068a7be5a72b", - "circuit_name": "circom-multiplier2", + "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-14T15:24:06.062Z", + "date_created": "2024-02-25T21:21:18.316Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.640178S", - "compute_times": { - "total": 7.714155467227101, - "queued": 1.185042, - "clean_up": 0.0016178041696548462, - "create_cpp": 0.04732489213347435, - "file_setup": 0.24032527580857277, - "compile_cpp": 4.717082438990474, - "create_r1cs": 0.016816765069961548, - "save_results": 0.0056424327194690704, - "get_r1cs_info": 0.0007807277143001556, - "groth16_setup": 1.3203076552599669, - "export_verification_key": 1.36131626740098, - "download_trusted_setup_file": 0.00248648039996624 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.116953S", + "compute_time_sec": 36.116953, + "compute_times": { + "total": 36.12258589011617, + "queued": 0.280658, + "clean_up": 0.045256566954776645, + "create_cpp": 0.7550635728985071, + "file_setup": 0.055438351118937135, + "compile_cpp": 27.543986437143758, + "create_r1cs": 0.34856289392337203, + "save_results": 0.005512146046385169, + "get_r1cs_info": 0.0005783189553767443, + "groth16_setup": 4.374077996937558, + "export_verification_key": 1.1806295281276107, + "download_trusted_setup_file": 1.8129089260473847 }, + "file_size": 3870232, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "92b6ffef-2d23-4ea4-9c17-25449acf9f6d", - "circuit_name": "circom-multiplier2", + "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-14T15:12:25.903Z", + "date_created": "2024-02-25T21:15:00.721Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.459452S", - "compute_times": { - "total": 7.538122421130538, - "queued": 3.182029, - "clean_up": 0.0019169263541698456, - "create_cpp": 0.05147097259759903, - "file_setup": 0.23234434984624386, - "compile_cpp": 4.633158722892404, - "create_r1cs": 0.015974245965480804, - "save_results": 0.0055649615824222565, - "get_r1cs_info": 0.0007752608507871628, - "groth16_setup": 1.2927527874708176, - "export_verification_key": 1.3012404087930918, - "download_trusted_setup_file": 0.002442318946123123 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.153850S", + "compute_time_sec": 0.15385, + "compute_times": { + "total": 0.14053412294015288, + "queued": 0.345862, + "file_setup": 0.12803456606343389, + "create_wasm": 0.01188180991448462 }, + "file_size": 1004, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "f5bf0783-4e8e-4d3a-8afb-3756d6630ed6", - "circuit_name": "circom-multiplier2", + "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-14T02:17:06.356Z", + "date_created": "2024-02-22T00:02:35.495Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.767214S", - "compute_times": { - "total": 7.844439402222633, - "queued": 22.255549, - "clean_up": 0.001671966165304184, - "create_cpp": 0.04819011874496937, - "file_setup": 0.23547505028545856, - "compile_cpp": 4.71245345659554, - "create_r1cs": 0.017498936504125595, - "save_results": 0.005684111267328262, - "get_r1cs_info": 0.00042267516255378723, - "groth16_setup": 1.3792817536741495, - "export_verification_key": 1.4420029371976852, - "download_trusted_setup_file": 0.001202734187245369 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.105806S", + "compute_time_sec": 8.105806, + "compute_times": { + "total": 8.111726151080802, + "queued": 0.299859, + "clean_up": 0.03814816800877452, + "create_cpp": 0.11785020097158849, + "file_setup": 0.07184063596650958, + "compile_cpp": 4.999685499118641, + "create_r1cs": 0.027501144912093878, + "save_results": 0.0056748660281300545, + "get_r1cs_info": 0.0003923040349036455, + "groth16_setup": 1.33484046603553, + "export_verification_key": 1.5138321269769222, + "download_trusted_setup_file": 0.0013768889475613832 }, + "file_size": 1650685, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "895316d4-2a3d-4418-bb02-4d247bb31f42", - "circuit_name": "circom-multiplier2", + "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-14T02:17:06.305Z", + "date_created": "2024-02-21T23:58:37.180Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.367716S", - "compute_times": { - "total": 7.445993509143591, - "queued": 19.4902, - "clean_up": 0.001679038628935814, - "create_cpp": 0.04941392503678799, - "file_setup": 0.2603658549487591, - "compile_cpp": 4.4457344226539135, - "create_r1cs": 0.015564171597361565, - "save_results": 0.005699107423424721, - "get_r1cs_info": 0.00044892914593219757, - "groth16_setup": 1.3399745263159275, - "export_verification_key": 1.3249822482466698, - "download_trusted_setup_file": 0.0015281010419130325 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.050622S", + "compute_time_sec": 7.050622, + "compute_times": { + "total": 7.057020629988983, + "queued": 0.29724, + "clean_up": 0.062270441092550755, + "create_cpp": 0.06243468704633415, + "file_setup": 0.07652567396871746, + "compile_cpp": 4.485646587098017, + "create_r1cs": 0.02570242597721517, + "save_results": 0.00595727888867259, + "get_r1cs_info": 0.00039725680835545063, + "groth16_setup": 1.17986157303676, + "export_verification_key": 1.1563023570924997, + "download_trusted_setup_file": 0.0012368990574032068 }, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "be9aeee2-67a1-40cc-b2a9-31c749baa91a", - "circuit_name": "circom-multiplier2", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-14T02:17:06.264Z", + "date_created": "2024-02-16T16:44:06.247Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.440114S", - "compute_times": { - "total": 7.517095539718866, - "queued": 17.354408, - "clean_up": 0.0018942803144454956, - "create_cpp": 0.055966123938560486, - "file_setup": 0.23165968619287014, - "compile_cpp": 4.604835856705904, - "create_r1cs": 0.016073141247034073, - "save_results": 0.005840808153152466, - "get_r1cs_info": 0.0005646403878927231, - "groth16_setup": 1.3124119993299246, - "export_verification_key": 1.2851601000875235, - "download_trusted_setup_file": 0.002033783122897148 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.940220S", + "compute_time_sec": 35.94022, + "compute_times": { + "total": 35.94744881300721, + "queued": 0.255393, + "clean_up": 0.0907127889804542, + "create_cpp": 0.8199345880420879, + "file_setup": 0.08025214297231287, + "compile_cpp": 27.603134420933202, + "create_r1cs": 0.38317175407428294, + "save_results": 0.009111783001571894, + "get_r1cs_info": 0.0010840859031304717, + "groth16_setup": 4.134320180979557, + "export_verification_key": 1.0508651459822431, + "download_trusted_setup_file": 1.7740050770808011 }, + "file_size": 3869586, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 297, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 4, + "num_public_inputs": 0 }, { - "circuit_id": "65fe2793-9973-4c6e-8802-d0788c536501", - "circuit_name": "circom-multiplier2", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-14T01:35:42.731Z", + "date_created": "2024-02-15T19:07:26.262Z", + "num_proofs": 2, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.704094S", - "compute_times": { - "total": 7.780933722853661, - "queued": 1.20041, - "clean_up": 0.0017544794827699661, - "create_cpp": 0.047739313915371895, - "file_setup": 0.25539655797183514, - "compile_cpp": 4.67063057795167, - "create_r1cs": 0.01837228797376156, - "save_results": 0.005115482956171036, - "get_r1cs_info": 0.0008046850562095642, - "groth16_setup": 1.3312513139098883, - "export_verification_key": 1.4467235822230577, - "download_trusted_setup_file": 0.0026854518800973892 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.144392S", + "compute_time_sec": 35.144392, + "compute_times": { + "total": 35.15089295199141, + "queued": 0.226366, + "clean_up": 0.11753120506182313, + "create_cpp": 0.7529647811315954, + "file_setup": 0.06330146407708526, + "compile_cpp": 28.331635219044983, + "create_r1cs": 0.34842015197500587, + "save_results": 0.010279993992298841, + "get_r1cs_info": 0.0006776847876608372, + "groth16_setup": 4.291510064154863, + "export_verification_key": 1.2317856717854738, + "download_trusted_setup_file": 0.002070905175060034 }, + "file_size": 3870226, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "ec20c2f1-63b4-453b-b631-042f1dace286", - "circuit_name": "circom-multiplier2", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-14T01:35:42.477Z", + "date_created": "2024-02-15T16:46:44.192Z", + "num_proofs": 5, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.539209S", - "compute_times": { - "total": 7.630237089470029, - "queued": 1.20364, - "clean_up": 0.0018465593457221985, - "create_cpp": 0.048426778987050056, - "file_setup": 0.28575040958821774, - "compile_cpp": 4.522350315004587, - "create_r1cs": 0.010585671290755272, - "save_results": 0.00592038594186306, - "get_r1cs_info": 0.000683952122926712, - "groth16_setup": 1.3668177835643291, - "export_verification_key": 1.3847495634108782, - "download_trusted_setup_file": 0.0025108084082603455 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.775219S", + "compute_time_sec": 6.775219, + "compute_times": { + "total": 6.786237360094674, + "queued": 0.306632, + "clean_up": 0.02926708501763642, + "create_cpp": 0.06894711602944881, + "file_setup": 0.06364756193943322, + "compile_cpp": 4.536427660030313, + "create_r1cs": 0.0257944610202685, + "save_results": 0.008142217062413692, + "get_r1cs_info": 0.000770728918723762, + "groth16_setup": 1.0133657020051032, + "export_verification_key": 1.0354817470069975, + "download_trusted_setup_file": 0.003386533004231751 }, + "file_size": 232969, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "f550240d-ab41-46fc-8349-ef5dd2b6ae72", - "circuit_name": "circom-multiplier2", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-14T01:35:42.441Z", + "date_created": "2024-02-15T16:44:21.936Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.547238S", - "compute_times": { - "total": 7.629827946424484, - "queued": 1.057625, - "clean_up": 0.0015633665025234222, - "create_cpp": 0.056376999244093895, - "file_setup": 0.2554791755974293, - "compile_cpp": 4.59183656424284, - "create_r1cs": 0.014426013454794884, - "save_results": 0.005605714395642281, - "get_r1cs_info": 0.0006720162928104401, - "groth16_setup": 1.3423564583063126, - "export_verification_key": 1.3587531484663486, - "download_trusted_setup_file": 0.002422267571091652 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.525882S", + "compute_time_sec": 7.525882, + "compute_times": { + "total": 7.532384330872446, + "queued": 0.273291, + "clean_up": 0.41135954577475786, + "create_cpp": 0.044112610165029764, + "file_setup": 0.05311372969299555, + "compile_cpp": 4.545667007099837, + "create_r1cs": 0.021503231953829527, + "save_results": 0.023626559413969517, + "get_r1cs_info": 0.0004302137531340122, + "groth16_setup": 1.2149698357097805, + "export_verification_key": 1.2118688928894699, + "download_trusted_setup_file": 0.004898259416222572 }, + "file_size": 232949, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "e385fc9a-6678-4436-a4d9-7b6207cdec1e", - "circuit_name": "circom-multiplier2", + "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-14T01:34:48.278Z", + "date_created": "2024-02-15T16:21:42.338Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.602105S", - "compute_times": { - "total": 7.6787131037563086, - "queued": 28.269221, - "clean_up": 0.0008335374295711517, - "create_cpp": 0.05295123904943466, - "file_setup": 0.24620787054300308, - "compile_cpp": 4.666990481317043, - "create_r1cs": 0.017643820494413376, - "save_results": 0.006149968132376671, - "get_r1cs_info": 0.0006770137697458267, - "groth16_setup": 1.286754585802555, - "export_verification_key": 1.3974271193146706, - "download_trusted_setup_file": 0.0024820510298013687 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.218699S", + "compute_time_sec": 35.218699, + "compute_times": { + "total": 35.2277638950618, + "queued": 0.317566, + "clean_up": 0.1369406400481239, + "create_cpp": 0.8040473599685356, + "file_setup": 0.1467569509986788, + "compile_cpp": 27.42731417901814, + "create_r1cs": 0.37680110498331487, + "save_results": 0.008219165029004216, + "get_r1cs_info": 0.0012246599653735757, + "groth16_setup": 4.11037651298102, + "export_verification_key": 1.009748816024512, + "download_trusted_setup_file": 1.2047668669838458 }, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "c0a257a6-6595-4d8f-af76-3c72ccb8124c", - "circuit_name": "circom-multiplier2", + "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-14T01:34:47.881Z", + "date_created": "2024-02-15T16:20:47.501Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.648258S", - "compute_times": { - "total": 7.727745875716209, - "queued": 23.412292, - "clean_up": 0.0017776917666196823, - "create_cpp": 0.0479858573526144, - "file_setup": 0.2476426586508751, - "compile_cpp": 4.7762017995119095, - "create_r1cs": 0.015666168183088303, - "save_results": 0.005719615146517754, - "get_r1cs_info": 0.0005191490054130554, - "groth16_setup": 1.3373233694583178, - "export_verification_key": 1.2932734712958336, - "download_trusted_setup_file": 0.0012765545397996902 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M34.701699S", + "compute_time_sec": 34.701699, + "compute_times": { + "total": 34.707892696838826, + "queued": 0.318933, + "clean_up": 0.09660972375422716, + "create_cpp": 0.7858420582488179, + "file_setup": 0.062256335746496916, + "compile_cpp": 27.987545497715473, + "create_r1cs": 0.3427793183363974, + "save_results": 0.006912626326084137, + "get_r1cs_info": 0.0007053948938846588, + "groth16_setup": 4.240857229102403, + "export_verification_key": 1.1814902885816991, + "download_trusted_setup_file": 0.002157846000045538 }, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "17179e01-d7c4-4aea-aa1a-992f916bdee2", - "circuit_name": "circom-multiplier2", + "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-14T01:34:47.812Z", + "date_created": "2024-02-15T00:37:02.228Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.917575S", - "compute_times": { - "total": 7.996331673115492, - "queued": 14.301244, - "clean_up": 0.001385565847158432, - "create_cpp": 0.05693238601088524, - "file_setup": 0.24305696785449982, - "compile_cpp": 4.886592995375395, - "create_r1cs": 0.016436800360679626, - "save_results": 0.0048583559691905975, - "get_r1cs_info": 0.0007434748113155365, - "groth16_setup": 1.4628947488963604, - "export_verification_key": 1.320095032453537, - "download_trusted_setup_file": 0.002690603956580162 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M55.791705S", + "compute_time_sec": 55.791705, + "compute_times": { + "total": 55.797921964898705, + "queued": 0.257892, + "clean_up": 0.07545234775170684, + "create_cpp": 1.1982138170860708, + "file_setup": 0.0613596779294312, + "compile_cpp": 36.85164702497423, + "create_r1cs": 0.7978045740164816, + "save_results": 0.006434123031795025, + "get_r1cs_info": 0.002160165924578905, + "groth16_setup": 15.61639252398163, + "export_verification_key": 1.167371460236609, + "download_trusted_setup_file": 0.020440288819372654 }, + "file_size": 7540832, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "circuit_id": "97c1188b-940e-495c-b19a-95136ca94651", - "circuit_name": "circom-multiplier2", + "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-13T22:14:07.689Z", + "date_created": "2024-02-14T23:58:52.084Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.579924S", - "compute_times": { - "total": 7.688783111050725, - "queued": 19.081671, - "clean_up": 0.0016204454004764557, - "create_cpp": 0.04679172858595848, - "file_setup": 0.29103851318359375, - "compile_cpp": 4.59976408816874, - "create_r1cs": 0.01832420565187931, - "save_results": 0.0057008713483810425, - "get_r1cs_info": 0.0007570423185825348, - "groth16_setup": 1.3156583420932293, - "export_verification_key": 1.4062066301703453, - "download_trusted_setup_file": 0.0025102216750383377 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.901539S", + "compute_time_sec": 56.901539, + "compute_times": { + "total": 56.907790740951896, + "queued": 0.286676, + "clean_up": 0.1532127452082932, + "create_cpp": 1.1961525329388678, + "file_setup": 0.05804666178300977, + "compile_cpp": 38.085547543130815, + "create_r1cs": 0.8190577877685428, + "save_results": 0.010267478879541159, + "get_r1cs_info": 0.002185516059398651, + "groth16_setup": 15.381996811367571, + "export_verification_key": 1.1801622677594423, + "download_trusted_setup_file": 0.020589394960552454 }, + "file_size": 7540785, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "circuit_id": "f171ba6b-3c6e-45ab-8978-cc81b2591fe2", - "circuit_name": "circom-multiplier2", + "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-13T21:56:00.914Z", + "date_created": "2024-02-14T23:57:50.289Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.636625S", - "compute_times": { - "total": 7.707771621644497, - "queued": 18.700163, - "clean_up": 0.0018135719001293182, - "create_cpp": 0.04718630388379097, - "file_setup": 0.24202751740813255, - "compile_cpp": 4.60657000541687, - "create_r1cs": 0.01767110638320446, - "save_results": 0.006701948121190071, - "get_r1cs_info": 0.0008154623210430145, - "groth16_setup": 1.4166238810867071, - "export_verification_key": 1.3650648556649685, - "download_trusted_setup_file": 0.0026601888239383698 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.834710S", + "compute_time_sec": 56.83471, + "compute_times": { + "total": 56.8432289250195, + "queued": 0.287988, + "clean_up": 0.10309748293366283, + "create_cpp": 1.2134589219931513, + "file_setup": 0.09620017104316503, + "compile_cpp": 38.34681939892471, + "create_r1cs": 0.824894416029565, + "save_results": 0.010392117081210017, + "get_r1cs_info": 0.004026207025162876, + "groth16_setup": 15.126561413053423, + "export_verification_key": 1.0899655069224536, + "download_trusted_setup_file": 0.02710751595441252 }, + "file_size": 7540780, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "circuit_id": "c5e01da7-48f8-41cc-b451-e3dadd91082f", - "circuit_name": "circom-multiplier2", + "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-13T21:56:00.471Z", + "date_created": "2024-02-14T23:52:09.320Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.594002S", - "compute_times": { - "total": 7.674397809430957, - "queued": 17.546896, - "clean_up": 0.0017005838453769684, - "create_cpp": 0.04909280128777027, - "file_setup": 0.2650355380028486, - "compile_cpp": 4.535461347550154, - "create_r1cs": 0.01683916337788105, - "save_results": 0.005601212382316589, - "get_r1cs_info": 0.0004042927175760269, - "groth16_setup": 1.4130164682865143, - "export_verification_key": 1.3854157458990812, - "download_trusted_setup_file": 0.0012020468711853027 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M57.335290S", + "compute_time_sec": 57.33529, + "compute_times": { + "total": 57.34173893509433, + "queued": 0.278472, + "clean_up": 0.10366297094151378, + "create_cpp": 1.246839945204556, + "file_setup": 0.06519381469115615, + "compile_cpp": 38.10613914998248, + "create_r1cs": 0.821301891002804, + "save_results": 0.0067642792128026485, + "get_r1cs_info": 0.002133298199623823, + "groth16_setup": 15.753068736288697, + "export_verification_key": 1.2155762687325478, + "download_trusted_setup_file": 0.020359096582978964 }, + "file_size": 7540742, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "circuit_id": "7b4d64f7-9eb1-43ea-88da-ee0c30a30dc0", - "circuit_name": "circom-multiplier2", + "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-13T21:56:00.454Z", + "date_created": "2024-02-14T23:43:09.159Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.596317S", - "compute_times": { - "total": 7.6730455961078405, - "queued": 15.290082, - "clean_up": 0.001669473946094513, - "create_cpp": 0.05485839210450649, - "file_setup": 0.26459758542478085, - "compile_cpp": 4.7679917477071285, - "create_r1cs": 0.011294171214103699, - "save_results": 0.005053173750638962, - "get_r1cs_info": 0.000985546037554741, - "groth16_setup": 1.249212957918644, - "export_verification_key": 1.313942413777113, - "download_trusted_setup_file": 0.0028024110943078995 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M54.984651S", + "compute_time_sec": 54.984651, + "compute_times": { + "total": 54.99341053608805, + "queued": 0.304312, + "clean_up": 0.06826841598376632, + "create_cpp": 1.2764658289961517, + "file_setup": 0.08957945799920708, + "compile_cpp": 36.77387927705422, + "create_r1cs": 0.801689010928385, + "save_results": 0.009336387040093541, + "get_r1cs_info": 0.003953314037062228, + "groth16_setup": 14.896520375041291, + "export_verification_key": 1.0483920950209722, + "download_trusted_setup_file": 0.024622616940177977 }, + "file_size": 7540733, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "circuit_id": "cdd9f705-bc15-43bb-949e-3717f72d942b", - "circuit_name": "circom-multiplier2", + "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-13T21:38:26.210Z", + "date_created": "2024-02-14T21:42:21.824Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.677959S", - "compute_times": { - "total": 7.7533275205641985, - "queued": 18.19898, - "clean_up": 0.0016758590936660767, - "create_cpp": 0.04743916355073452, - "file_setup": 0.22825423069298267, - "compile_cpp": 4.849137723445892, - "create_r1cs": 0.017714163288474083, - "save_results": 0.005707431584596634, - "get_r1cs_info": 0.0005600731819868088, - "groth16_setup": 1.2724982649087906, - "export_verification_key": 1.3279783483594656, - "download_trusted_setup_file": 0.001912679523229599 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.975886S", + "compute_time_sec": 56.975886, + "compute_times": { + "total": 56.984479263890535, + "queued": 0.3222, + "clean_up": 0.071199910948053, + "create_cpp": 1.246658438933082, + "file_setup": 0.08264653407968581, + "compile_cpp": 37.13031674805097, + "create_r1cs": 0.8157099969685078, + "save_results": 0.008955279947258532, + "get_r1cs_info": 0.004004108952358365, + "groth16_setup": 14.917821239912882, + "export_verification_key": 1.06573862710502, + "download_trusted_setup_file": 1.640640855068341 }, + "file_size": 7540735, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "circuit_id": "4500e242-4807-4e58-8c61-51890f37a199", - "circuit_name": "circom-multiplier2", + "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-13T21:38:25.812Z", + "date_created": "2024-02-14T21:41:14.188Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.569673S", - "compute_times": { - "total": 7.647986855357885, - "queued": 9.85944, - "clean_up": 0.0016725938767194748, - "create_cpp": 0.052060317248106, - "file_setup": 0.2424705233424902, - "compile_cpp": 4.573579087853432, - "create_r1cs": 0.016123183071613312, - "save_results": 0.005695518106222153, - "get_r1cs_info": 0.0006785281002521515, - "groth16_setup": 1.393597211688757, - "export_verification_key": 1.3591100927442312, - "download_trusted_setup_file": 0.002507256343960762 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.819064S", + "compute_time_sec": 36.819064, + "compute_times": { + "total": 36.826748004648834, + "queued": 0.269335, + "clean_up": 0.11822917684912682, + "create_cpp": 0.7589871259406209, + "file_setup": 0.15491734398528934, + "compile_cpp": 28.743124674074352, + "create_r1cs": 0.35148238157853484, + "save_results": 0.00582153769209981, + "get_r1cs_info": 0.0006839861162006855, + "groth16_setup": 4.374190780799836, + "export_verification_key": 1.1788361864164472, + "download_trusted_setup_file": 1.1384393190965056 }, + "file_size": 3867265, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "fcc7ffbc-e73d-442d-b2d7-d668f4ddb8f8", - "circuit_name": "circom-multiplier2", + "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-13T21:38:25.748Z", + "date_created": "2024-02-14T21:39:50.042Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.519034S", - "compute_times": { - "total": 7.592722037807107, - "queued": 1.189058, - "clean_up": 0.0011803433299064636, - "create_cpp": 0.04865703918039799, - "file_setup": 0.23373384028673172, - "compile_cpp": 4.677073501050472, - "create_r1cs": 0.017674315720796585, - "save_results": 0.006435971707105637, - "get_r1cs_info": 0.0009603966027498245, - "groth16_setup": 1.317440578714013, - "export_verification_key": 1.2857090160250664, - "download_trusted_setup_file": 0.003442632034420967 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M47.319956S", + "compute_time_sec": 47.319956, + "compute_times": { + "total": 47.326535122003406, + "queued": 0.256588, + "clean_up": 0.08247739961370826, + "create_cpp": 1.000471537001431, + "file_setup": 0.0585682881064713, + "compile_cpp": 29.038879429921508, + "create_r1cs": 0.6561976410448551, + "save_results": 0.006647040136158466, + "get_r1cs_info": 0.0020793969742953777, + "groth16_setup": 15.312814712058753, + "export_verification_key": 1.1472203098237514, + "download_trusted_setup_file": 0.02056274702772498 }, + "file_size": 6775884, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "circuit_id": "148d24da-5577-4b99-829e-7a37ba6e1ce5", - "circuit_name": "circom-multiplier2", + "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", + "circuit_name": "Semaphore", "circuit_type": "circom", - "date_created": "2024-01-13T21:36:51.312Z", + "date_created": "2024-02-14T21:36:56.776Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.909233S", - "compute_times": { - "total": 7.984679609537125, - "queued": 1.116588, - "clean_up": 0.0015947632491588593, - "create_cpp": 0.04699246771633625, - "file_setup": 0.2352718897163868, - "compile_cpp": 4.984196016564965, - "create_r1cs": 0.01876012235879898, - "save_results": 0.006016256287693977, - "get_r1cs_info": 0.0008815042674541473, - "groth16_setup": 1.314208835363388, - "export_verification_key": 1.37380082719028, - "download_trusted_setup_file": 0.00247078575193882 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M47.874450S", + "compute_time_sec": 47.87445, + "compute_times": { + "total": 47.88067169301212, + "queued": 0.241228, + "clean_up": 0.08292657090350986, + "create_cpp": 1.0067430417984724, + "file_setup": 0.060509118251502514, + "compile_cpp": 28.465293834917247, + "create_r1cs": 0.6478999992832541, + "save_results": 0.00611361488699913, + "get_r1cs_info": 0.0020417659543454647, + "groth16_setup": 14.801113961264491, + "export_verification_key": 1.1754452609457076, + "download_trusted_setup_file": 1.6319761737249792 }, + "file_size": 6775882, + "uploaded_file_name": "Semaphore.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "circuit_id": "27f2cb36-588e-4279-a7db-f71bce8fd3ea", - "circuit_name": "circom-multiplier2", + "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-13T21:36:25.925Z", + "date_created": "2024-02-14T16:08:08.930Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.632335S", - "compute_times": { - "total": 7.709978420287371, - "queued": 1.211208, - "clean_up": 0.0013846959918737411, - "create_cpp": 0.05810563452541828, - "file_setup": 0.24006458930671215, - "compile_cpp": 4.666282197460532, - "create_r1cs": 0.017120130360126495, - "save_results": 0.005914704874157906, - "get_r1cs_info": 0.000698436051607132, - "groth16_setup": 1.4062776304781437, - "export_verification_key": 1.3112494498491287, - "download_trusted_setup_file": 0.0024253148585557938 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.897920S", + "compute_time_sec": 2.89792, + "compute_times": { + "total": 0.9285368990385905, + "queued": 0.329843, + "create_cpp": 0.04405528900679201, + "file_setup": 0.8838426299626008 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 24822850, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:06:51.116Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.346644S", + "compute_time_sec": 3.346644, + "compute_times": { + "total": 0.8087141560390592, + "queued": 0.273012, + "create_cpp": 0.01664800103753805, + "file_setup": 0.791186569724232 }, + "file_size": 24822792, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "4b6bf726-5d2f-4e08-b9a6-fcd3ed910235", - "circuit_name": "circom-multiplier2", + "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-13T21:33:40.483Z", + "date_created": "2024-02-14T16:02:01.839Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.706300S", - "compute_times": { - "total": 7.782388724386692, - "queued": 1.17897, - "clean_up": 0.0017512757331132889, - "create_cpp": 0.05008737929165363, - "file_setup": 0.2461202573031187, - "compile_cpp": 4.85274338722229, - "create_r1cs": 0.016811428591609, - "save_results": 0.00556546077132225, - "get_r1cs_info": 0.0006687957793474197, - "groth16_setup": 1.2804529499262571, - "export_verification_key": 1.3252677004784346, - "download_trusted_setup_file": 0.0024891532957553864 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.017827S", + "compute_time_sec": 3.017827, + "compute_times": { + "total": 0.8431280389195308, + "queued": 0.475505, + "create_cpp": 0.03038154193200171, + "file_setup": 0.8116235659690574 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 24822332, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:00:40.414Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.297335S", + "compute_time_sec": 0.297335, + "compute_times": { + "total": 0.11431554611772299, + "queued": 0.292787, + "create_cpp": 0.014114855322986841, + "file_setup": 0.09887601295486093 }, + "file_size": 1416811, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "a2d7e23a-f3c6-49fa-8a02-e26e57348317", - "circuit_name": "circom-multiplier2", + "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-13T21:32:49.211Z", + "date_created": "2024-02-14T15:56:00.936Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.470841S", - "compute_times": { - "total": 7.549792183563113, - "queued": 1.20048, - "clean_up": 0.0015842076390981674, - "create_cpp": 0.054698651656508446, - "file_setup": 0.24776330403983593, - "compile_cpp": 4.5193129144608974, - "create_r1cs": 0.010665420442819595, - "save_results": 0.005249980837106705, - "get_r1cs_info": 0.0006738137453794479, - "groth16_setup": 1.3397254347801208, - "export_verification_key": 1.3671844005584717, - "download_trusted_setup_file": 0.0024946723133325577 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259954S", + "compute_time_sec": 0.259954, + "compute_times": { + "total": 0.12665929598733783, + "queued": 0.347236, + "create_cpp": 0.022852880065329373, + "file_setup": 0.10267018002923578 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 1416809, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T16:06:15.388Z", + "num_proofs": 3, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M19.113279S", + "compute_time_sec": 19.113279, + "compute_times": { + "total": 19.119710344821215, + "queued": 0.304946, + "clean_up": 0.05678791180253029, + "file_setup": 0.07778294384479523, + "create_r1cs": 0.6835691910237074, + "create_wasm": 1.5261333975940943, + "save_results": 0.01109285093843937, + "get_r1cs_info": 0.002000190317630768, + "groth16_setup": 15.561696534976363, + "export_verification_key": 1.1593163777142763, + "download_trusted_setup_file": 0.04080592654645443 }, + "file_size": 7081817, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "circuit_id": "686340bc-d045-4229-ba44-87f651888ea1", - "circuit_name": "circom-multiplier2", + "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-13T21:31:13.485Z", + "date_created": "2024-02-12T00:14:36.781Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.760798S", - "compute_times": { - "total": 7.836315272375941, - "queued": 1.203562, - "clean_up": 0.0016642827540636063, - "create_cpp": 0.05337905138731003, - "file_setup": 0.23328274302184582, - "compile_cpp": 4.752988923341036, - "create_r1cs": 0.010774670168757439, - "save_results": 0.0066010840237140656, - "get_r1cs_info": 0.0005256552249193192, - "groth16_setup": 1.285637954249978, - "export_verification_key": 1.489252969622612, - "download_trusted_setup_file": 0.0017739832401275635 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M21.300025S", + "compute_time_sec": 21.300025, + "compute_times": { + "total": 21.306767147034407, + "queued": 0.293132, + "clean_up": 0.2600619550794363, + "file_setup": 0.10280199348926544, + "create_r1cs": 0.7014120128005743, + "create_wasm": 1.4916918445378542, + "save_results": 0.018025938421487808, + "get_r1cs_info": 0.003770437091588974, + "groth16_setup": 15.514674112200737, + "export_verification_key": 1.5598135478794575, + "download_trusted_setup_file": 1.654065664857626 }, + "file_size": 7081723, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "circuit_id": "218bfbe6-9e50-4702-a1e5-77a1c8f3d8ed", - "circuit_name": "circom-multiplier2", + "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-13T21:30:35.803Z", + "date_created": "2024-02-12T00:12:50.904Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.456547S", - "compute_times": { - "total": 7.544302523136139, - "queued": 1.161186, - "clean_up": 0.0016966871917247772, - "create_cpp": 0.055683160200715065, - "file_setup": 0.2663968615233898, - "compile_cpp": 4.470876835286617, - "create_r1cs": 0.016854027286171913, - "save_results": 0.0059831272810697556, - "get_r1cs_info": 0.0006471928209066391, - "groth16_setup": 1.381587591022253, - "export_verification_key": 1.3415857050567865, - "download_trusted_setup_file": 0.0023956000804901123 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.311458S", + "compute_time_sec": 0.311458, + "compute_times": { + "total": 0.10177313163876534, + "queued": 0.288724, + "file_setup": 0.08924846164882183, + "create_wasm": 0.011913193389773369 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 1806552, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:10:40.331Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.123483S", + "compute_time_sec": 0.123483, + "compute_times": { + "total": 0.10418374836444855, + "queued": 0.24469, + "file_setup": 0.08240349031984806, + "create_wasm": 0.02108948677778244 }, + "file_size": 907287, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "17b13d5a-87b1-4923-a41b-8dfac41598e6", - "circuit_name": "circom-multiplier2", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-13T21:26:12.192Z", + "date_created": "2024-02-11T19:51:12.364Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.534251S", - "compute_times": { - "total": 7.610159991309047, - "queued": 1.074114, - "clean_up": 0.0017370078712701797, - "create_cpp": 0.048391491174697876, - "file_setup": 0.29270106740295887, - "compile_cpp": 4.538070844486356, - "create_r1cs": 0.01847922056913376, - "save_results": 0.005488520488142967, - "get_r1cs_info": 0.000662611797451973, - "groth16_setup": 1.36158980242908, - "export_verification_key": 1.3403133414685726, - "download_trusted_setup_file": 0.0024301279336214066 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.887947S", + "compute_time_sec": 36.887947, + "compute_times": { + "total": 36.89425963815302, + "queued": 0.257023, + "clean_up": 0.04403446055948734, + "file_setup": 29.98060936667025, + "create_r1cs": 0.3443223936483264, + "create_wasm": 1.05553247500211, + "save_results": 0.006293457001447678, + "get_r1cs_info": 0.000581374391913414, + "groth16_setup": 4.288356346078217, + "export_verification_key": 1.171438716351986, + "download_trusted_setup_file": 0.002127542160451412 }, + "file_size": 4238536, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "f31735ba-10be-4e12-982d-4fef1e1ce0dd", - "circuit_name": "circom-multiplier2", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:45.617Z", + "date_created": "2024-02-11T19:35:47.834Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.752871S", - "compute_times": { - "total": 7.832450011745095, - "queued": 8.522851, - "clean_up": 0.001605834811925888, - "create_cpp": 0.055504463613033295, - "file_setup": 0.26607356034219265, - "compile_cpp": 4.702925104647875, - "create_r1cs": 0.01827242784202099, - "save_results": 0.005086880177259445, - "get_r1cs_info": 0.0006781108677387238, - "groth16_setup": 1.3349650297313929, - "export_verification_key": 1.4444408621639013, - "download_trusted_setup_file": 0.0024520885199308395 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.242908S", + "compute_time_sec": 7.242908, + "compute_times": { + "total": 7.252888669259846, + "queued": 0.315189, + "clean_up": 0.24440924916416407, + "file_setup": 0.10320598538964987, + "create_r1cs": 0.3493071682751179, + "create_wasm": 1.0848499182611704, + "save_results": 0.006677108816802502, + "get_r1cs_info": 0.0006677061319351196, + "groth16_setup": 4.277557077817619, + "export_verification_key": 1.1795741403475404, + "download_trusted_setup_file": 0.002051391638815403 }, + "file_size": 4238546, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "aaf4017c-ab46-4f93-bf28-2e56f01dc1fc", - "circuit_name": "circom-multiplier2", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:44.641Z", + "date_created": "2024-02-11T19:32:24.516Z", + "num_proofs": 3, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.753917S", - "compute_times": { - "total": 7.827567195519805, - "queued": 1.101088, - "clean_up": 0.0016659628599882126, - "create_cpp": 0.05382388457655907, - "file_setup": 0.2323012426495552, - "compile_cpp": 4.666489981114864, - "create_r1cs": 0.011194108054041862, - "save_results": 0.006574276834726334, - "get_r1cs_info": 0.0007063709199428558, - "groth16_setup": 1.4113504774868488, - "export_verification_key": 1.440731318667531, - "download_trusted_setup_file": 0.0024564042687416077 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.502453S", + "compute_time_sec": 8.502453, + "compute_times": { + "total": 8.5082988422364, + "queued": 0.290802, + "clean_up": 0.24006511457264423, + "file_setup": 0.10109577886760235, + "create_r1cs": 0.374081764370203, + "create_wasm": 1.0719998348504305, + "save_results": 0.006332419812679291, + "get_r1cs_info": 0.0005895020440220833, + "groth16_setup": 4.342386241070926, + "export_verification_key": 1.097628473304212, + "download_trusted_setup_file": 1.2735503260046244 }, + "file_size": 4238535, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "circuit_id": "db84e100-4f7c-48f6-9f4c-da94fb521ba4", - "circuit_name": "circom-multiplier2", + "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:44.325Z", + "date_created": "2024-02-11T19:14:59.465Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.506195S", - "compute_times": { - "total": 7.577193319797516, - "queued": 1.126466, - "clean_up": 0.0016360525041818619, - "create_cpp": 0.050101183354854584, - "file_setup": 0.2603087369352579, - "compile_cpp": 4.455103283748031, - "create_r1cs": 0.0183374285697937, - "save_results": 0.0060533396899700165, - "get_r1cs_info": 0.0006764288991689682, - "groth16_setup": 1.3401963710784912, - "export_verification_key": 1.4419056754559278, - "download_trusted_setup_file": 0.002419356256723404 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.379245S", + "compute_time_sec": 0.379245, + "compute_times": { + "total": 0.10352941323071718, + "queued": 0.225145, + "file_setup": 0.0858859121799469, + "create_wasm": 0.016125368885695934 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 1804057, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:09:18.022Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.300239S", + "compute_time_sec": 0.300239, + "compute_times": { + "total": 0.09953181259334087, + "queued": 0.267199, + "file_setup": 0.08270685467869043, + "create_wasm": 0.01634138822555542 }, + "file_size": 1803953, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "daa936a6-b70a-485a-bcd2-3225daac7ce4", - "circuit_name": "circom-multiplier2", + "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:44.263Z", + "date_created": "2024-02-11T19:00:54.135Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.369064S", - "compute_times": { - "total": 7.462511362507939, - "queued": 1.390478, - "clean_up": 0.001627311110496521, - "create_cpp": 0.04592450521886349, - "file_setup": 0.2660178393125534, - "compile_cpp": 4.419640392065048, - "create_r1cs": 0.01586141064763069, - "save_results": 0.005797659978270531, - "get_r1cs_info": 0.0007299073040485382, - "groth16_setup": 1.3323616590350866, - "export_verification_key": 1.3716226406395435, - "download_trusted_setup_file": 0.0024577025324106216 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179718S", + "compute_time_sec": 0.179718, + "compute_times": { + "total": 0.10090719535946846, + "queued": 0.251874, + "file_setup": 0.08464208338409662, + "create_wasm": 0.01588864903897047 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 1803921, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:45:44.857Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.269437S", + "compute_time_sec": 0.269437, + "compute_times": { + "total": 0.10417102556675673, + "queued": 0.229957, + "file_setup": 0.0870280647650361, + "create_wasm": 0.016761316917836666 }, + "file_size": 1803870, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "d983ae2d-6e7f-4b0b-a504-1b0e78c4d685", - "circuit_name": "circom-multiplier2", + "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:09.525Z", + "date_created": "2024-02-11T18:44:01.720Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.427022S", - "compute_times": { - "total": 7.503694657236338, - "queued": 8.80287, - "clean_up": 0.001652505248785019, - "create_cpp": 0.04614919610321522, - "file_setup": 0.24367324821650982, - "compile_cpp": 4.46963276527822, - "create_r1cs": 0.018824949860572815, - "save_results": 0.006128018721938133, - "get_r1cs_info": 0.0006784088909626007, - "groth16_setup": 1.3777296636253595, - "export_verification_key": 1.3364742659032345, - "download_trusted_setup_file": 0.0024303756654262543 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119612S", + "compute_time_sec": 0.119612, + "compute_times": { + "total": 0.07268805895000696, + "queued": 0.258881, + "file_setup": 0.056701790541410446, + "create_wasm": 0.015431713312864304 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 905050, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-11T18:10:12.579Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.281287S", + "compute_time_sec": 0.281287, + "compute_times": { + "total": 0.11563524045050144, + "queued": 0.305225, + "file_setup": 0.10166966635733843, + "create_wasm": 0.01360108982771635 }, + "file_size": 1805983, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "14b9b4bd-be26-4a4d-8ad6-2a64b22551b2", - "circuit_name": "circom-multiplier2", + "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:08.674Z", + "date_created": "2024-02-11T18:09:21.301Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.675444S", - "compute_times": { - "total": 7.7506245244294405, - "queued": 1.154247, - "clean_up": 0.0018263813108205795, - "create_cpp": 0.04755707457661629, - "file_setup": 0.23483316786587238, - "compile_cpp": 4.8177584912627935, - "create_r1cs": 0.016598980873823166, - "save_results": 0.005438234657049179, - "get_r1cs_info": 0.0006564464420080185, - "groth16_setup": 1.3556398712098598, - "export_verification_key": 1.2685111500322819, - "download_trusted_setup_file": 0.001376638188958168 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129729S", + "compute_time_sec": 0.129729, + "compute_times": { + "total": 0.0997195653617382, + "queued": 0.324444, + "file_setup": 0.08716154284775257, + "create_wasm": 0.01209271140396595 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 1805970, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-01-31T22:08:05.475Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.909178S", + "compute_time_sec": 6.909178, + "compute_times": { + "total": 6.960774548351765, + "queued": 24.976953, + "clean_up": 0.005624564364552498, + "create_cpp": 0.04884001612663269, + "file_setup": 0.23423208110034466, + "compile_cpp": 4.481184393167496, + "create_r1cs": 0.019831592217087746, + "save_results": 0.003675384446978569, + "get_r1cs_info": 0.0003577694296836853, + "groth16_setup": 1.123554177582264, + "export_verification_key": 1.0419799592345953, + "download_trusted_setup_file": 0.0011759810149669647 }, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "8cb0a806-6e22-42a3-8938-9c5e4d43c494", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:08.288Z", + "date_created": "2024-01-31T18:15:04.723Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.622437S", - "compute_times": { - "total": 7.712840095162392, - "queued": 1.352504, - "clean_up": 0.0015625767409801483, - "create_cpp": 0.0473609771579504, - "file_setup": 0.274502482265234, - "compile_cpp": 4.538209417834878, - "create_r1cs": 0.01853426732122898, - "save_results": 0.005721943452954292, - "get_r1cs_info": 0.0008788108825683594, - "groth16_setup": 1.478102458640933, - "export_verification_key": 1.3446549959480762, - "download_trusted_setup_file": 0.002755912020802498 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.286136S", + "compute_time_sec": 7.286136, + "compute_times": { + "total": 7.340654090046883, + "queued": 38.074183, + "clean_up": 0.0009148658718913794, + "create_cpp": 0.04542793915607035, + "file_setup": 0.23204711498692632, + "compile_cpp": 4.680376983946189, + "create_r1cs": 0.008409275906160474, + "save_results": 0.0033105541951954365, + "get_r1cs_info": 0.0003685750998556614, + "groth16_setup": 1.178457418922335, + "export_verification_key": 1.1900099229533225, + "download_trusted_setup_file": 0.000988946994766593 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "28b80e00-ee5e-4fca-b8a2-a4c587a5b1a8", + "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:25:08.247Z", + "date_created": "2024-01-31T18:15:04.122Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.776828S", - "compute_times": { - "total": 7.85468071885407, - "queued": 1.134198, - "clean_up": 0.0016253981739282608, - "create_cpp": 0.04779060371220112, - "file_setup": 0.25725592114031315, - "compile_cpp": 4.527051644399762, - "create_r1cs": 0.013751301914453506, - "save_results": 0.005713514983654022, - "get_r1cs_info": 0.0006611738353967667, - "groth16_setup": 1.5295016206800938, - "export_verification_key": 1.4682168513536453, - "download_trusted_setup_file": 0.0024928878992795944 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.463866S", + "compute_time_sec": 7.463866, + "compute_times": { + "total": 7.523294999962673, + "queued": 37.680306, + "clean_up": 0.0007766569033265114, + "create_cpp": 0.04011468309909105, + "file_setup": 0.2518389639444649, + "compile_cpp": 4.806413288926706, + "create_r1cs": 0.008677670964971185, + "save_results": 0.0031781040597707033, + "get_r1cs_info": 0.00039803609251976013, + "groth16_setup": 1.1818688770290464, + "export_verification_key": 1.2287184570450336, + "download_trusted_setup_file": 0.0010086549445986748 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "1f3e9013-4907-423f-96a1-544e04d1e8fd", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:23:07.754Z", + "date_created": "2024-01-31T18:15:03.780Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.641417S", - "compute_times": { - "total": 7.71757803671062, - "queued": 1.220704, - "clean_up": 0.0018078796565532684, - "create_cpp": 0.045883724465966225, - "file_setup": 0.2438215035945177, - "compile_cpp": 4.7984380554407835, - "create_r1cs": 0.01085478626191616, - "save_results": 0.005862860009074211, - "get_r1cs_info": 0.0006757788360118866, - "groth16_setup": 1.3325737826526165, - "export_verification_key": 1.2749093975871801, - "download_trusted_setup_file": 0.0024107228964567184 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.480065S", + "compute_time_sec": 7.480065, + "compute_times": { + "total": 7.537460318999365, + "queued": 33.511443, + "clean_up": 0.0008328610565513372, + "create_cpp": 0.03915940411388874, + "file_setup": 0.2353337057866156, + "compile_cpp": 4.872832479886711, + "create_r1cs": 0.009635194204747677, + "save_results": 0.003330645151436329, + "get_r1cs_info": 0.00040896888822317123, + "groth16_setup": 1.243939558044076, + "export_verification_key": 1.1305532888509333, + "download_trusted_setup_file": 0.0010688810143619776 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "8c2be303-4dbb-4e08-8c83-9544d3a62005", + "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:22:21.392Z", + "date_created": "2024-01-31T18:15:03.625Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.608258S", - "compute_times": { - "total": 7.6810623444616795, - "queued": 26.433306, - "clean_up": 0.0016187690198421478, - "create_cpp": 0.05313163995742798, - "file_setup": 0.22949195466935635, - "compile_cpp": 4.770350804552436, - "create_r1cs": 0.018276238813996315, - "save_results": 0.005552975460886955, - "get_r1cs_info": 0.0006811916828155518, - "groth16_setup": 1.3329863864928484, - "export_verification_key": 1.2661008946597576, - "download_trusted_setup_file": 0.002443268895149231 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.465790S", + "compute_time_sec": 7.46579, + "compute_times": { + "total": 7.517380404053256, + "queued": 32.017107, + "clean_up": 0.000841652974486351, + "create_cpp": 0.04037469998002052, + "file_setup": 0.21061871387064457, + "compile_cpp": 4.7562680810224265, + "create_r1cs": 0.008348200935870409, + "save_results": 0.0034994680900126696, + "get_r1cs_info": 0.000424881000071764, + "groth16_setup": 1.2855071290396154, + "export_verification_key": 1.210078198928386, + "download_trusted_setup_file": 0.0010237020906060934 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "50efafde-7ee8-4af2-89ce-4d04fff606e7", + "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:22:20.790Z", + "date_created": "2024-01-31T18:15:02.471Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.733827S", - "compute_times": { - "total": 7.811790093779564, - "queued": 18.099938, - "clean_up": 0.0017698965966701508, - "create_cpp": 0.04756795987486839, - "file_setup": 0.26168153434991837, - "compile_cpp": 4.9301884565502405, - "create_r1cs": 0.018425103276968002, - "save_results": 0.005480572581291199, - "get_r1cs_info": 0.0007110685110092163, - "groth16_setup": 1.26290631480515, - "export_verification_key": 1.2801700197160244, - "download_trusted_setup_file": 0.0024473965167999268 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.143051S", + "compute_time_sec": 7.143051, + "compute_times": { + "total": 7.1952535710297525, + "queued": 32.071917, + "clean_up": 0.0009264149703085423, + "create_cpp": 0.037378153996542096, + "file_setup": 0.22291689622215927, + "compile_cpp": 4.493842450901866, + "create_r1cs": 0.00868003792129457, + "save_results": 0.003541851881891489, + "get_r1cs_info": 0.0003536711446940899, + "groth16_setup": 1.202652727952227, + "export_verification_key": 1.2237500881310552, + "download_trusted_setup_file": 0.0009900499135255814 }, + "file_size": 225450, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "b32c29df-aed4-460d-a55b-c69b3fd14c79", + "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:22:20.127Z", + "date_created": "2024-01-31T18:15:02.067Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.516072S", - "compute_times": { - "total": 7.594199365004897, - "queued": 1.179891, - "clean_up": 0.0016085132956504822, - "create_cpp": 0.047564439475536346, - "file_setup": 0.24740388244390488, - "compile_cpp": 4.707322858273983, - "create_r1cs": 0.01673438772559166, - "save_results": 0.005771454423666, - "get_r1cs_info": 0.0006707236170768738, - "groth16_setup": 1.2979658357799053, - "export_verification_key": 1.2663146257400513, - "download_trusted_setup_file": 0.0023819822818040848 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.529084S", + "compute_time_sec": 7.529084, + "compute_times": { + "total": 7.584393135970458, + "queued": 30.973415, + "clean_up": 0.00083908811211586, + "create_cpp": 0.04151515499688685, + "file_setup": 0.23193758307024837, + "compile_cpp": 4.9528708211146295, + "create_r1cs": 0.008621205808594823, + "save_results": 0.0033709488343447447, + "get_r1cs_info": 0.0004654980730265379, + "groth16_setup": 1.127253663027659, + "export_verification_key": 1.2159365471452475, + "download_trusted_setup_file": 0.0011964899022132158 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "27853e5c-3d53-406d-90ba-bee337369510", + "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:22:20.118Z", + "date_created": "2024-01-31T18:15:01.892Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.691865S", - "compute_times": { - "total": 7.768615400418639, - "queued": 9.916591, - "clean_up": 0.0023098569363355637, - "create_cpp": 0.05343518406152725, - "file_setup": 0.23305759578943253, - "compile_cpp": 4.7266155276447535, - "create_r1cs": 0.016702940687537193, - "save_results": 0.006057048216462135, - "get_r1cs_info": 0.0006873272359371185, - "groth16_setup": 1.3462165966629982, - "export_verification_key": 1.3805092219263315, - "download_trusted_setup_file": 0.0025850217789411545 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.968285S", + "compute_time_sec": 6.968285, + "compute_times": { + "total": 7.020302023971453, + "queued": 24.589933, + "clean_up": 0.0007189519237726927, + "create_cpp": 0.039091327926144004, + "file_setup": 0.22075876407325268, + "compile_cpp": 4.478542160009965, + "create_r1cs": 0.008031236007809639, + "save_results": 0.0033459621481597424, + "get_r1cs_info": 0.00031445594504475594, + "groth16_setup": 1.1534762841183692, + "export_verification_key": 1.1147591178305447, + "download_trusted_setup_file": 0.000989275984466076 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "5beab6fd-e879-420a-afa8-3de72e1a55f7", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:19:46.504Z", + "date_created": "2024-01-31T18:15:01.304Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.515950S", - "compute_times": { - "total": 7.589921785518527, - "queued": 10.157228, - "clean_up": 0.0007169600576162338, - "create_cpp": 0.046469248831272125, - "file_setup": 0.2272897120565176, - "compile_cpp": 4.710785340517759, - "create_r1cs": 0.011910352855920792, - "save_results": 0.004649905487895012, - "get_r1cs_info": 0.0008330028504133224, - "groth16_setup": 1.2739597726613283, - "export_verification_key": 1.3097787145525217, - "download_trusted_setup_file": 0.003099275752902031 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.959223S", + "compute_time_sec": 6.959223, + "compute_times": { + "total": 7.0112608759664, + "queued": 17.111301, + "clean_up": 0.0008735461160540581, + "create_cpp": 0.038755591958761215, + "file_setup": 0.24885913101024926, + "compile_cpp": 4.36299676517956, + "create_r1cs": 0.00803148397244513, + "save_results": 0.01730395178310573, + "get_r1cs_info": 0.0003368018660694361, + "groth16_setup": 1.1180529070552438, + "export_verification_key": 1.2148506320081651, + "download_trusted_setup_file": 0.0009600170888006687 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "3614ff84-c93d-4e30-b8b9-ec24358b42c0", + "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:19:45.239Z", + "date_created": "2024-01-31T18:15:01.000Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.594156S", - "compute_times": { - "total": 7.672163272276521, - "queued": 2.675083, - "clean_up": 0.001137731596827507, - "create_cpp": 0.05406654439866543, - "file_setup": 0.24084424786269665, - "compile_cpp": 4.693928143009543, - "create_r1cs": 0.01765979267656803, - "save_results": 0.0036431998014450073, - "get_r1cs_info": 0.0006935875862836838, - "groth16_setup": 1.344341717660427, - "export_verification_key": 1.3129563517868519, - "download_trusted_setup_file": 0.0024511590600013733 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.949886S", + "compute_time_sec": 6.949886, + "compute_times": { + "total": 7.000236368039623, + "queued": 1.134467, + "clean_up": 0.0007571689784526825, + "create_cpp": 0.03813181212171912, + "file_setup": 0.39067235100083053, + "compile_cpp": 4.379259012872353, + "create_r1cs": 0.008045257069170475, + "save_results": 0.037871989188715816, + "get_r1cs_info": 0.0003408279735594988, + "groth16_setup": 1.0681434420403093, + "export_verification_key": 1.0757975298911333, + "download_trusted_setup_file": 0.0009711629245430231 }, + "file_size": 225416, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "152636dc-fa99-421f-9111-2da84bf32acc", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:18:51.613Z", + "date_created": "2024-01-31T18:15:00.922Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.504325S", - "compute_times": { - "total": 7.582463687285781, - "queued": 8.941439, - "clean_up": 0.0015817917883396149, - "create_cpp": 0.04805071838200092, - "file_setup": 0.24654102325439453, - "compile_cpp": 4.683576079085469, - "create_r1cs": 0.018908562138676643, - "save_results": 0.005744511261582375, - "get_r1cs_info": 0.0006975065916776657, - "groth16_setup": 1.3209072556346655, - "export_verification_key": 1.253587955608964, - "download_trusted_setup_file": 0.0025104787200689316 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.086134S", + "compute_time_sec": 7.086134, + "compute_times": { + "total": 7.139805332990363, + "queued": 9.283956, + "clean_up": 0.0007637820672243834, + "create_cpp": 0.040777466958388686, + "file_setup": 0.22701866691932082, + "compile_cpp": 4.5694026600103825, + "create_r1cs": 0.008620185079053044, + "save_results": 0.009906678926199675, + "get_r1cs_info": 0.0005167280323803425, + "groth16_setup": 1.0815790109336376, + "export_verification_key": 1.1996698069851846, + "download_trusted_setup_file": 0.0012109570670872927 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "a4dcc99e-8071-4ea2-a849-d81bca825ede", - "circuit_name": "circom-multiplier2", + "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-13T21:18:50.708Z", + "date_created": "2024-01-17T00:39:38.679Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.463569S", - "compute_times": { - "total": 7.540723716840148, - "queued": 1.171693, - "clean_up": 0.0016952920705080032, - "create_cpp": 0.05335593223571777, - "file_setup": 0.23299168795347214, - "compile_cpp": 4.694493172690272, - "create_r1cs": 0.015898721292614937, - "save_results": 0.004501448944211006, - "get_r1cs_info": 0.0006934106349945068, - "groth16_setup": 1.2703441120684147, - "export_verification_key": 1.263868784531951, - "download_trusted_setup_file": 0.002431286498904228 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.550840S", + "compute_time_sec": 7.55084, + "compute_times": { + "total": 7.629153113812208, + "queued": 15.012343, + "clean_up": 0.011455003172159195, + "create_cpp": 0.054636724293231964, + "file_setup": 0.31103159487247467, + "compile_cpp": 4.492543734610081, + "create_r1cs": 0.0336969792842865, + "save_results": 0.005911210551857948, + "get_r1cs_info": 0.0004208497703075409, + "groth16_setup": 1.3556907046586275, + "export_verification_key": 1.3620027527213097, + "download_trusted_setup_file": 0.0013344846665859222 }, + "file_size": 1650629, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "7257082b-8a36-4532-adab-5c561cde2a29", + "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:12:32.316Z", + "date_created": "2024-01-14T18:27:15.352Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.729830S", - "compute_times": { - "total": 7.805140299722552, - "queued": 1.094657, - "clean_up": 0.0016505271196365356, - "create_cpp": 0.05546964891254902, - "file_setup": 0.2259269542992115, - "compile_cpp": 4.886959254741669, - "create_r1cs": 0.016729675233364105, - "save_results": 0.005791829898953438, - "get_r1cs_info": 0.0006887372583150864, - "groth16_setup": 1.357726663351059, - "export_verification_key": 1.2512025628238916, - "download_trusted_setup_file": 0.0025302208960056305 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.078009S", + "compute_time_sec": 8.078009, + "compute_times": { + "total": 8.165162647143006, + "queued": 1.05453, + "clean_up": 0.001927914097905159, + "create_cpp": 0.05209779180586338, + "file_setup": 0.2735048495233059, + "compile_cpp": 4.798323042690754, + "create_r1cs": 0.018848145380616188, + "save_results": 0.00658784992992878, + "get_r1cs_info": 0.0008379388600587845, + "groth16_setup": 1.6222364120185375, + "export_verification_key": 1.38789046369493, + "download_trusted_setup_file": 0.0024561677128076553 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "b6cda26c-e9ae-481f-a455-c1905782cc5a", + "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:12:30.890Z", + "date_created": "2024-01-14T18:27:14.083Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.515835S", - "compute_times": { - "total": 7.597714696079493, - "queued": 1.112794, - "clean_up": 0.0016388893127441406, - "create_cpp": 0.055322440341115, - "file_setup": 0.2542826198041439, - "compile_cpp": 4.492570606991649, - "create_r1cs": 0.018006742000579834, - "save_results": 0.005599640309810638, - "get_r1cs_info": 0.0007673837244510651, - "groth16_setup": 1.3414161559194326, - "export_verification_key": 1.4249787032604218, - "download_trusted_setup_file": 0.0025149118155241013 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.904210S", + "compute_time_sec": 7.90421, + "compute_times": { + "total": 7.990685863420367, + "queued": 1.148767, + "clean_up": 0.0017737876623868942, + "create_cpp": 0.04771621339023113, + "file_setup": 0.2793459966778755, + "compile_cpp": 4.619792276993394, + "create_r1cs": 0.00932052917778492, + "save_results": 0.006265198811888695, + "get_r1cs_info": 0.0004815235733985901, + "groth16_setup": 1.4397705420851707, + "export_verification_key": 1.584412407130003, + "download_trusted_setup_file": 0.0015385709702968597 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "a39533e5-976d-4b15-86fa-fa2572212c6a", + "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:11:43.620Z", + "date_created": "2024-01-14T18:27:14.042Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.525638S", - "compute_times": { - "total": 7.6020667646080256, - "queued": 1.096438, - "clean_up": 0.0021714698523283005, - "create_cpp": 0.04854712076485157, - "file_setup": 0.24291070736944675, - "compile_cpp": 4.659763751551509, - "create_r1cs": 0.010860981419682503, - "save_results": 0.006801890209317207, - "get_r1cs_info": 0.0006881803274154663, - "groth16_setup": 1.3576972987502813, - "export_verification_key": 1.2697169426828623, - "download_trusted_setup_file": 0.0024792905896902084 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.840020S", + "compute_time_sec": 7.84002, + "compute_times": { + "total": 7.916158145293593, + "queued": 1.103501, + "clean_up": 0.001588582992553711, + "create_cpp": 0.05656779184937477, + "file_setup": 0.2618618682026863, + "compile_cpp": 4.655229337513447, + "create_r1cs": 0.010038148611783981, + "save_results": 0.005318811163306236, + "get_r1cs_info": 0.0004153270274400711, + "groth16_setup": 1.3863549754023552, + "export_verification_key": 1.5370171926915646, + "download_trusted_setup_file": 0.0013035386800765991 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "67af6d38-e3dd-41f9-a73c-2a8cffeb60f3", + "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:11:17.808Z", + "date_created": "2024-01-14T18:26:26.125Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.696916S", - "compute_times": { - "total": 7.800829553976655, - "queued": 8.900049, - "clean_up": 0.0017651356756687164, - "create_cpp": 0.048156820237636566, - "file_setup": 0.26956662349402905, - "compile_cpp": 4.73041276447475, - "create_r1cs": 0.01830790378153324, - "save_results": 0.0053640734404325485, - "get_r1cs_info": 0.0007263273000717163, - "groth16_setup": 1.3079448156058788, - "export_verification_key": 1.4156472980976105, - "download_trusted_setup_file": 0.0024303123354911804 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.895332S", + "compute_time_sec": 7.895332, + "compute_times": { + "total": 7.985105384141207, + "queued": 1.097711, + "clean_up": 0.0017092283815145493, + "create_cpp": 0.05560790188610554, + "file_setup": 0.27359912544488907, + "compile_cpp": 4.84467164054513, + "create_r1cs": 0.01020035706460476, + "save_results": 0.00596289336681366, + "get_r1cs_info": 0.0003344062715768814, + "groth16_setup": 1.3516457378864288, + "export_verification_key": 1.4395998753607273, + "download_trusted_setup_file": 0.001010250300168991 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "29482186-ed38-40a1-8f41-396e46cbe2af", + "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:11:16.527Z", + "date_created": "2024-01-14T18:26:25.495Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.843573S", - "compute_times": { - "total": 7.918207410722971, - "queued": 1.1316, - "clean_up": 0.001619592308998108, - "create_cpp": 0.05113654024899006, - "file_setup": 0.22972466051578522, - "compile_cpp": 4.823534423485398, - "create_r1cs": 0.012231025844812393, - "save_results": 0.005758641287684441, - "get_r1cs_info": 0.0007135551422834396, - "groth16_setup": 1.2769745737314224, - "export_verification_key": 1.5135366152971983, - "download_trusted_setup_file": 0.002458721399307251 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.731496S", + "compute_time_sec": 7.731496, + "compute_times": { + "total": 7.827601557597518, + "queued": 1.26957, + "clean_up": 0.002000821754336357, + "create_cpp": 0.04701829329133034, + "file_setup": 0.2621183265000582, + "compile_cpp": 4.725081695243716, + "create_r1cs": 0.011297162622213364, + "save_results": 0.005976244807243347, + "get_r1cs_info": 0.0006684809923171997, + "groth16_setup": 1.4255939163267612, + "export_verification_key": 1.3449707236140966, + "download_trusted_setup_file": 0.0024210847914218903 }, + "file_size": 225430, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "12e11f6e-15fe-48a5-a4ff-5691bda05b5d", + "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:05:59.342Z", + "date_created": "2024-01-14T16:31:55.438Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.733115S", - "compute_times": { - "total": 7.8099565505981445, - "queued": 1.165322, - "clean_up": 0.0017883870750665665, - "create_cpp": 0.04638352990150452, - "file_setup": 0.23020289093255997, - "compile_cpp": 4.791501699015498, - "create_r1cs": 0.018074993044137955, - "save_results": 0.005634209141135216, - "get_r1cs_info": 0.0005376394838094711, - "groth16_setup": 1.3833652567118406, - "export_verification_key": 1.3307239394634962, - "download_trusted_setup_file": 0.001316094771027565 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.586921S", + "compute_time_sec": 7.586921, + "compute_times": { + "total": 7.663304785266519, + "queued": 1.132337, + "clean_up": 0.0015752892941236496, + "create_cpp": 0.049899373203516006, + "file_setup": 0.22959892638027668, + "compile_cpp": 4.780468979850411, + "create_r1cs": 0.017419403418898582, + "save_results": 0.0054653361439704895, + "get_r1cs_info": 0.0007719267159700394, + "groth16_setup": 1.2644738126546144, + "export_verification_key": 1.310561291873455, + "download_trusted_setup_file": 0.0026084203273057938 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "57750805-da3a-4aed-8713-fca8c8217d85", + "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:05:58.051Z", + "date_created": "2024-01-14T16:27:56.593Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.523016S", - "compute_times": { - "total": 7.615536188706756, - "queued": 1.111699, - "clean_up": 0.0017289314419031143, - "create_cpp": 0.048704590648412704, - "file_setup": 0.30340966396033764, - "compile_cpp": 4.493021473288536, - "create_r1cs": 0.01810857281088829, - "save_results": 0.005765935406088829, - "get_r1cs_info": 0.0006618835031986237, - "groth16_setup": 1.3754791505634785, - "export_verification_key": 1.3655782397836447, - "download_trusted_setup_file": 0.002464406192302704 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.801205S", + "compute_time_sec": 7.801205, + "compute_times": { + "total": 7.875548103824258, + "queued": 1.098988, + "clean_up": 0.0017300937324762344, + "create_cpp": 0.05396237596869469, + "file_setup": 0.2385635208338499, + "compile_cpp": 4.6406055726110935, + "create_r1cs": 0.016733812168240547, + "save_results": 0.004983868449926376, + "get_r1cs_info": 0.0006270240992307663, + "groth16_setup": 1.3868273310363293, + "export_verification_key": 1.528601661324501, + "download_trusted_setup_file": 0.002437632530927658 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "ae9ee957-3550-4e73-b85c-67d2d105059e", + "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:05:37.596Z", + "date_created": "2024-01-14T16:27:42.490Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.637196S", - "compute_times": { - "total": 7.714641183614731, - "queued": 1.118562, - "clean_up": 0.0010698717087507248, - "create_cpp": 0.04957794025540352, - "file_setup": 0.27610501274466515, - "compile_cpp": 4.523411748930812, - "create_r1cs": 0.01730293408036232, - "save_results": 0.005932852625846863, - "get_r1cs_info": 0.0006670821458101273, - "groth16_setup": 1.4076793268322945, - "export_verification_key": 1.4298051688820124, - "download_trusted_setup_file": 0.0024724751710891724 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.531215S", + "compute_time_sec": 7.531215, + "compute_times": { + "total": 7.6094263680279255, + "queued": 1.133009, + "clean_up": 0.001713564619421959, + "create_cpp": 0.04710027575492859, + "file_setup": 0.23515290580689907, + "compile_cpp": 4.696669522672892, + "create_r1cs": 0.017408769577741623, + "save_results": 0.005742281675338745, + "get_r1cs_info": 0.0006468463689088821, + "groth16_setup": 1.3201909139752388, + "export_verification_key": 1.2817781921476126, + "download_trusted_setup_file": 0.0024629440158605576 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "a87238f3-8b90-4023-9dea-0e882b7981ba", + "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:05:36.364Z", + "date_created": "2024-01-14T16:27:26.943Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.776732S", - "compute_times": { - "total": 7.861673956736922, - "queued": 1.17302, - "clean_up": 0.001835215836763382, - "create_cpp": 0.05279397964477539, - "file_setup": 0.24823277816176414, - "compile_cpp": 4.638548230752349, - "create_r1cs": 0.01119343563914299, - "save_results": 0.00524553656578064, - "get_r1cs_info": 0.000684596598148346, - "groth16_setup": 1.4201921876519918, - "export_verification_key": 1.4799509402364492, - "download_trusted_setup_file": 0.002554507926106453 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.713700S", + "compute_time_sec": 7.7137, + "compute_times": { + "total": 7.7915890868753195, + "queued": 1.17603, + "clean_up": 0.001603648066520691, + "create_cpp": 0.04629753343760967, + "file_setup": 0.2314635906368494, + "compile_cpp": 4.7291872799396515, + "create_r1cs": 0.016094380989670753, + "save_results": 0.005229661241173744, + "get_r1cs_info": 0.0004699360579252243, + "groth16_setup": 1.3847032357007265, + "export_verification_key": 1.3747948426753283, + "download_trusted_setup_file": 0.0012649912387132645 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "75c7a835-d810-4e78-a21e-f44ea2cb04e3", + "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:03:42.166Z", + "date_created": "2024-01-14T16:24:25.201Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.967605S", - "compute_times": { - "total": 8.046053376048803, - "queued": 26.21097, - "clean_up": 0.0018648356199264526, - "create_cpp": 0.05596049129962921, - "file_setup": 0.24261613935232162, - "compile_cpp": 4.93765183351934, - "create_r1cs": 0.017572950571775436, - "save_results": 0.0059426408261060715, - "get_r1cs_info": 0.0006746537983417511, - "groth16_setup": 1.2796957772225142, - "export_verification_key": 1.5012296475470066, - "download_trusted_setup_file": 0.002398606389760971 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.782942S", + "compute_time_sec": 7.782942, + "compute_times": { + "total": 7.858149649575353, + "queued": 1.192228, + "clean_up": 0.0016285404562950134, + "create_cpp": 0.04751185514032841, + "file_setup": 0.22963756695389748, + "compile_cpp": 4.810557749122381, + "create_r1cs": 0.011191016063094139, + "save_results": 0.0053499843925237656, + "get_r1cs_info": 0.0006842408329248428, + "groth16_setup": 1.305834548547864, + "export_verification_key": 1.4425791203975677, + "download_trusted_setup_file": 0.0027836784720420837 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "6fa42f17-7d1f-4dee-9909-2bf61f577c5f", + "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:03:41.592Z", + "date_created": "2024-01-14T16:24:08.702Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.580787S", - "compute_times": { - "total": 7.655207581818104, - "queued": 17.985551, - "clean_up": 0.002056419849395752, - "create_cpp": 0.052002936601638794, - "file_setup": 0.2451938558369875, - "compile_cpp": 4.685491403564811, - "create_r1cs": 0.010299311950802803, - "save_results": 0.006189430132508278, - "get_r1cs_info": 0.0008878409862518311, - "groth16_setup": 1.272452101111412, - "export_verification_key": 1.3772340640425682, - "download_trusted_setup_file": 0.0030425861477851868 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.712942S", + "compute_time_sec": 7.712942, + "compute_times": { + "total": 7.788311326876283, + "queued": 1.222064, + "clean_up": 0.0015964601188898087, + "create_cpp": 0.048168059438467026, + "file_setup": 0.24294559471309185, + "compile_cpp": 4.80493832193315, + "create_r1cs": 0.01979799196124077, + "save_results": 0.005484664812684059, + "get_r1cs_info": 0.0007523689419031143, + "groth16_setup": 1.360052939504385, + "export_verification_key": 1.3015912808477879, + "download_trusted_setup_file": 0.00248897448182106 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "9f6ab24a-2672-4c5a-931c-3582ddee3be3", + "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:03:41.189Z", + "date_created": "2024-01-14T16:23:55.055Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.415751S", - "compute_times": { - "total": 7.493710907176137, - "queued": 9.715005, - "clean_up": 0.0016273707151412964, - "create_cpp": 0.05303688161075115, - "file_setup": 0.2430403921753168, - "compile_cpp": 4.668433295562863, - "create_r1cs": 0.012174364179372787, - "save_results": 0.005725568160414696, - "get_r1cs_info": 0.0008735992014408112, - "groth16_setup": 1.244223466143012, - "export_verification_key": 1.2610872369259596, - "download_trusted_setup_file": 0.0030381176620721817 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.504987S", + "compute_time_sec": 7.504987, + "compute_times": { + "total": 7.582275737076998, + "queued": 1.111203, + "clean_up": 0.00203564390540123, + "create_cpp": 0.04740658402442932, + "file_setup": 0.2326672412455082, + "compile_cpp": 4.5253369603306055, + "create_r1cs": 0.015371032059192657, + "save_results": 0.0063849929720163345, + "get_r1cs_info": 0.0003808550536632538, + "groth16_setup": 1.3611575067043304, + "export_verification_key": 1.3897777944803238, + "download_trusted_setup_file": 0.0012431517243385315 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "cea5b4b2-5dd4-4d24-a879-60b84d523800", + "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T21:03:40.905Z", + "date_created": "2024-01-14T16:23:31.285Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.587273S", - "compute_times": { - "total": 7.663808356970549, - "queued": 1.158335, - "clean_up": 0.0018277596682310104, - "create_cpp": 0.05417764373123646, - "file_setup": 0.24907702021300793, - "compile_cpp": 4.704896626994014, - "create_r1cs": 0.010135684162378311, - "save_results": 0.0060002803802490234, - "get_r1cs_info": 0.0007133446633815765, - "groth16_setup": 1.3235171046108007, - "export_verification_key": 1.3105034790933132, - "download_trusted_setup_file": 0.0025282446295022964 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.404341S", + "compute_time_sec": 7.404341, + "compute_times": { + "total": 7.481531243771315, + "queued": 1.164668, + "clean_up": 0.001758268103003502, + "create_cpp": 0.054409828037023544, + "file_setup": 0.228825144469738, + "compile_cpp": 4.561935219913721, + "create_r1cs": 0.01824786141514778, + "save_results": 0.005484595894813538, + "get_r1cs_info": 0.000652119517326355, + "groth16_setup": 1.3237749002873898, + "export_verification_key": 1.2835038527846336, + "download_trusted_setup_file": 0.0024792589247226715 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "be85789b-7d19-4fd2-8ab6-79f116e99018", + "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:58:42.298Z", + "date_created": "2024-01-14T16:23:11.647Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.612119S", - "compute_times": { - "total": 7.685093659907579, - "queued": 1.14216, - "clean_up": 0.002341996878385544, - "create_cpp": 0.05459519848227501, - "file_setup": 0.23490560427308083, - "compile_cpp": 4.658818148076534, - "create_r1cs": 0.016625098884105682, - "save_results": 0.00551554374396801, - "get_r1cs_info": 0.0008137207478284836, - "groth16_setup": 1.3161104060709476, - "export_verification_key": 1.3924682848155499, - "download_trusted_setup_file": 0.0024645328521728516 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.506243S", + "compute_time_sec": 7.506243, + "compute_times": { + "total": 7.5825384352356195, + "queued": 1.123872, + "clean_up": 0.0020943544805049896, + "create_cpp": 0.055948369204998016, + "file_setup": 0.2336848620325327, + "compile_cpp": 4.572340337559581, + "create_r1cs": 0.011611813679337502, + "save_results": 0.006018133834004402, + "get_r1cs_info": 0.000943819060921669, + "groth16_setup": 1.345878291875124, + "export_verification_key": 1.3496504835784435, + "download_trusted_setup_file": 0.003846803680062294 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "1a8a8918-7317-4e2e-a1ef-b66915916586", + "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:53:09.229Z", + "date_created": "2024-01-14T16:21:38.135Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.762289S", - "compute_times": { - "total": 7.838186884298921, - "queued": 1.165658, - "clean_up": 0.0008691418915987015, - "create_cpp": 0.05640839971601963, - "file_setup": 0.25557226315140724, - "compile_cpp": 4.874635396525264, - "create_r1cs": 0.01985102891921997, - "save_results": 0.004785357043147087, - "get_r1cs_info": 0.000703742727637291, - "groth16_setup": 1.3269466310739517, - "export_verification_key": 1.2955008279532194, - "download_trusted_setup_file": 0.002431994304060936 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.490694S", + "compute_time_sec": 7.490694, + "compute_times": { + "total": 7.569987336173654, + "queued": 1.179116, + "clean_up": 0.002130907028913498, + "create_cpp": 0.04748098365962505, + "file_setup": 0.2508866246789694, + "compile_cpp": 4.549122573807836, + "create_r1cs": 0.01635313406586647, + "save_results": 0.006561141461133957, + "get_r1cs_info": 0.0007531233131885529, + "groth16_setup": 1.3041542451828718, + "export_verification_key": 1.389599822461605, + "download_trusted_setup_file": 0.002447204664349556 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "11e941af-d1c5-4b5c-90d4-7779d3afbb3e", + "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:52:11.769Z", + "date_created": "2024-01-14T16:21:25.337Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.415274S", - "compute_times": { - "total": 7.493496775627136, - "queued": 8.869445, - "clean_up": 0.0016371160745620728, - "create_cpp": 0.04689290374517441, - "file_setup": 0.2514117080718279, - "compile_cpp": 4.450153106823564, - "create_r1cs": 0.017276693135499954, - "save_results": 0.0053817834705114365, - "get_r1cs_info": 0.0006324015557765961, - "groth16_setup": 1.4012358412146568, - "export_verification_key": 1.3159835990518332, - "download_trusted_setup_file": 0.002422098070383072 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.714617S", + "compute_time_sec": 7.714617, + "compute_times": { + "total": 7.78945274092257, + "queued": 1.109203, + "clean_up": 0.0014195535331964493, + "create_cpp": 0.0532410591840744, + "file_setup": 0.2293473482131958, + "compile_cpp": 4.6692238971591, + "create_r1cs": 0.011476732790470123, + "save_results": 0.0056864432990550995, + "get_r1cs_info": 0.0009230468422174454, + "groth16_setup": 1.4699061587452888, + "export_verification_key": 1.3452017772942781, + "download_trusted_setup_file": 0.0025169849395751953 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "40567a0b-db53-42b6-9faf-645b7d2b01d4", + "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:52:10.857Z", + "date_created": "2024-01-14T16:21:07.305Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.844716S", - "compute_times": { - "total": 7.935871887952089, - "queued": 1.174927, - "clean_up": 0.0017419569194316864, - "create_cpp": 0.04830462113022804, - "file_setup": 0.2918488848954439, - "compile_cpp": 4.551170919090509, - "create_r1cs": 0.011252205818891525, - "save_results": 0.006273416802287102, - "get_r1cs_info": 0.000791722908616066, - "groth16_setup": 1.4771566465497017, - "export_verification_key": 1.544492220506072, - "download_trusted_setup_file": 0.002414800226688385 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.675740S", + "compute_time_sec": 7.67574, + "compute_times": { + "total": 7.751045668497682, + "queued": 1.129433, + "clean_up": 0.0018131695687770844, + "create_cpp": 0.04765470325946808, + "file_setup": 0.24081012606620789, + "compile_cpp": 4.558540068566799, + "create_r1cs": 0.01800389215350151, + "save_results": 0.005974184721708298, + "get_r1cs_info": 0.0006712991744279861, + "groth16_setup": 1.373840706422925, + "export_verification_key": 1.500656010583043, + "download_trusted_setup_file": 0.002558337524533272 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "e8a3b8c4-a204-4377-aa16-6693ec6a47fe", + "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:52:10.473Z", + "date_created": "2024-01-14T16:19:55.212Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.761080S", - "compute_times": { - "total": 7.84102806635201, - "queued": 1.191136, - "clean_up": 0.0016466900706291199, - "create_cpp": 0.050837548449635506, - "file_setup": 0.305857976898551, - "compile_cpp": 4.831999080255628, - "create_r1cs": 0.016980327665805817, - "save_results": 0.004616068676114082, - "get_r1cs_info": 0.0007538795471191406, - "groth16_setup": 1.377663504332304, - "export_verification_key": 1.2477229591459036, - "download_trusted_setup_file": 0.0024341512471437454 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.062178S", + "compute_time_sec": 8.062178, + "compute_times": { + "total": 8.142503958195448, + "queued": 1.149423, + "clean_up": 0.0018021930009126663, + "create_cpp": 0.04863681085407734, + "file_setup": 0.23515266925096512, + "compile_cpp": 5.073512123897672, + "create_r1cs": 0.018286654725670815, + "save_results": 0.004714170470833778, + "get_r1cs_info": 0.0007165037095546722, + "groth16_setup": 1.3629947770386934, + "export_verification_key": 1.3937593009322882, + "download_trusted_setup_file": 0.0024403519928455353 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "b45a2f28-629c-4b26-9d0f-74e89e9aa4a1", + "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:52:10.459Z", + "date_created": "2024-01-14T16:18:49.431Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.772072S", - "compute_times": { - "total": 7.85684909299016, - "queued": 1.168927, - "clean_up": 0.001656675711274147, - "create_cpp": 0.046758586540818214, - "file_setup": 0.356998885050416, - "compile_cpp": 4.629376698285341, - "create_r1cs": 0.016368335112929344, - "save_results": 0.005804345011711121, - "get_r1cs_info": 0.0006794314831495285, - "groth16_setup": 1.4081361554563046, - "export_verification_key": 1.3879967276006937, - "download_trusted_setup_file": 0.002491012215614319 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.693335S", + "compute_time_sec": 7.693335, + "compute_times": { + "total": 7.781858703121543, + "queued": 1.116293, + "clean_up": 0.0017208773642778397, + "create_cpp": 0.05256185121834278, + "file_setup": 0.2557890061289072, + "compile_cpp": 4.588302677497268, + "create_r1cs": 0.010025406256318092, + "save_results": 0.0073493290692567825, + "get_r1cs_info": 0.0005155783146619797, + "groth16_setup": 1.4648161549121141, + "export_verification_key": 1.3988297637552023, + "download_trusted_setup_file": 0.0014446470886468887 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "48abbf24-259f-449a-be8a-b38889c54d91", + "circuit_id": "315b9559-c461-49ab-b089-885151347107", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:47:36.791Z", + "date_created": "2024-01-14T16:18:35.546Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.699616S", - "compute_times": { - "total": 7.776923732832074, - "queued": 1.114412, - "clean_up": 0.0017519760876893997, - "create_cpp": 0.04844082519412041, - "file_setup": 0.2680229563266039, - "compile_cpp": 4.7926163002848625, - "create_r1cs": 0.01559528149664402, - "save_results": 0.005934497341513634, - "get_r1cs_info": 0.0007298476994037628, - "groth16_setup": 1.3021647650748491, - "export_verification_key": 1.3384632784873247, - "download_trusted_setup_file": 0.002724595367908478 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.469497S", + "compute_time_sec": 7.469497, + "compute_times": { + "total": 7.547948880121112, + "queued": 1.248019, + "clean_up": 0.0015904363244771957, + "create_cpp": 0.0542209018021822, + "file_setup": 0.23366319201886654, + "compile_cpp": 4.586157588288188, + "create_r1cs": 0.018297061324119568, + "save_results": 0.005786450579762459, + "get_r1cs_info": 0.0006671342998743057, + "groth16_setup": 1.364309385418892, + "export_verification_key": 1.2802996914833784, + "download_trusted_setup_file": 0.002457818016409874 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "c8cffa90-0d2d-49d1-bbdb-dfa109aa13a4", + "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:46:45.727Z", + "date_created": "2024-01-14T16:17:44.931Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.613741S", - "compute_times": { - "total": 7.690422313287854, - "queued": 33.822267, - "clean_up": 0.0018018875271081924, - "create_cpp": 0.05492768436670303, - "file_setup": 0.2554306983947754, - "compile_cpp": 4.600179400295019, - "create_r1cs": 0.008259830996394157, - "save_results": 0.00659073144197464, - "get_r1cs_info": 0.0003707129508256912, - "groth16_setup": 1.3555676974356174, - "export_verification_key": 1.4054905492812395, - "download_trusted_setup_file": 0.0011803917586803436 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.473321S", + "compute_time_sec": 7.473321, + "compute_times": { + "total": 7.547661663964391, + "queued": 1.119777, + "clean_up": 0.000894695520401001, + "create_cpp": 0.05381825938820839, + "file_setup": 0.24185010977089405, + "compile_cpp": 4.524175513535738, + "create_r1cs": 0.017902396619319916, + "save_results": 0.004841597750782967, + "get_r1cs_info": 0.0008537471294403076, + "groth16_setup": 1.3410304505378008, + "export_verification_key": 1.3593134097754955, + "download_trusted_setup_file": 0.0025420039892196655 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "552a7b11-54dd-4bcd-a182-b761b094ec0b", + "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:46:44.803Z", + "date_created": "2024-01-14T16:16:28.531Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.515952S", - "compute_times": { - "total": 7.5932529624551535, - "queued": 32.746434, - "clean_up": 0.0010620690882205963, - "create_cpp": 0.04890178702771664, - "file_setup": 0.25152294524013996, - "compile_cpp": 4.557625237852335, - "create_r1cs": 0.016739951446652412, - "save_results": 0.004754070192575455, - "get_r1cs_info": 0.0006603635847568512, - "groth16_setup": 1.3873532582074404, - "export_verification_key": 1.3215058222413063, - "download_trusted_setup_file": 0.002488488331437111 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.690520S", + "compute_time_sec": 7.69052, + "compute_times": { + "total": 7.770463544875383, + "queued": 5.453395, + "clean_up": 0.0014936216175556183, + "create_cpp": 0.05430406704545021, + "file_setup": 0.23710034973919392, + "compile_cpp": 4.83283169940114, + "create_r1cs": 0.019483311101794243, + "save_results": 0.0048837121576070786, + "get_r1cs_info": 0.0006661657243967056, + "groth16_setup": 1.3555313758552074, + "export_verification_key": 1.2612487897276878, + "download_trusted_setup_file": 0.0024483725428581238 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "2ca76e72-5afc-45a0-9b97-9238d19743d0", + "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:46:44.487Z", + "date_created": "2024-01-14T16:16:22.368Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.590935S", - "compute_times": { - "total": 7.668134920299053, - "queued": 27.894738, - "clean_up": 0.0018086303025484085, - "create_cpp": 0.047053029760718346, - "file_setup": 0.23089499771595, - "compile_cpp": 4.629393395036459, - "create_r1cs": 0.011073233559727669, - "save_results": 0.005805622786283493, - "get_r1cs_info": 0.0006980784237384796, - "groth16_setup": 1.3557848315685987, - "export_verification_key": 1.3827202580869198, - "download_trusted_setup_file": 0.002456182613968849 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.866076S", + "compute_time_sec": 7.866076, + "compute_times": { + "total": 7.941894210875034, + "queued": 2.535538, + "clean_up": 0.0015988927334547043, + "create_cpp": 0.047808632254600525, + "file_setup": 0.27344413474202156, + "compile_cpp": 4.95066586881876, + "create_r1cs": 0.018682880327105522, + "save_results": 0.005130548030138016, + "get_r1cs_info": 0.0007092785090208054, + "groth16_setup": 1.3249204363673925, + "export_verification_key": 1.3161130715161562, + "download_trusted_setup_file": 0.0024131685495376587 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "a0bdedb8-7a09-4052-abcb-9ed696c686b5", + "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T20:46:44.476Z", + "date_created": "2024-01-14T16:16:14.715Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.705396S", - "compute_times": { - "total": 7.776749765500426, - "queued": 19.04132, - "clean_up": 0.0012914035469293594, - "create_cpp": 0.05671204254031181, - "file_setup": 0.2300866860896349, - "compile_cpp": 4.876820022240281, - "create_r1cs": 0.013439206406474113, - "save_results": 0.005176816135644913, - "get_r1cs_info": 0.0005762949585914612, - "groth16_setup": 1.2933933082967997, - "export_verification_key": 1.2968760952353477, - "download_trusted_setup_file": 0.0018088724464178085 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.791801S", + "compute_time_sec": 7.791801, + "compute_times": { + "total": 7.869745476171374, + "queued": 1.134289, + "clean_up": 0.001745712012052536, + "create_cpp": 0.05209941044449806, + "file_setup": 0.2489724848419428, + "compile_cpp": 4.845416411757469, + "create_r1cs": 0.019992178305983543, + "save_results": 0.005489939823746681, + "get_r1cs_info": 0.0008604265749454498, + "groth16_setup": 1.321467338129878, + "export_verification_key": 1.3704753294587135, + "download_trusted_setup_file": 0.002767615020275116 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "190315c4-b855-4630-88bd-ee26cd7d1d01", + "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:52:33.385Z", + "date_created": "2024-01-14T16:13:40.405Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.572978S", - "compute_times": { - "total": 7.647768121212721, - "queued": 1.189038, - "clean_up": 0.0017464309930801392, - "create_cpp": 0.05523469112813473, - "file_setup": 0.2625980079174042, - "compile_cpp": 4.723205912858248, - "create_r1cs": 0.01834150403738022, - "save_results": 0.005839653313159943, - "get_r1cs_info": 0.0006966739892959595, - "groth16_setup": 1.2872309237718582, - "export_verification_key": 1.2899665106087923, - "download_trusted_setup_file": 0.002456560730934143 - }, - "file_sizes": { - "total": 225417, - "circuit": 213240, - "total_gb": 0.000225417, - "total_mb": 0.225417, - "circuit.dat": 6176, - "code.tar.gz": 496, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.405829S", + "compute_time_sec": 7.405829, + "compute_times": { + "total": 7.476599719375372, + "queued": 1.131337, + "clean_up": 0.0016632992774248123, + "create_cpp": 0.047042084857821465, + "file_setup": 0.2487345952540636, + "compile_cpp": 4.6313931327313185, + "create_r1cs": 0.015436878427863121, + "save_results": 0.0051026009023189545, + "get_r1cs_info": 0.0007460527122020721, + "groth16_setup": 1.2485730070620775, + "export_verification_key": 1.274957099929452, + "download_trusted_setup_file": 0.002432204782962799 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "efd39298-db6a-42ec-8c5c-70624d6b4d20", + "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:49:50.186Z", + "date_created": "2024-01-14T16:13:12.201Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.544503S", - "compute_times": { - "total": 7.621049035340548, - "queued": 1.213655, - "clean_up": 0.0007674247026443481, - "create_cpp": 0.04509667679667473, - "file_setup": 0.25903115049004555, - "compile_cpp": 4.652491440996528, - "create_r1cs": 0.011222857981920242, - "save_results": 0.004881551489233971, - "get_r1cs_info": 0.0006925370544195175, - "groth16_setup": 1.3327859863638878, - "export_verification_key": 1.3111931774765253, - "download_trusted_setup_file": 0.0024320408701896667 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.489214S", + "compute_time_sec": 7.489214, + "compute_times": { + "total": 7.565977169200778, + "queued": 1.146208, + "clean_up": 0.0016220677644014359, + "create_cpp": 0.0601615309715271, + "file_setup": 0.23689182102680206, + "compile_cpp": 4.628598712384701, + "create_r1cs": 0.01757240854203701, + "save_results": 0.005794510245323181, + "get_r1cs_info": 0.0007582679390907288, + "groth16_setup": 1.3360584639012814, + "export_verification_key": 1.2756301537156105, + "download_trusted_setup_file": 0.0024445243179798126 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "ba2f5cd1-96b1-4d9c-b722-5ac460fea6e6", + "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:49:05.977Z", + "date_created": "2024-01-14T16:11:41.174Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.662052S", - "compute_times": { - "total": 7.7336688078939915, - "queued": 1.123447, - "clean_up": 0.0017930883914232254, - "create_cpp": 0.0463506244122982, - "file_setup": 0.2377893142402172, - "compile_cpp": 4.749906187877059, - "create_r1cs": 0.010152315720915794, - "save_results": 0.0053513552993535995, - "get_r1cs_info": 0.0008222367614507675, - "groth16_setup": 1.3547440730035305, - "export_verification_key": 1.3238158524036407, - "download_trusted_setup_file": 0.002467406913638115 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.580861S", + "compute_time_sec": 7.580861, + "compute_times": { + "total": 7.656488731503487, + "queued": 1.097627, + "clean_up": 0.0016867052763700485, + "create_cpp": 0.04802015610039234, + "file_setup": 0.24031525664031506, + "compile_cpp": 4.603576384484768, + "create_r1cs": 0.016298340633511543, + "save_results": 0.005427641794085503, + "get_r1cs_info": 0.0008495114743709564, + "groth16_setup": 1.44757186062634, + "export_verification_key": 1.2892759256064892, + "download_trusted_setup_file": 0.0029640905559062958 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "8c057b7d-c64d-4059-ab29-9298ad6a2a53", + "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:48:26.875Z", + "date_created": "2024-01-14T16:06:12.999Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.377793S", - "compute_times": { - "total": 7.45503032207489, - "queued": 1.110193, - "clean_up": 0.0017393846064805984, - "create_cpp": 0.05383708514273167, - "file_setup": 0.24573651514947414, - "compile_cpp": 4.488782860338688, - "create_r1cs": 0.017437485978007317, - "save_results": 0.005972316488623619, - "get_r1cs_info": 0.0006892457604408264, - "groth16_setup": 1.324556514620781, - "export_verification_key": 1.3133248090744019, - "download_trusted_setup_file": 0.002494256943464279 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.468363S", + "compute_time_sec": 7.468363, + "compute_times": { + "total": 7.544480819255114, + "queued": 1.143003, + "clean_up": 0.0016008112579584122, + "create_cpp": 0.05341379716992378, + "file_setup": 0.22887434996664524, + "compile_cpp": 4.706471795216203, + "create_r1cs": 0.01654653809964657, + "save_results": 0.006104299798607826, + "get_r1cs_info": 0.0004962123930454254, + "groth16_setup": 1.2300675436854362, + "export_verification_key": 1.299116501584649, + "download_trusted_setup_file": 0.0012989863753318787 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "4c600cdd-f1f9-495d-b445-2221f0a89f46", + "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:47:38.396Z", + "date_created": "2024-01-14T16:05:23.917Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.635626S", - "compute_times": { - "total": 7.712093740701675, - "queued": 1.199349, - "clean_up": 0.0017684157937765121, - "create_cpp": 0.05451502092182636, - "file_setup": 0.258465563878417, - "compile_cpp": 4.719343299046159, - "create_r1cs": 0.010251201689243317, - "save_results": 0.004460163414478302, - "get_r1cs_info": 0.0008540749549865723, - "groth16_setup": 1.2751929629594088, - "export_verification_key": 1.3843229338526726, - "download_trusted_setup_file": 0.0024193767458200455 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.759975S", + "compute_time_sec": 7.759975, + "compute_times": { + "total": 7.83847594819963, + "queued": 1.10425, + "clean_up": 0.001688338816165924, + "create_cpp": 0.04832325503230095, + "file_setup": 0.2314634695649147, + "compile_cpp": 4.819877410307527, + "create_r1cs": 0.015260979533195496, + "save_results": 0.006293922662734985, + "get_r1cs_info": 0.0006519351154565811, + "groth16_setup": 1.3941991496831179, + "export_verification_key": 1.3179172277450562, + "download_trusted_setup_file": 0.0024711433798074722 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "07f165fe-658f-4f60-9724-e13641c3dc6d", + "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:46:38.223Z", + "date_created": "2024-01-14T16:04:56.095Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.167119S", - "compute_times": { - "total": 8.251142678782344, - "queued": 1.115337, - "clean_up": 0.0016193389892578125, - "create_cpp": 0.054599540308117867, - "file_setup": 0.25351906940340996, - "compile_cpp": 4.904584679752588, - "create_r1cs": 0.01984476111829281, - "save_results": 0.005771957337856293, - "get_r1cs_info": 0.0008576847612857819, - "groth16_setup": 1.522850263863802, - "export_verification_key": 1.4845417588949203, - "download_trusted_setup_file": 0.002574380487203598 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.406479S", + "compute_time_sec": 7.406479, + "compute_times": { + "total": 7.483620099723339, + "queued": 1.177252, + "clean_up": 0.001823868602514267, + "create_cpp": 0.045437244698405266, + "file_setup": 0.24590439908206463, + "compile_cpp": 4.595620075240731, + "create_r1cs": 0.016566921025514603, + "save_results": 0.005170263350009918, + "get_r1cs_info": 0.00036842189729213715, + "groth16_setup": 1.3206052239984274, + "export_verification_key": 1.2503768727183342, + "download_trusted_setup_file": 0.0012859292328357697 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "5184ccc9-d9df-4f4c-85b5-dcc372be2b4b", + "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:46:37.738Z", + "date_created": "2024-01-14T16:02:24.098Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.800540S", - "compute_times": { - "total": 7.890723425894976, - "queued": 1.168498, - "clean_up": 0.001091672107577324, - "create_cpp": 0.04187995567917824, - "file_setup": 0.27721855975687504, - "compile_cpp": 4.727179424837232, - "create_r1cs": 0.016916383057832718, - "save_results": 0.004303250461816788, - "get_r1cs_info": 0.0007656924426555634, - "groth16_setup": 1.459752507507801, - "export_verification_key": 1.3583893701434135, - "download_trusted_setup_file": 0.002651471644639969 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.616668S", + "compute_time_sec": 7.616668, + "compute_times": { + "total": 7.693107321858406, + "queued": 1.109472, + "clean_up": 0.0016501452773809433, + "create_cpp": 0.05231943354010582, + "file_setup": 0.23242460750043392, + "compile_cpp": 4.745099242776632, + "create_r1cs": 0.019039543345570564, + "save_results": 0.0055495090782642365, + "get_r1cs_info": 0.0005333274602890015, + "groth16_setup": 1.285587765276432, + "export_verification_key": 1.3491349909454584, + "download_trusted_setup_file": 0.0012811962515115738 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "cd1787b3-9b68-4c98-b749-10675b93a02d", + "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:46:37.375Z", + "date_created": "2024-01-14T16:01:40.573Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.090137S", - "compute_times": { - "total": 8.167806182056665, - "queued": 1.338794, - "clean_up": 0.0015265382826328278, - "create_cpp": 0.06242942810058594, - "file_setup": 0.2405807003378868, - "compile_cpp": 5.083120491355658, - "create_r1cs": 0.01758597418665886, - "save_results": 0.004459673538804054, - "get_r1cs_info": 0.0007193218916654587, - "groth16_setup": 1.37510397285223, - "export_verification_key": 1.3791209738701582, - "download_trusted_setup_file": 0.0024771448224782944 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.484601S", + "compute_time_sec": 7.484601, + "compute_times": { + "total": 7.560129789635539, + "queued": 1.111989, + "clean_up": 0.0016574747860431671, + "create_cpp": 0.04680110327899456, + "file_setup": 0.23556585423648357, + "compile_cpp": 4.649155827239156, + "create_r1cs": 0.0172688327729702, + "save_results": 0.0043340642005205154, + "get_r1cs_info": 0.0007321778684854507, + "groth16_setup": 1.310708336532116, + "export_verification_key": 1.2910060994327068, + "download_trusted_setup_file": 0.002450576052069664 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "92fce1d2-a24f-436c-8dcb-70128fef75ad", + "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:46:37.319Z", + "date_created": "2024-01-14T16:01:12.249Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.515638S", - "compute_times": { - "total": 7.592755535617471, - "queued": 1.122921, - "clean_up": 0.0016377829015254974, - "create_cpp": 0.03891022130846977, - "file_setup": 0.24091425351798534, - "compile_cpp": 4.7493694350123405, - "create_r1cs": 0.017042923718690872, - "save_results": 0.005464419722557068, - "get_r1cs_info": 0.0006883256137371063, - "groth16_setup": 1.28771460801363, - "export_verification_key": 1.247961588203907, - "download_trusted_setup_file": 0.0025581959635019302 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.651112S", + "compute_time_sec": 7.651112, + "compute_times": { + "total": 7.727200584486127, + "queued": 1.123557, + "clean_up": 0.0017795618623495102, + "create_cpp": 0.05026000365614891, + "file_setup": 0.2426721192896366, + "compile_cpp": 4.745914597064257, + "create_r1cs": 0.010544411838054657, + "save_results": 0.006228795275092125, + "get_r1cs_info": 0.0007463283836841583, + "groth16_setup": 1.2904645502567291, + "export_verification_key": 1.375608079135418, + "download_trusted_setup_file": 0.002477342262864113 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "49d24c38-3549-4b6f-a0d0-121d79a9e042", + "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:43:21.432Z", + "date_created": "2024-01-14T16:00:46.395Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.180365S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.560954S", + "compute_time_sec": 7.560954, "compute_times": { - "total": 0.2551115155220032, - "queued": 22.187026, - "create_cpp": 0.011886032298207283, - "file_setup": 0.24275113083422184 - }, - "file_sizes": { - "total": 422, - "total_gb": 4.22e-7, - "total_mb": 0.000422, - "code.tar.gz": 422 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 7.63792067207396, + "queued": 1.118023, + "clean_up": 0.0011309515684843063, + "create_cpp": 0.05688653700053692, + "file_setup": 0.24240840040147305, + "compile_cpp": 4.653197390958667, + "create_r1cs": 0.01638108491897583, + "save_results": 0.005740107968449593, + "get_r1cs_info": 0.0008277762681245804, + "groth16_setup": 1.3475805260241032, + "export_verification_key": 1.3108154106885195, + "download_trusted_setup_file": 0.0024681556969881058 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519 --c /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "be8d26a4-0c1f-4ed8-a9c1-92d821a1023f", + "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:43:20.830Z", + "date_created": "2024-01-14T15:59:57.004Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.206542S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.474006S", + "compute_time_sec": 7.474006, "compute_times": { - "total": 0.2807184997946024, - "queued": 21.29796, - "create_cpp": 0.01408509910106659, - "file_setup": 0.26632064767181873 - }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 7.551057329401374, + "queued": 1.13943, + "clean_up": 0.0015815366059541702, + "create_cpp": 0.04650958999991417, + "file_setup": 0.2340244445949793, + "compile_cpp": 4.627846229821444, + "create_r1cs": 0.01713145151734352, + "save_results": 0.005708448588848114, + "get_r1cs_info": 0.0004803799092769623, + "groth16_setup": 1.2327740285545588, + "export_verification_key": 1.3827583715319633, + "download_trusted_setup_file": 0.001740090548992157 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513 --c /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "829c7fb3-407a-4acb-9048-7052edeaef17", + "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:43:20.550Z", + "date_created": "2024-01-14T15:59:11.428Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.201628S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.631306S", + "compute_time_sec": 7.631306, "compute_times": { - "total": 0.2771782800555229, - "queued": 20.013791, - "create_cpp": 0.01300826482474804, - "file_setup": 0.26369262114167213 - }, - "file_sizes": { - "total": 433, - "total_gb": 4.33e-7, - "total_mb": 0.000433, - "code.tar.gz": 433 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 7.710235442966223, + "queued": 1.386075, + "clean_up": 0.002034531906247139, + "create_cpp": 0.04852190800011158, + "file_setup": 0.24500983953475952, + "compile_cpp": 4.704880395904183, + "create_r1cs": 0.010721936821937561, + "save_results": 0.0055764298886060715, + "get_r1cs_info": 0.0006168503314256668, + "groth16_setup": 1.448454624041915, + "export_verification_key": 1.2422269843518734, + "download_trusted_setup_file": 0.0016173608601093292 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282 --c /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "21254406-f848-4a42-96b1-50ae1a8a70f6", + "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:43:20.457Z", + "date_created": "2024-01-14T15:58:05.906Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.210927S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.838875S", + "compute_time_sec": 7.838875, "compute_times": { - "total": 0.28701494075357914, - "queued": 18.586688, - "create_cpp": 0.01276908814907074, - "file_setup": 0.273587292060256 - }, - "file_sizes": { - "total": 423, - "total_gb": 4.23e-7, - "total_mb": 0.000423, - "code.tar.gz": 423 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 7.916816979646683, + "queued": 1.13646, + "clean_up": 0.0017937906086444855, + "create_cpp": 0.04604017175734043, + "file_setup": 0.25198566168546677, + "compile_cpp": 4.960162149742246, + "create_r1cs": 0.017025411128997803, + "save_results": 0.006269412115216255, + "get_r1cs_info": 0.0005705077201128006, + "groth16_setup": 1.3184205926954746, + "export_verification_key": 1.312853867188096, + "download_trusted_setup_file": 0.0013548657298088074 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217 --c /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "86b85f20-069f-4b05-bc19-7dcc45d62d4d", + "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-13T19:03:40.161Z", + "date_created": "2024-01-14T15:10:36.167Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.165028S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.494759S", + "compute_time_sec": 7.494759, "compute_times": { - "total": 0.23983060009777546, - "queued": 19.426277, - "create_cpp": 0.012881102040410042, - "file_setup": 0.22659419663250446 - }, - "file_sizes": { - "total": 425, - "total_gb": 4.25e-7, - "total_mb": 0.000425, - "code.tar.gz": 425 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 7.577943356707692, + "queued": 15.661842, + "clean_up": 0.0015942566096782684, + "create_cpp": 0.046944042667746544, + "file_setup": 0.23811103031039238, + "compile_cpp": 4.708118129521608, + "create_r1cs": 0.01638900674879551, + "save_results": 0.00562669150531292, + "get_r1cs_info": 0.0006911307573318481, + "groth16_setup": 1.2832315117120743, + "export_verification_key": 1.2741688843816519, + "download_trusted_setup_file": 0.0024611055850982666 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962 --c /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "911d63d1-2d4a-4f13-8ea6-bae46ca597f1", - "circuit_name": "circom-multiplier2", + "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-13T19:03:39.891Z", + "date_created": "2023-12-19T00:01:17.518Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.170545S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.829640S", + "compute_time_sec": 14.82964, "compute_times": { - "total": 0.24807762540876865, - "queued": 18.378215, - "create_cpp": 0.012938465923070908, - "file_setup": 0.23475164733827114 - }, - "file_sizes": { - "total": 433, - "total_gb": 4.33e-7, - "total_mb": 0.000433, - "code.tar.gz": 433 + "total": 16.11652692966163, + "queued": 21.506947, + "clean_up": 0.00970545969903469, + "create_cpp": 0.07700999267399311, + "file_setup": 1.6147372927516699, + "compile_cpp": 7.614376271143556, + "create_r1cs": 0.154385132715106, + "save_results": 0.005050705745816231, + "get_r1cs_info": 0.0008396394550800323, + "groth16_setup": 3.3179074060171843, + "export_verification_key": 3.320323884487152, + "download_trusted_setup_file": 0.0015841908752918243 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260 --c /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "f56ce37c-23ce-4125-ad52-57ccc6feca54", - "circuit_name": "circom-multiplier2", + "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-13T19:03:39.814Z", + "date_created": "2023-12-18T23:44:10.716Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.186595S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.500698S", + "compute_time_sec": 8.500698, "compute_times": { - "total": 0.26397472620010376, - "queued": 17.084112, - "create_cpp": 0.010645480826497078, - "file_setup": 0.2526652980595827 - }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 + "total": 9.787439923733473, + "queued": 1.294188, + "clean_up": 0.013815293088555336, + "create_cpp": 0.06775672547519207, + "file_setup": 1.5670747924596071, + "compile_cpp": 5.217347398400307, + "create_r1cs": 0.03056485578417778, + "save_results": 0.006023731082677841, + "get_r1cs_info": 0.0007077902555465698, + "groth16_setup": 1.4515825044363737, + "export_verification_key": 1.4297321401536465, + "download_trusted_setup_file": 0.0024385377764701843 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067 --c /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "593763cb-5ee6-4f17-86f0-92e33db49ebc", - "circuit_name": "circom-multiplier2", + "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-13T18:50:50.705Z", + "date_created": "2023-12-18T23:42:13.949Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.198660S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.803270S", + "compute_time_sec": 13.80327, "compute_times": { - "total": 0.2762124240398407, - "queued": 2.350508, - "create_cpp": 0.013621769845485687, - "file_setup": 0.26214288361370564 - }, - "file_sizes": { - "total": 425, - "total_gb": 4.25e-7, - "total_mb": 0.000425, - "code.tar.gz": 425 + "total": 15.069168468937278, + "queued": 1.279988, + "clean_up": 0.010122904554009438, + "create_cpp": 0.12114278227090836, + "file_setup": 1.5526539776474237, + "compile_cpp": 7.2996343690901995, + "create_r1cs": 0.07337300851941109, + "save_results": 0.10131139867007732, + "get_r1cs_info": 0.0005603395402431488, + "groth16_setup": 2.957974351942539, + "export_verification_key": 2.9508997034281492, + "download_trusted_setup_file": 0.0010457858443260193 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248 --c /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "616d59a2-ede9-4aa2-b309-dceaad83f85c", - "circuit_name": "circom-multiplier2", + "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-13T18:50:50.409Z", + "date_created": "2023-12-18T23:36:30.574Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.202851S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.521983S", + "compute_time_sec": 13.521983, "compute_times": { - "total": 0.27938831970095634, - "queued": 1.181081, - "create_cpp": 0.020855069160461426, - "file_setup": 0.25791895017027855 - }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 + "total": 14.785143690183759, + "queued": 27.741822, + "clean_up": 0.00823935680091381, + "create_cpp": 0.10304738581180573, + "file_setup": 1.505700759589672, + "compile_cpp": 7.270766986533999, + "create_r1cs": 0.07485816441476345, + "save_results": 0.0029987990856170654, + "get_r1cs_info": 0.0006173755973577499, + "groth16_setup": 2.891835331916809, + "export_verification_key": 2.924815448001027, + "download_trusted_setup_file": 0.0017245206981897354 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200 --c /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "file_size": 1719981, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "3edc6e19-5c08-43d0-b4cd-1effce92610f", - "circuit_name": "circom-multiplier2", + "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-13T18:50:50.347Z", + "date_created": "2023-12-17T19:35:22.108Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.203065S", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.399840S", + "compute_time_sec": 13.39984, "compute_times": { - "total": 0.2812246270477772, - "queued": 1.181141, - "create_cpp": 0.013465851545333862, - "file_setup": 0.26729494892060757 - }, - "file_sizes": { - "total": 433, - "total_gb": 4.33e-7, - "total_mb": 0.000433, - "code.tar.gz": 433 + "total": 14.661026014015079, + "queued": 20.325028, + "clean_up": 0.005762990564107895, + "create_cpp": 0.07418840192258358, + "file_setup": 1.5508117154240608, + "compile_cpp": 7.441567042842507, + "create_r1cs": 0.0411736685782671, + "save_results": 0.003770258277654648, + "get_r1cs_info": 0.0007237941026687622, + "groth16_setup": 2.749024560675025, + "export_verification_key": 2.7917208038270473, + "download_trusted_setup_file": 0.0016946438699960709 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535 --c /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "file_size": 1650609, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "04ee9cfb-e70c-4f63-980f-1a3e93548c00", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:48:36.434Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.201733S", + "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", + "circuit_name": "my-circuit", + "circuit_type": "noir", + "date_created": "2023-12-17T18:49:58.483Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.373831S", + "compute_time_sec": 4.373831, "compute_times": { - "total": 0.27434095926582813, - "queued": 18.015267, - "create_cpp": 0.012987535446882248, - "file_setup": 0.26098530925810337 - }, - "file_sizes": { - "total": 424, - "total_gb": 4.24e-7, - "total_mb": 0.000424, - "code.tar.gz": 424 + "total": 5.606248481199145, + "queued": 17.784967, + "clean_up": 0.000952577218413353, + "file_setup": 1.4592411685734987, + "nargo_checks": 4.145449373871088 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938 --c /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 724, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "my_circuit", + "noir_version": "0.17.0" }, { - "circuit_id": "7bec40b6-96f9-4297-8387-28b69e6eb9f2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:48:36.388Z", - "proving_scheme": "groth16", + "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:44:44.083Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Failed", - "compute_time": "P0DT00H00M00.202297S", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.215446S", + "compute_time_sec": 0.215446, "compute_times": { - "total": 0.277168694883585, - "queued": 16.341514, - "create_cpp": 0.013526827096939087, - "file_setup": 0.2629995346069336 - }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 + "total": 1.39835050329566, + "queued": 1.360483, + "file_setup": 1.395031625404954, + "nargo_checks": 0.003077572211623192 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882 --c /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 742, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "circuit_id": "bd2a2cab-9b46-4d8f-abe7-c70543cb3c05", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-13T18:10:06.690Z", - "proving_scheme": "groth16", + "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:51.455Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M08.109980S", - "compute_times": { - "total": 8.184498570859432, - "queued": 15.479573, - "clean_up": 0.011767888441681862, - "create_cpp": 0.07400684803724289, - "file_setup": 0.291596170514822, - "compile_cpp": 5.010360641404986, - "create_r1cs": 0.03274575620889664, - "save_results": 0.005458444356918335, - "get_r1cs_info": 0.0007813666015863419, - "groth16_setup": 1.3319661114364862, - "export_verification_key": 1.4227301441133022, - "download_trusted_setup_file": 0.0024998728185892105 - }, - "file_sizes": { - "total": 1719978, - "circuit": 221992, - "total_gb": 0.001719978, - "total_mb": 1.719978, - "circuit.dat": 6264, - "code.tar.gz": 1485241, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.479235S", + "compute_time_sec": 1.479235, + "compute_times": { + "total": 2.6415348909795284, + "queued": 1.942949, + "clean_up": 0.0005522631108760834, + "file_setup": 1.3729195687919855, + "nargo_checks": 1.2678131125867367 }, + "file_size": 741, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "Hi2noir_Hi", + "noir_version": "0.17.0" }, { - "circuit_id": "36d8c583-a7a7-409f-802f-9e2176488114", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-12T20:17:55.601Z", - "proving_scheme": "groth16", + "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:04.488Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.845599S", - "compute_times": { - "total": 7.926630346104503, - "queued": 21.751844, - "clean_up": 0.009552665054798126, - "create_cpp": 0.06667437590658665, - "file_setup": 0.3097714204341173, - "compile_cpp": 4.566421199589968, - "create_r1cs": 0.03019201196730137, - "save_results": 0.0054127369076013565, - "get_r1cs_info": 0.0007427893579006195, - "groth16_setup": 1.4206766039133072, - "export_verification_key": 1.5140666011720896, - "download_trusted_setup_file": 0.00251016765832901 - }, - "file_sizes": { - "total": 1719951, - "circuit": 221992, - "total_gb": 0.001719951, - "total_mb": 1.719951, - "circuit.dat": 6264, - "code.tar.gz": 1485214, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.415435S", + "compute_time_sec": 1.415435, + "compute_times": { + "total": 2.570197055116296, + "queued": 1.245783, + "clean_up": 0.00041295401751995087, + "file_setup": 1.3385441917926073, + "nargo_checks": 1.2309921570122242 }, + "file_size": 737, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" - } - ], - "rawHeaders": [ - "Content-Length", - "1195757", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:21 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172797253736649337142546a7453577773730d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172797253736649337142546a7453577773730d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172797253736649337142546a7453577773732d2d0d0a", - "status": 201, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 497, - "total": 497, - "total_mb": 0.000497, - "total_gb": 4.97e-7 + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:44.606Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.405646S", + "compute_time_sec": 1.405646, + "compute_times": { + "total": 2.5658690985292196, + "queued": 1.186038, + "clean_up": 0.00047394633293151855, + "file_setup": 1.3717324659228325, + "nargo_checks": 1.1934157982468605 + }, + "file_size": 736, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "2noir_hi", + "noir_version": "0.17.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:17.783Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.462830S", + "compute_time_sec": 1.46283, + "compute_times": { + "total": 2.6199891455471516, + "queued": 1.25179, + "clean_up": 0.00041804835200309753, + "file_setup": 1.3820457514375448, + "nargo_checks": 1.2372824884951115 + }, + "file_size": 739, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "_noir_hi", + "noir_version": "0.17.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:21 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727958387878393257714263356c334167630d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727958387878393257714263356c334167630d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727958387878393257714263356c334167632d2d0d0a", - "status": 201, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 497, - "total": 497, - "total_mb": 0.000497, - "total_gb": 4.97e-7 + { + "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:41:44.867Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.422583S", + "compute_time_sec": 1.422583, + "compute_times": { + "total": 2.580868471413851, + "queued": 1.187135, + "clean_up": 0.00045336224138736725, + "file_setup": 1.360721966251731, + "nargo_checks": 1.2194277700036764 + }, + "file_size": 727, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "noir_hi", + "noir_version": "0.17.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "9c8a486c-4c18-4a7a-8e79-8100500a2660", + "circuit_name": "_2halo-hi", + "circuit_type": "halo2", + "date_created": "2023-12-13T16:37:57.886Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H01M28.284700S", + "compute_time_sec": 88.2847, + "compute_times": { + "total": 89.44666199572384, + "queued": 2.165129, + "compile": 87.56292228028178, + "clean_up": 0.07346387021243572, + "file_setup": 1.3726620227098465, + "save_results": 0.04124521091580391, + "generate_keys": 0.3959560953080654, + "download_trusted_setup_file": 0.00015112943947315216 + }, + "file_size": 44933087, + "uploaded_file_name": "_2halo-hi.tar.gz", + "verification_key": null, + "error": null, + "class_name": "_2halo_hi::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172795066674d7a754932506a464c457871630d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172795066674d7a754932506a464c457871630d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172795066674d7a754932506a464c457871632d2d0d0a", - "status": 201, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 497, - "total": 497, - "total_mb": 0.000497, - "total_gb": 4.97e-7 + { + "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", + "circuit_name": "_noir-circuit-32", + "circuit_type": "noir", + "date_created": "2023-12-13T16:31:57.140Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.154282S", + "compute_time_sec": 6.154282, + "compute_times": { + "total": 7.310710787773132, + "queued": 18.86527, + "clean_up": 0.00043790414929389954, + "file_setup": 1.3356177434325218, + "nargo_checks": 5.974256757646799 + }, + "file_size": 736, + "uploaded_file_name": "_noir-circuit-32.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "noir_circuit_32", + "noir_version": "0.17.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "ec12dd1d-75be-4729-bdd4-0ae924f2c8e6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T22:14:30.186Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H01M20.814859S", + "compute_time_sec": 80.814859, + "compute_times": { + "total": 82.05906438827515, + "queued": 1.410777, + "compile": 80.08948761411011, + "clean_up": 0.08174648880958557, + "file_setup": 1.495840536430478, + "save_results": 0.04187909886240959, + "generate_keys": 0.3492503445595503, + "download_trusted_setup_file": 0.00032539665699005127 + }, + "file_size": 44934523, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "14124f66-b386-4da6-94c3-7c9504e59b55", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T21:21:17.813Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.609091S", + "compute_time_sec": 1.609091, + "compute_times": { + "total": 1.430661918129772, + "queued": 1.232619, + "file_setup": 1.4302852991968393 + }, + "file_size": 6518, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: cargo --quiet build --release stdout: stderr: error: package `colored v2.1.0` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.69.0-nightly\nEither upgrade to rustc 1.70 or newer, or use\ncargo update -p colored@2.1.0 --precise ver\nwhere `ver` is the latest version of `colored` supporting rustc 1.69.0-nightly\n", + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "180aaddd-e613-42ba-a7d0-2b023e582fa6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T21:38:35.968Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H02M31.452475S", + "compute_time_sec": 151.452475, + "compute_times": { + "total": 152.61581724137068, + "queued": 16.679736, + "compile": 150.85432086326182, + "clean_up": 0.08890871703624725, + "file_setup": 1.3426462803035975, + "save_results": 0.055491913110017776, + "generate_keys": 0.27397330291569233, + "download_trusted_setup_file": 0.00015251711010932922 + }, + "file_size": 44942284, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "1a12a25a-6ee5-48eb-96bb-2be6c57fe8a8", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T20:56:40.952Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H02M47.087177S", + "compute_time_sec": 167.087177, + "compute_times": { + "total": 168.2553534731269, + "queued": 15.969391, + "compile": 166.52114362455904, + "clean_up": 0.08557339012622833, + "file_setup": 1.3397669158875942, + "save_results": 0.023856762796640396, + "generate_keys": 0.28439050912857056, + "download_trusted_setup_file": 0.00015943683683872223 + }, + "file_size": 44943541, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:26:39.713Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.813118S", + "compute_time_sec": 1.813118, + "compute_times": { + "total": 3.01790676638484, + "queued": 1.305567, + "clean_up": 0.000589149072766304, + "file_setup": 1.37160237506032, + "nargo_checks": 1.6454425044357777 + }, + "file_size": 3951, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279344a4e395935793151577363727542410d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279344a4e395935793151577363727542410d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279344a4e395935793151577363727542412d2d0d0a", - "status": 201, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 497, - "total": 497, - "total_mb": 0.000497, - "total_gb": 4.97e-7 + { + "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:23:01.975Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.488323S", + "compute_time_sec": 4.488323, + "compute_times": { + "total": 5.69258569739759, + "queued": 19.825139, + "clean_up": 0.0005774423480033875, + "file_setup": 1.3714763727039099, + "nargo_checks": 4.320127023383975 + }, + "file_size": 706, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:09:13.111Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.592621S", + "compute_time_sec": 4.592621, + "compute_times": { + "total": 5.8083343375474215, + "queued": 20.40929, + "clean_up": 0.0006539653986692429, + "file_setup": 1.3848200682550669, + "nargo_checks": 4.422410562634468 + }, + "file_size": 3746, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/7206a741-eb14-4b4d-9df8-34d4573a671c/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "7206a741-eb14-4b4d-9df8-34d4573a671c", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T20:50:03.892Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.157652S", - "compute_times": { - "prove": 6.974535636603832, - "total": 7.280014621093869, - "queued": 0.699272, - "clean_up": 0.0002770274877548218, - "file_setup": 0.29124958999454975, - "save_results": 0.0023470818996429443, - "generate_witness_c": 0.011234406381845474 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:46:56.192Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.901192S", + "compute_time_sec": 1.901192, + "compute_times": { + "total": 3.042013813741505, + "queued": 1.216309, + "clean_up": 0.0005592899397015572, + "file_setup": 1.3641308145597577, + "nargo_checks": 1.6769273420795798 + }, + "file_size": 646, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" }, - "proof_input": { - "X": 1, - "Y": 1 + { + "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:36.302Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.854306S", + "compute_time_sec": 3.854306, + "compute_times": { + "total": 5.005337344482541, + "queued": 1.049939, + "clean_up": 0.0004933271557092667, + "file_setup": 1.3198325717821717, + "nargo_checks": 3.684743066318333 + }, + "file_size": 646, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" }, - "proof": { - "pi_a": [ - "2207063161123321672315293695555204568332773987687326774610992998918697616999", - "9378689615945565595544610601636412539782629996985316435417919138459280340762", - "1" - ], - "pi_b": [ - [ - "10190336592438480583804612785494600792382485751203284338552921779453992985258", - "20446982779262933890029336407876973128828645516644745168518940763590442300323" - ], - [ - "20655754054270546200591335706622521698389283810001017000354930274582929078770", - "20404214007159496515896759370164990425681626933397490887169000799902132422291" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "21458825969862082745968530499651054837150935400643877244439288291516716035861", - "20579053204717472531997782852344919399884172919978257974395542556766015071320", - "1" - ], - "protocol": "groth16" + { + "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:01.042Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.321372S", + "compute_time_sec": 1.321372, + "compute_times": { + "total": 2.4821140887215734, + "queued": 1.147771, + "file_setup": 1.3312397608533502, + "nargo_checks": 1.1506206970661879 + }, + "file_size": 649, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:42:50.433Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.254776S", + "compute_time_sec": 1.254776, + "compute_times": { + "total": 2.4055077601224184, + "queued": 1.040189, + "file_setup": 1.3746437635272741, + "nargo_checks": 1.0305692087858915 + }, + "file_size": 653, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:40:12.889Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.165442S", + "compute_time_sec": 2.165442, + "compute_times": { + "total": 3.31729419529438, + "queued": 18.785446, + "file_setup": 1.312557090073824, + "nargo_checks": 2.004337651655078 + }, + "file_size": 642, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" }, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false + { + "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:14:03.406Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.700449S", + "compute_time_sec": 2.700449, + "compute_times": { + "total": 3.862834582105279, + "queued": 1.240923, + "clean_up": 0.0048230309039354324, + "file_setup": 1.4248666781932116, + "create_r1cs": 0.019674228504300117, + "create_wasm": 0.02921307645738125, + "save_results": 0.003329528495669365, + "get_r1cs_info": 0.00027392804622650146, + "groth16_setup": 1.1982815023511648, + "export_verification_key": 1.1812070365995169, + "download_trusted_setup_file": 0.0009372644126415253 + }, + "file_size": 1537235, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, - "public": [ - "1", - "1" - ], - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 + { + "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:12:15.898Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.249043S", + "compute_time_sec": 7.249043, + "compute_times": { + "total": 8.408733254298568, + "queued": 1.325923, + "clean_up": 0.006613824516534805, + "create_cpp": 0.05350269004702568, + "file_setup": 1.4143117368221283, + "compile_cpp": 4.4514400865882635, + "create_r1cs": 0.020590879023075104, + "save_results": 0.002988070249557495, + "get_r1cs_info": 0.00036310404539108276, + "groth16_setup": 1.2632708046585321, + "export_verification_key": 1.1944759152829647, + "download_trusted_setup_file": 0.0009543616324663162 }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 1719868, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 2, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "8730022663636478395875193122617326879937238221063249151534446790148472013425", - "11334276671345291957926027542189078543582133290479552018335938047376153562309", - "1" - ], - [ - "5805122324364949964217197833749490235941814633922129721750683970607503958245", - "9872725283256828335323531825525214004638956944986769896909638442373636094929", - "1" - ], - [ - "5965984761837059522598477963926636008539398000326611706501700041118398309075", - "987034796951392775354586470684197458011430956168601634143158925917302107696", - "1" - ] - ] + { + "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:08:10.932Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.128823S", + "compute_time_sec": 7.128823, + "compute_times": { + "total": 8.290217800065875, + "queued": 1.176634, + "clean_up": 0.006579896435141563, + "create_cpp": 0.049633922055363655, + "file_setup": 1.407272644340992, + "compile_cpp": 4.411186024546623, + "create_r1cs": 0.020449023693799973, + "save_results": 0.0031916871666908264, + "get_r1cs_info": 0.0003460422158241272, + "groth16_setup": 1.1822046767920256, + "export_verification_key": 1.2081128470599651, + "download_trusted_setup_file": 0.0009996052831411362 + }, + "file_size": 1719871, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "7281", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:03:13.779Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.214778S", + "compute_time_sec": 0.214778, + "compute_times": { + "total": 1.39355612359941, + "queued": 1.091083, + "create_cpp": 0.005528604611754417, + "file_setup": 1.387480080127716 + }, + "file_size": 1086, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:52.720Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.127570S", + "compute_time_sec": 7.12757, + "compute_times": { + "total": 8.300101362168789, + "queued": 1.180095, + "clean_up": 0.006741989403963089, + "create_cpp": 0.04977302439510822, + "file_setup": 1.3937485367059708, + "compile_cpp": 4.4108633529394865, + "create_r1cs": 0.020317360758781433, + "save_results": 0.003299059346318245, + "get_r1cs_info": 0.0003479979932308197, + "groth16_setup": 1.2352007273584604, + "export_verification_key": 1.1786142773926258, + "download_trusted_setup_file": 0.0009277686476707458 + }, + "file_size": 1720407, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:23 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:30.461Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.186269S", + "compute_time_sec": 7.186269, + "compute_times": { + "total": 8.347925985231996, + "queued": 1.11165, + "clean_up": 0.006883986294269562, + "create_cpp": 0.055882176384329796, + "file_setup": 1.3711591251194477, + "compile_cpp": 4.481259575113654, + "create_r1cs": 0.020169200375676155, + "save_results": 0.003566296771168709, + "get_r1cs_info": 0.00035143643617630005, + "groth16_setup": 1.192156182602048, + "export_verification_key": 1.2153031043708324, + "download_trusted_setup_file": 0.0009823162108659744 + }, + "file_size": 1720386, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:38.256Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.180372S", + "compute_time_sec": 0.180372, + "compute_times": { + "total": 1.3365695010870695, + "queued": 1.087627, + "create_cpp": 0.005229467526078224, + "file_setup": 1.331127068027854 + }, + "file_size": 4524, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:05.065Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.227270S", + "compute_time_sec": 0.22727, + "compute_times": { + "total": 1.387567725032568, + "queued": 1.200424, + "create_cpp": 0.005518514662981033, + "file_setup": 1.3818144612014294 + }, + "file_size": 4516, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:49:50.199Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.208167S", + "compute_time_sec": 0.208167, + "compute_times": { + "total": 1.3689671531319618, + "queued": 1.304207, + "create_cpp": 0.005460506305098534, + "file_setup": 1.3632374834269285 + }, + "file_size": 4516, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:47:15.011Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174086S", + "compute_time_sec": 0.174086, + "compute_times": { + "total": 1.3330576121807098, + "queued": 19.864284, + "create_cpp": 0.005246447399258614, + "file_setup": 1.3275200203061104 + }, + "file_size": 4483, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:05:13.309Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.546964S", + "compute_time_sec": 2.546964, + "compute_times": { + "total": 3.7097523529082537, + "queued": 1.209301, + "clean_up": 0.0005107801407575607, + "file_setup": 1.3446728140115738, + "create_r1cs": 0.007440237328410149, + "create_wasm": 0.016755376011133194, + "save_results": 0.0036186836659908295, + "get_r1cs_info": 0.00025043077766895294, + "groth16_setup": 1.1559293158352375, + "export_verification_key": 1.1794348638504744, + "download_trusted_setup_file": 0.0008941646665334702 + }, + "file_size": 54024, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:03:06.093Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.578866S", + "compute_time_sec": 2.578866, + "compute_times": { + "total": 3.752036551013589, + "queued": 19.44917, + "clean_up": 0.0005340799689292908, + "file_setup": 1.3582166992127895, + "create_r1cs": 0.007758324965834618, + "create_wasm": 0.01886793226003647, + "save_results": 0.0029870178550481796, + "get_r1cs_info": 0.0002993810921907425, + "groth16_setup": 1.1675188429653645, + "export_verification_key": 1.1944289654493332, + "download_trusted_setup_file": 0.0009995810687541962 + }, + "file_size": 54024, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T19:28:31.237Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.697079S", + "compute_time_sec": 2.697079, + "compute_times": { + "total": 3.860771119594574, + "queued": 45.887615, + "clean_up": 0.0005786605179309845, + "file_setup": 1.3233154714107513, + "create_r1cs": 0.007670976221561432, + "create_wasm": 0.017503729090094566, + "save_results": 0.04876627214252949, + "get_r1cs_info": 0.0002490133047103882, + "groth16_setup": 1.2176049146801233, + "export_verification_key": 1.2436372973024845, + "download_trusted_setup_file": 0.0010085124522447586 + }, + "file_size": 54024, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:31:32.434Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.383253S", + "compute_time_sec": 2.383253, + "compute_times": { + "total": 3.5439179949462414, + "queued": 1.183641, + "clean_up": 0.0006380276754498482, + "file_setup": 1.3339016744866967, + "create_r1cs": 0.007884668186306953, + "create_wasm": 0.01797499507665634, + "save_results": 0.004143344238400459, + "get_r1cs_info": 0.000565793365240097, + "groth16_setup": 1.0339104048907757, + "export_verification_key": 1.1432477626949549, + "download_trusted_setup_file": 0.0013524582609534264 + }, + "file_size": 54025, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:27:06.804Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.387682S", + "compute_time_sec": 7.387682, + "compute_times": { + "total": 8.548618336208165, + "queued": 18.71772, + "clean_up": 0.0012578116729855537, + "create_cpp": 0.04181432072073221, + "file_setup": 1.3276818674057722, + "compile_cpp": 5.035406060516834, + "create_r1cs": 0.008279835805296898, + "save_results": 0.003593659959733486, + "get_r1cs_info": 0.0006254948675632477, + "groth16_setup": 1.091116052120924, + "export_verification_key": 1.0372483730316162, + "download_trusted_setup_file": 0.0012065665796399117 + }, + "file_size": 229069, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:12.963Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.167528S", + "compute_time_sec": 0.167528, + "compute_times": { + "total": 1.3633314277976751, + "queued": 1.187746, + "create_cpp": 0.005508816801011562, + "file_setup": 1.3575280215591192 + }, + "file_size": 3143, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:02.472Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.364457S", + "compute_time_sec": 0.364457, + "compute_times": { + "total": 1.5177692053839564, + "queued": 1.273971, + "create_cpp": 0.0061752675101161, + "file_setup": 1.5113406758755445 + }, + "file_size": 3149, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:14:05.849Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.285739S", + "compute_time_sec": 0.285739, + "compute_times": { + "total": 1.433143719099462, + "queued": 1.368079, + "create_cpp": 0.00570196658372879, + "file_setup": 1.4271633345633745 + }, + "file_size": 3146, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:11:33.616Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.190295S", + "compute_time_sec": 0.190295, + "compute_times": { + "total": 1.3479114715009928, + "queued": 1.174311, + "create_cpp": 0.006716226227581501, + "file_setup": 1.3409330770373344 + }, + "file_size": 3148, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:09:43.690Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.180634S", + "compute_time_sec": 0.180634, + "compute_times": { + "total": 1.3301707739010453, + "queued": 1.267544, + "create_cpp": 0.00672531221061945, + "file_setup": 1.3231740267947316 + }, + "file_size": 3140, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:08:33.991Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.182958S", + "compute_time_sec": 0.182958, + "compute_times": { + "total": 1.3482676716521382, + "queued": 23.976753, + "create_cpp": 0.005651121959090233, + "file_setup": 1.3422273648902774 + }, + "file_size": 3141, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:48:47.509Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.247686S", + "compute_time_sec": 0.247686, + "compute_times": { + "total": 1.4311082614585757, + "queued": 1.440336, + "create_cpp": 0.0059531861916184425, + "file_setup": 1.4248412810266018 + }, + "file_size": 3144, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:23 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:48.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.186337S", + "compute_time_sec": 0.186337, + "compute_times": { + "total": 1.3291292237117887, + "queued": 1.389798, + "create_cpp": 0.005445321090519428, + "file_setup": 1.3232828453183174 + }, + "file_size": 3144, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:16.025Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.203844S", + "compute_time_sec": 0.203844, + "compute_times": { + "total": 1.358934978954494, + "queued": 1.23962, + "create_cpp": 0.005131745710968971, + "file_setup": 1.3535515246912837 + }, + "file_size": 3147, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:23 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:44:43.907Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.211198S", + "compute_time_sec": 0.211198, + "compute_times": { + "total": 1.3726867232471704, + "queued": 21.28569, + "create_cpp": 0.04041997902095318, + "file_setup": 1.3318777102977037 + }, + "file_size": 3118, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:58:52.961Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M30.485776S", + "compute_time_sec": 30.485776, + "compute_times": { + "total": 31.713325195014477, + "queued": 1.53179, + "clean_up": 0.0050907619297504425, + "create_cpp": 0.5502202846109867, + "file_setup": 1.4041321221739054, + "compile_cpp": 8.600912608206272, + "create_r1cs": 0.5660600401461124, + "save_results": 0.015263739973306656, + "get_r1cs_info": 0.0007791165262460709, + "groth16_setup": 18.966865327209234, + "export_verification_key": 1.5605580545961857, + "download_trusted_setup_file": 0.043034087866544724 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:23 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:57:39.629Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M30.503827S", + "compute_time_sec": 30.503827, + "compute_times": { + "total": 31.731675423681736, + "queued": 1.329617, + "clean_up": 0.005224447697401047, + "create_cpp": 0.5869219042360783, + "file_setup": 1.396010784432292, + "compile_cpp": 8.755487740039825, + "create_r1cs": 0.6137677505612373, + "save_results": 0.015961000695824623, + "get_r1cs_info": 0.0007797814905643463, + "groth16_setup": 18.781834876164794, + "export_verification_key": 1.5326797477900982, + "download_trusted_setup_file": 0.04255225136876106 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:53:41.285Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M29.404746S", + "compute_time_sec": 29.404746, + "compute_times": { + "total": 30.63611113280058, + "queued": 1.393016, + "clean_up": 0.004741033539175987, + "create_cpp": 0.5701096802949905, + "file_setup": 1.4058604761958122, + "compile_cpp": 8.18474044650793, + "create_r1cs": 0.5578694771975279, + "save_results": 0.012727703899145126, + "get_r1cs_info": 0.0007434040307998657, + "groth16_setup": 18.383400244638324, + "export_verification_key": 1.4725701548159122, + "download_trusted_setup_file": 0.042938267812132835 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:50:43.511Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M28.987369S", + "compute_time_sec": 28.987369, + "compute_times": { + "total": 30.219565767794847, + "queued": 73.815898, + "clean_up": 0.005328845232725143, + "create_cpp": 0.5412574652582407, + "file_setup": 1.408054981380701, + "compile_cpp": 7.979971516877413, + "create_r1cs": 0.5340761709958315, + "save_results": 0.10810003615915775, + "get_r1cs_info": 0.0008541643619537354, + "groth16_setup": 18.02999261394143, + "export_verification_key": 1.5689898952841759, + "download_trusted_setup_file": 0.04256066307425499 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:25 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:28:21.086Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M12.293107S", + "compute_time_sec": 12.293107, + "compute_times": { + "total": 1.540343570522964, + "queued": 1.149716, + "file_setup": 1.5400111814960837 + }, + "file_size": 3876, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", + "curve": "bls24-315", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:27:16.183Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M16.323835S", + "compute_time_sec": 16.323835, + "compute_times": { + "total": 17.493196861818433, + "queued": 20.294201, + "compile": 15.894271181896329, + "clean_up": 0.06409060023725033, + "file_setup": 1.479825496673584, + "save_results": 0.030155125074088573, + "compile_r1cs_and_keygen": 0.024464260786771774 + }, + "file_size": 19740582, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bls24-315", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:25 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", + "circuit_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:02:34.146Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M12.571758S", + "compute_time_sec": 12.571758, + "compute_times": { + "total": 13.761676067486405, + "queued": 1.17776, + "compile": 12.108159688301384, + "clean_up": 0.0739858876913786, + "file_setup": 1.5122289564460516, + "save_results": 0.0421032914891839, + "compile_r1cs_and_keygen": 0.02487844880670309 + }, + "file_size": 19740713, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bw6-633", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", + "circuit_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:54:25.971Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M15.096119S", + "compute_time_sec": 15.096119, + "compute_times": { + "total": 16.24127036239952, + "queued": 18.859283, + "compile": 14.711085448041558, + "clean_up": 0.060433197766542435, + "file_setup": 1.4220957215875387, + "save_results": 0.03548778221011162, + "compile_r1cs_and_keygen": 0.011818661354482174 + }, + "file_size": 19740996, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:25 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:30:10.306Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.119803S", + "compute_time_sec": 11.119803, + "compute_times": { + "total": 1.4363502692431211, + "queued": 1.930609, + "file_setup": 1.4360267175361514 + }, + "file_size": 19555, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:26:29.959Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.939780S", + "compute_time_sec": 13.93978, + "compute_times": { + "total": 1.4325123187154531, + "queued": 47.459123, + "file_setup": 1.4321166425943375 + }, + "file_size": 3976, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:25 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:11:51.697Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.350788S", + "compute_time_sec": 13.350788, + "compute_times": { + "total": 1.6208326760679483, + "queued": 19.954132, + "file_setup": 1.6202213428914547 + }, + "file_size": 3976, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:56:28.365Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.241851S", + "compute_time_sec": 11.241851, + "compute_times": { + "total": 12.474130183458328, + "queued": 1.420551, + "compile": 10.825671127066016, + "clean_up": 0.061418959870934486, + "file_setup": 1.5227604731917381, + "save_results": 0.04108254425227642, + "compile_r1cs_and_keygen": 0.022699812427163124 + }, + "file_size": 19741724, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:55:10.340Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.246401S", + "compute_time_sec": 11.246401, + "compute_times": { + "total": 12.475918658077717, + "queued": 1.465348, + "compile": 10.844971090555191, + "clean_up": 0.05561045743525028, + "file_setup": 1.5209588538855314, + "save_results": 0.032638829201459885, + "compile_r1cs_and_keygen": 0.021452149376273155 + }, + "file_size": 19741716, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:53:46.296Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.258641S", + "compute_time_sec": 11.258641, + "compute_times": { + "total": 12.491810835897923, + "queued": 1.516986, + "compile": 10.808460559695959, + "clean_up": 0.06728884018957615, + "file_setup": 1.5511275846511126, + "save_results": 0.04296918027102947, + "compile_r1cs_and_keygen": 0.021483000367879868 + }, + "file_size": 19741716, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:52:51.464Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.176662S", + "compute_time_sec": 11.176662, + "compute_times": { + "total": 12.414811408147216, + "queued": 1.367679, + "compile": 10.73251723125577, + "clean_up": 0.08182202465832233, + "file_setup": 1.5543472524732351, + "save_results": 0.023770425468683243, + "compile_r1cs_and_keygen": 0.021878626197576523 + }, + "file_size": 19741718, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:50:44.245Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.090040S", + "compute_time_sec": 14.09004, + "compute_times": { + "total": 1.543837545439601, + "queued": 21.153753, + "file_setup": 1.5434527061879635 + }, + "file_size": 4148, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:29:14.159Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M10.460622S", + "compute_time_sec": 10.460622, + "compute_times": { + "total": 1.5692181382328272, + "queued": 1.442896, + "file_setup": 1.568734273314476 + }, + "file_size": 4148, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:21:25.657Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.046979S", + "compute_time_sec": 14.046979, + "compute_times": { + "total": 1.551876936107874, + "queued": 18.025252, + "file_setup": 1.5510845798999071 + }, + "file_size": 4143, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, + { + "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", + "circuit_name": "multiplier2", + "circuit_type": "circom", + "date_created": "2023-12-01T19:22:16.230Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.920270S", + "compute_time_sec": 7.92027, + "compute_times": { + "total": 9.144548835232854, + "queued": 26.442871, + "clean_up": 0.0016796644777059555, + "create_cpp": 0.05204322002828121, + "file_setup": 1.3975976463407278, + "compile_cpp": 4.545235302299261, + "create_r1cs": 0.008858315646648407, + "save_results": 0.005187435075640678, + "get_r1cs_info": 0.0006442461162805557, + "groth16_setup": 1.5628649536520243, + "export_verification_key": 1.5673195589333773, + "download_trusted_setup_file": 0.0025161877274513245 + }, + "file_size": 225511, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + } + ], "rawHeaders": [ "Content-Length", - "750", + "169457", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:27 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -35743,5780 +12355,6724 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", "body": "", "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + "response": [ + { + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, + "compute_times": { + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, + "compute_times": { + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.018Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, + "compute_times": { + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.932Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, + "compute_times": { + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.924Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, + "compute_times": { + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.909Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, + "compute_times": { + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.810Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, + "compute_times": { + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.800Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, + "compute_times": { + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.792Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, + "compute_times": { + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.637Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, + "compute_times": { + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.620Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, + "compute_times": { + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.593Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, + "compute_times": { + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.516Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, + "compute_times": { + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.491Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, + "compute_times": { + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.478Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, + "compute_times": { + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.414Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, + "compute_times": { + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.362Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, + "compute_times": { + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.356Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, + "compute_times": { + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.294Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, + "compute_times": { + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.184Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, + "compute_times": { + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.144Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, + "compute_times": { + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.120Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, + "compute_times": { + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, + "compute_times": { + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.027Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, + "compute_times": { + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.006Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, + "compute_times": { + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.963Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, + "compute_times": { + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.909Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, + "compute_times": { + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.896Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, + "compute_times": { + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.873Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, + "compute_times": { + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.817Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, + "compute_times": { + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.806Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, + "compute_times": { + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.774Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, + "compute_times": { + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:30 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, + "compute_times": { + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, + "compute_times": { + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, + "compute_times": { + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, + "compute_times": { + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, + "compute_times": { + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, + "compute_times": { + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, + "compute_times": { + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, + "compute_times": { + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, + "compute_times": { + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, + "compute_times": { + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, + "compute_times": { + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, + "compute_times": { + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, + "compute_times": { + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, + "compute_times": { + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, + "compute_times": { + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:32 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, + "compute_times": { + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, + "compute_times": { + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:32 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, + "compute_times": { + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, + "compute_times": { + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, + "compute_times": { + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:32 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, + "compute_times": { + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, + "compute_times": { + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:33 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, + "compute_times": { + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, + "compute_times": { + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, + "compute_times": { + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, + "compute_times": { + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, + "compute_times": { + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, + "compute_times": { + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.549Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, + "compute_times": { + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, + "compute_times": { + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, + "compute_times": { + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, + "compute_times": { + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, + "compute_times": { + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, + "compute_times": { + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, + "compute_times": { + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:35 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, + "compute_times": { + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, + "compute_times": { + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, + "compute_times": { + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:35 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, + "compute_times": { + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, + "compute_times": { + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:35 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, + "compute_times": { + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, + "compute_times": { + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, + "compute_times": { + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:36 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, + "compute_times": { + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, + "compute_times": { + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, + "compute_times": { + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, + "compute_times": { + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, + "compute_times": { + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, + "compute_times": { + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, + "compute_times": { + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, + "compute_times": { + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, + "compute_times": { + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, + "compute_times": { + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, + "compute_times": { + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, + "compute_times": { + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, + "compute_times": { + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:38 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, + "compute_times": { + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, + "compute_times": { + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:38 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, + "compute_times": { + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, + "compute_times": { + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, + "compute_times": { + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:38 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, + "compute_times": { + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, + "compute_times": { + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:38 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, + "compute_times": { + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, + "compute_times": { + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, + "compute_times": { + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, + "compute_times": { + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, + "compute_times": { + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, + "compute_times": { + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, + "compute_times": { + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, + "compute_times": { + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, + "compute_times": { + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, + "compute_times": { + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, + "compute_times": { + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, + "compute_times": { + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, + "compute_times": { + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, + "compute_times": { + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, + "compute_times": { + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:14.150Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, + "compute_times": { + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:12.520Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, + "compute_times": { + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:10.959Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, + "compute_times": { + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:09.368Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, + "compute_times": { + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:07.782Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, + "compute_times": { + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:06.214Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, + "compute_times": { + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:04.623Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, + "compute_times": { + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:03.050Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, + "compute_times": { + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:43 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:01.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, + "compute_times": { + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:59.935Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, + "compute_times": { + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:58.407Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, + "compute_times": { + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:43 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:56.860Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, + "compute_times": { + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:55.316Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, + "compute_times": { + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:43 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:53.766Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, + "compute_times": { + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:52.213Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, + "compute_times": { + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:50.640Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, + "compute_times": { + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:44 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:49.058Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, + "compute_times": { + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:47.479Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, + "compute_times": { + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:45.920Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, + "compute_times": { + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:44.421Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, + "compute_times": { + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:42.838Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, + "compute_times": { + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:41.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, + "compute_times": { + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:39.684Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, + "compute_times": { + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:38.137Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, + "compute_times": { + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:36.609Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, + "compute_times": { + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:35.023Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, + "compute_times": { + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:33.480Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, + "compute_times": { + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:31.932Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, + "compute_times": { + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:46 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:30.405Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, + "compute_times": { + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:28.882Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, + "compute_times": { + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:46 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:27.303Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, + "compute_times": { + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:25.623Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, + "compute_times": { + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:46 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:24.063Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, + "compute_times": { + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:22.482Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, + "compute_times": { + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:47 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:20.927Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, + "compute_times": { + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:19.297Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, + "compute_times": { + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:17.717Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, + "compute_times": { + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:16.204Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, + "compute_times": { + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:14.654Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, + "compute_times": { + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:13.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, + "compute_times": { + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:11.558Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, + "compute_times": { + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:10.032Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, + "compute_times": { + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:08.462Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, + "compute_times": { + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:06.935Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, + "compute_times": { + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:05.334Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, + "compute_times": { + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:03.737Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, + "compute_times": { + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:02.220Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, + "compute_times": { + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:00.620Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, + "compute_times": { + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:59.069Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, + "compute_times": { + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:57.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, + "compute_times": { + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:55.884Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, + "compute_times": { + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:54.264Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, + "compute_times": { + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:52.472Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, + "compute_times": { + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:50.941Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, + "compute_times": { + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:49.312Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, + "compute_times": { + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:47.661Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, + "compute_times": { + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:50 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:46.099Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, + "compute_times": { + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:44.552Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, + "compute_times": { + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:42.989Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, + "compute_times": { + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:41.451Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, + "compute_times": { + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:39.456Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, + "compute_times": { + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:37.847Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, + "compute_times": { + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:36.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, + "compute_times": { + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:34.681Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, + "compute_times": { + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:33.146Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, + "compute_times": { + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:31.611Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, + "compute_times": { + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:30.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, + "compute_times": { + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:28.546Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, + "compute_times": { + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:27.002Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, + "compute_times": { + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:52 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:25.415Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, + "compute_times": { + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:23.831Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, + "compute_times": { + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:22.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, + "compute_times": { + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:52 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:20.735Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, + "compute_times": { + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:19.166Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, + "compute_times": { + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:52 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:17.494Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, + "compute_times": { + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:15.887Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, + "compute_times": { + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:14.188Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, + "compute_times": { + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:52 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:12.610Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, + "compute_times": { + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:11.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, + "compute_times": { + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:09.525Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, + "compute_times": { + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:07.842Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, + "compute_times": { + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:06.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, + "compute_times": { + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:04.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, + "compute_times": { + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:03.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, + "compute_times": { + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:01.643Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, + "compute_times": { + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0005535092204809189, - "queued": 33.350444 + { + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:59.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, + "compute_times": { + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:58.419Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, + "compute_times": { + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:56.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, + "compute_times": { + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:55.300Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, + "compute_times": { + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3859", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:55 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.000550268217921257, - "queued": 33.216954 + { + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:53.639Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, + "compute_times": { + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.345Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, + "compute_times": { + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.240Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, + "compute_times": { + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, + "compute_times": { + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:55 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, + "compute_times": { + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.112Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, + "compute_times": { + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:55 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:39.613Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, + "compute_times": { + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:38.083Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, + "compute_times": { + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:55 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.000550268217921257, - "queued": 33.216954 + { + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:36.595Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, + "compute_times": { + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:35.046Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, + "compute_times": { + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:33.547Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, + "compute_times": { + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:40.710Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, + "compute_times": { + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:57 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0005535092204809189, - "queued": 33.350444 + { + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:39.000Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, + "compute_times": { + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:37.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, + "compute_times": { + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:35.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, + "compute_times": { + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:34.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, + "compute_times": { + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3859", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:57 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:32.679Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, + "compute_times": { + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:31.191Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, + "compute_times": { + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:57 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:29.642Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, + "compute_times": { + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:27.981Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, + "compute_times": { + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:57 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0005535092204809189, - "queued": 33.350444 + { + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:26.328Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, + "compute_times": { + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:54.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, + "compute_times": { + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:52.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, + "compute_times": { + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:49.557Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, + "compute_times": { + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3859", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.000550268217921257, - "queued": 33.216954 + { + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:47.111Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, + "compute_times": { + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:44.587Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, + "compute_times": { + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:32.787Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, + "compute_times": { + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:29.506Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, + "compute_times": { + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0005178153514862061, - "queued": 36.969255 + { + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:26.174Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, + "compute_times": { + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:10:50.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, + "compute_times": { + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:47.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, + "compute_times": { + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 + }, + "file_size": 451, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:39.474Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, + "compute_times": { + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3859", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, + "compute_times": { + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, + "compute_times": { + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, + "compute_times": { + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, + "compute_times": { + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0005535092204809189, - "queued": 33.350444 + { + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, + "compute_times": { + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 + }, + "file_size": 789, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, + "compute_times": { + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, + "compute_times": { + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, + "compute_times": { + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3859", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:54:00 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.000550268217921257, - "queued": 33.216954 + { + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, + "compute_times": { + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, + "compute_times": { + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, + "compute_times": { + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, + "compute_times": { + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:54:00 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0005178153514862061, - "queued": 36.969255 + { + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, + "compute_times": { + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, + "compute_times": { + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, + "compute_times": { + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, + "compute_times": { + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, + "compute_times": { + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, + "compute_times": { + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, + "compute_times": { + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3859", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:54:00 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, + "compute_times": { + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, + "compute_times": { + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:54:01 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.000550268217921257, - "queued": 33.216954 + { + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, + "compute_times": { + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, + "compute_times": { + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, + "compute_times": { + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, + "compute_times": { + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 + }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, + { + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, + "compute_times": { + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, + "compute_times": { + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, + "compute_times": { + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + } + ], "rawHeaders": [ "Content-Length", - "3858", + "187148", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:01 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41533,98 +19089,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0005535092204809189, - "queued": 33.350444 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:02 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41641,98 +19137,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0005178153514862061, - "queued": 36.969255 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:02 GMT", + "Tue, 12 Mar 2024 00:29:00 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41749,98 +19185,50 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/proof/d571dee9-1a2b-4549-9bfd-5f639823dd8a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, "compute_times": { - "total": 0.00047773122787475586, - "queued": 39.412453 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 + }, + "file_size": 532, + "proof_input": { + "PreImage": "297262668938251460872476410954775437897592223497" }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "proof": { + "proof": "H7CYWYy5fapXQZFqhqYODOt/MnOtsN89v86s/Q+PQ6oG3lWG0iy1CSLIEhoFBX6wdQAoYdjiejspuxoTRy5lvQAcU6QNmIVumomuSb4UlNRK+kfWyCMHMjSAGK3SSQl8E3TkYs+VMPdfwQ9ukDuMb8/WFg2sqPEblIbsaROuRf4csW1sgjIC5VE2vCGvio5Xgg1wyAyoM0oN5wCFfopC4xZB78LE+AbmszSsz+RjFwRiE7pnKZ0E+fPvLbT9P3BcDIJprcSIgqD913l7RgNfcoAa4tyPxGEt5B6898oxp34J5Veq1n7uZF9Y7oy4JdlX/m2X7aMoTFPzW5jdQWQ2pgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" + }, + "public": { + "Hash": "21099541378821686330832093407308585959971016892597585818017774528142419287929" + }, + "verification_key": { + "verifying_key": "AZuKAsBYS9XUoUekCdnwUdpv66Ydjvc+THgzZ1bEjDECKWQSDajIzlLNtTC8e98dCZP+BDWR+8kLYBdFeyA7CSuDePqNEV3a2tuIJt0BPb8KanU9U27h+k0q3NWp10wpIpGYH1zUvZ1n4UNnZRkZ9QGsvqnFMCSLdbvRzWATaHQGoYj4Mb/pICxPN7hpzb1oP9G265bukuJd2J5IyosRgCISjzx8DpwO+uPTpah+/qnzBgpcsgVx6dBuP2/tyyMXBAiaJrnU0f4W4e84R9ZN4WLcAb98ZfwBV9FI0HZhIV4CvBzV8q2OgKXsymQhs9N+ssmAV7B9zz92r9BF1p0q3i54Z4to9mI9g9kdbjc7lAuKR2Td9bDdgYll5VSQ5V8gJY84yUagA++d5ZqAZkcNw980TBsJIMzTctGRH9AkReYkGFNW2h+HmzpGfz3ILeyQZEe3YhFAePv0em5iGMIt/hNPoZt3tcdqFLTjqxb2YZxEJka25BOsG9DoUIGOG/AGJ8c/ekNbrmgmABdMWduVLqiMNVHSgHbS/nitebSDTVkSuz2FFU2Pl9z0hiKQxB1x8O9KBHLJyJNjNd4q0e92QiMsRz6ZGJCZjWyRuipTAJJ91f2xcUuq7H5bSxPw5eQsCctSpzeCkfid0bExrasUYKD9IKG3KUPhLd+tJQrppq0hg70mG5hWDeb56u87wi4bCiMpjPLft0yxzxcEdLuyoCsaqQusl4faufJfaBlQnLfeICOkAVF1WFdi+DY+e34xAAAAAgnpuIbOMgN7mEntfuHbhUsvzOBPMfz+Iz2QNqvZ1EtGAYrAMDgOjShXid1AiYWe2fVauLRx66IE71umcRIgaGgjGeoJYf8qz7NuHYtuGHJ6hYf9PfmFEOUvoVuB/qUY+As3OhG2Yk6Cs6eaLSJk7VqO2Isl6q8w2420rG4EoeRSAAAAAA8JQCqWantqQEe3L6ctcwNmXSDpD/BUNh+XS5VUcVbBFU9OU6X1vMwfkRD5Xwf55xpkb5Zwk4IhhGr0jRgdtp4QUlk1INxSbo3Y+wawJOkOHPf0h4K4jTYrDVYTJslzgy8aujsa0C3SRYToyPGwJJlmQCpONjzVszK2PxRd0GIQAXDTddlQk/cPvqkCp8b1GCTTJowDZ3DWWa764NWTH+Ef5GXTg7RyjDqlzs7LwJnHYOPz/OuedGDP7MQM0fr+VhtIEuHGqFsviWa+M2Zaa1aWcQHjIr+kpQqciJaayZKMKVEcJBO92pUgIf1q684Pas0AwyiJoBQQjsfYs+DzmcI=" + }, + "error": null }, "rawHeaders": [ "Content-Length", - "3860", + "2557", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:02 GMT", + "Tue, 12 Mar 2024 00:29:00 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41857,112 +19245,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=false", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.079043S", - "compute_times": { - "total": 8.1481066159904, - "queued": 33.216954, - "clean_up": 0.0012843683362007141, - "create_cpp": 0.04959687031805515, - "file_setup": 0.23915930651128292, - "compile_cpp": 5.146212790161371, - "create_r1cs": 0.009589282795786858, - "save_results": 0.004309792071580887, - "get_r1cs_info": 0.0004855319857597351, - "groth16_setup": 1.3342555668205023, - "export_verification_key": 1.3613101970404387, - "download_trusted_setup_file": 0.0013526417315006256 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4364", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:03 GMT", + "Tue, 12 Mar 2024 00:29:00 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41979,98 +19293,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0005535092204809189, - "queued": 33.350444 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:03 GMT", + "Tue, 12 Mar 2024 00:29:00 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42087,98 +19341,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0005178153514862061, - "queued": 36.969255 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:03 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42195,205 +19389,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/66859127-ae4f-4cb9-9dc0-fea87ef370d7/detail?include_verification_key=true", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "66859127-ae4f-4cb9-9dc0-fea87ef370d7", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.283Z", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.079043S", - "compute_times": { - "total": 8.1481066159904, - "queued": 33.216954, - "clean_up": 0.0012843683362007141, - "create_cpp": 0.04959687031805515, - "file_setup": 0.23915930651128292, - "compile_cpp": 5.146212790161371, - "create_r1cs": 0.009589282795786858, - "save_results": 0.004309792071580887, - "get_r1cs_info": 0.0004855319857597351, - "groth16_setup": 1.3342555668205023, - "export_verification_key": 1.3613101970404387, - "download_trusted_setup_file": 0.0013526417315006256 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, + "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "7004", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:03 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42410,98 +19437,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.00047773122787475586, - "queued": 39.412453 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3860", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:03 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42518,112 +19485,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/detail?include_verification_key=false", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.544Z", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.348430S", - "compute_times": { - "total": 8.426204338669777, - "queued": 33.350444, - "clean_up": 0.0016505587846040726, - "create_cpp": 0.05487280152738094, - "file_setup": 0.2712872661650181, - "compile_cpp": 5.174974460154772, - "create_r1cs": 0.019523324444890022, - "save_results": 0.005786126479506493, - "get_r1cs_info": 0.0006649475544691086, - "groth16_setup": 1.4867286253720522, - "export_verification_key": 1.4084693808108568, - "download_trusted_setup_file": 0.00169333815574646 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4363", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:04 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42640,98 +19533,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0005178153514862061, - "queued": 36.969255 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:05 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42748,98 +19581,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.00047773122787475586, - "queued": 39.412453 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3860", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:05 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42855,40 +19628,39 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/b083e8f7-fee6-403b-8926-e24991cdf1b9/prove", - "body": "------WebKitFormBoundaryaAd3mBsKvHujzdW4\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryaAd3mBsKvHujzdW4--\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "547", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:05 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42905,42 +19677,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:06 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42957,98 +19725,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0005178153514862061, - "queued": 36.969255 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:06 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43065,98 +19773,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.00047773122787475586, - "queued": 39.412453 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3860", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:06 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43173,42 +19821,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:07 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43225,112 +19869,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5f54fb8e-5eff-47cb-a191-f2194b455b86/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "5f54fb8e-5eff-47cb-a191-f2194b455b86", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:21.623Z", + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.351800S", - "compute_times": { - "total": 8.427417604252696, - "queued": 36.969255, - "clean_up": 0.0015612319111824036, - "create_cpp": 0.05725869908928871, - "file_setup": 0.22965451143682003, - "compile_cpp": 5.297692460939288, - "create_r1cs": 0.018949028104543686, - "save_results": 0.005190407857298851, - "get_r1cs_info": 0.0007126927375793457, - "groth16_setup": 1.380020946264267, - "export_verification_key": 1.4333880450576544, - "download_trusted_setup_file": 0.0024717655032873154 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4365", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:08 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43347,98 +19917,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.00047773122787475586, - "queued": 39.412453 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3860", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:08 GMT", + "Tue, 12 Mar 2024 00:29:04 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43455,42 +19965,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:09 GMT", + "Tue, 12 Mar 2024 00:29:04 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43507,98 +20013,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.00047773122787475586, - "queued": 39.412453 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3860", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:09 GMT", + "Tue, 12 Mar 2024 00:29:04 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43615,42 +20061,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:10 GMT", + "Tue, 12 Mar 2024 00:29:06 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43667,112 +20109,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/detail?include_verification_key=false", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:22.172Z", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.259506S", - "compute_times": { - "total": 8.333623813465238, - "queued": 39.412453, - "clean_up": 0.0017674434930086136, - "create_cpp": 0.05132126249372959, - "file_setup": 0.2850768994539976, - "compile_cpp": 5.270377684384584, - "create_r1cs": 0.016308216378092766, - "save_results": 0.006147004663944244, - "get_r1cs_info": 0.0007013306021690369, - "groth16_setup": 1.3612797409296036, - "export_verification_key": 1.3377128671854734, - "download_trusted_setup_file": 0.002453632652759552 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4364", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:11 GMT", + "Tue, 12 Mar 2024 00:29:06 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43789,42 +20157,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:12 GMT", + "Tue, 12 Mar 2024 00:29:07 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43840,40 +20204,39 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/prove", - "body": "------WebKitFormBoundaryQYiOeZpXJi18oKNp\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryQYiOeZpXJi18oKNp--\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "547", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:12 GMT", + "Tue, 12 Mar 2024 00:29:08 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43890,42 +20253,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:12 GMT", + "Tue, 12 Mar 2024 00:29:09 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43942,42 +20301,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:13 GMT", + "Tue, 12 Mar 2024 00:29:10 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43994,42 +20349,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:14 GMT", + "Tue, 12 Mar 2024 00:29:12 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44046,42 +20397,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:15 GMT", + "Tue, 12 Mar 2024 00:29:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44098,42 +20445,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:16 GMT", + "Tue, 12 Mar 2024 00:29:14 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44150,42 +20493,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:17 GMT", + "Tue, 12 Mar 2024 00:29:15 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44202,42 +20541,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:17 GMT", + "Tue, 12 Mar 2024 00:29:17 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44254,42 +20589,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:18 GMT", + "Tue, 12 Mar 2024 00:29:18 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44306,42 +20637,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:19 GMT", + "Tue, 12 Mar 2024 00:29:19 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44358,42 +20685,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, - "status": "Queued", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" + "compute_time_sec": null, + "compute_times": { + "total": 0.0004587499424815178, + "queued": 21.20654 }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:20 GMT", + "Tue, 12 Mar 2024 00:29:20 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44410,42 +20736,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, - "status": "Queued", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" + "compute_time_sec": null, + "compute_times": { + "total": 0.0004587499424815178, + "queued": 21.20654 }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:20 GMT", + "Tue, 12 Mar 2024 00:29:22 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44462,103 +20787,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0002667289227247238, - "queued": 15.060922 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.0004587499424815178, + "queued": 21.20654 }, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3408", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:21 GMT", + "Tue, 12 Mar 2024 00:29:23 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44575,103 +20838,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0003614351153373718, - "queued": 8.366789 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.0004587499424815178, + "queued": 21.20654 }, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3413", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:21 GMT", + "Tue, 12 Mar 2024 00:29:24 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44688,103 +20889,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0002667289227247238, - "queued": 15.060922 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.0004587499424815178, + "queued": 21.20654 }, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3408", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:23 GMT", + "Tue, 12 Mar 2024 00:29:25 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44801,103 +20940,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0003614351153373718, - "queued": 8.366789 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.0004587499424815178, + "queued": 21.20654 }, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3413", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:23 GMT", + "Tue, 12 Mar 2024 00:29:26 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44914,103 +20991,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, - "status": "In Progress", - "compute_time": null, + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.942825S", + "compute_time_sec": 6.942825, "compute_times": { - "total": 0.0002667289227247238, - "queued": 15.060922 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "total": 6.949025787878782, + "queued": 21.20654, + "clean_up": 0.031298316083848476, + "create_cpp": 0.04343291139230132, + "file_setup": 0.02724728872999549, + "compile_cpp": 4.45128513360396, + "create_r1cs": 0.013787470292299986, + "save_results": 0.0027786437422037125, + "get_r1cs_info": 0.00040152110159397125, + "groth16_setup": 1.1622737408615649, + "export_verification_key": 1.214866721071303, + "download_trusted_setup_file": 0.001195291057229042 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "3408", + "1000", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:24 GMT", + "Tue, 12 Mar 2024 00:29:28 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45026,104 +21051,36 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/prove", + "body": "------WebKitFormBoundaryjVprMlHCeYbBXrI6\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryjVprMlHCeYbBXrI6--\r\n", + "status": 201, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", + "date_created": "2024-03-12T00:29:28.396Z", "perform_verify": false, - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0003614351153373718, - "queued": 8.366789 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3413", + "468", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:24 GMT", + "Tue, 12 Mar 2024 00:29:28 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45140,103 +21097,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/ee512f9d-2590-4d6a-93c3-f0de07984b5e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", + "date_created": "2024-03-12T00:29:28.396Z", "perform_verify": false, - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0002667289227247238, - "queued": 15.060922 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, "proof_input": { "a": "5", "b": "4" }, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3408", + "484", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:26 GMT", + "Tue, 12 Mar 2024 00:29:28 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45253,103 +21145,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/ee512f9d-2590-4d6a-93c3-f0de07984b5e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", + "date_created": "2024-03-12T00:29:28.396Z", "perform_verify": false, "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0003614351153373718, - "queued": 8.366789 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004682079888880253, + "queued": 0.649073 }, + "file_size": null, "proof_input": { "a": "5", "b": "4" }, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3413", + "537", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:26 GMT", + "Tue, 12 Mar 2024 00:29:29 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45366,103 +21196,167 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/ee512f9d-2590-4d6a-93c3-f0de07984b5e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", + "date_created": "2024-03-12T00:29:28.396Z", "perform_verify": false, - "status": "In Progress", - "compute_time": null, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.462342S", + "compute_time_sec": 1.462342, "compute_times": { - "total": 0.0002667289227247238, - "queued": 15.060922 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "prove": 1.3968474080320448, + "total": 1.4673558110371232, + "queued": 0.649073, + "clean_up": 0.012919645989313722, + "file_setup": 0.027661754051223397, + "save_results": 0.002378439996391535, + "generate_witness_c": 0.027080354979261756 + }, + "file_size": 711, "proof_input": { "a": "5", "b": "4" }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } + "proof": { + "pi_a": [ + "18936280211298133310961472129866688356627045971510976027012511424277447736526", + "13209436284702984829526526452943496272429053921809347570282124224908353137929", + "1" + ], + "pi_b": [ + [ + "8832610811071436968963610401432692707744555620529459776886907353538364093707", + "18203037115285035445719499309293581584388887907944455964652370112317526837267" + ], + [ + "8243408095890286717035179516475795408029897079081508725081245858048183200721", + "67816320709684014911822067340817227752316760351046700800618127695510206641" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "13924674041339048762229665764583637948826598357575519999683838253203118576331", + "6090371706442598995204348204014607148189458832377538450718315957573967200893", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] }, - "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3408", + "4089", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:27 GMT", + "Tue, 12 Mar 2024 00:29:31 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45479,103 +21373,45 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", "body": "", "status": 200, - "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", - "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0003614351153373718, - "queued": 8.366789 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 + "response": [ + { + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_type": "circom", + "date_created": "2024-03-12T00:29:28.396Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.462342S", + "compute_time_sec": 1.462342, + "compute_times": { + "prove": 1.3968474080320448, + "total": 1.4673558110371232, + "queued": 0.649073, + "clean_up": 0.012919645989313722, + "file_setup": 0.027661754051223397, + "save_results": 0.002378439996391535, + "generate_witness_c": 0.027080354979261756 }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null - }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + } + ], "rawHeaders": [ "Content-Length", - "3413", + "716", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:27 GMT", + "Tue, 12 Mar 2024 00:29:31 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45592,103 +21428,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", - "perform_verify": false, - "status": "In Progress", - "compute_time": null, + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.821377S", + "compute_time_sec": 6.821377, "compute_times": { - "total": 0.0002667289227247238, - "queued": 15.060922 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "total": 6.826562466099858, + "queued": 30.605249, + "clean_up": 0.03631652891635895, + "create_cpp": 0.04230261128395796, + "file_setup": 0.03898624051362276, + "compile_cpp": 4.361995664425194, + "create_r1cs": 0.013952208682894707, + "save_results": 0.0029701171442866325, + "get_r1cs_info": 0.0003667334094643593, + "groth16_setup": 1.1385776856914163, + "export_verification_key": 1.189240344800055, + "download_trusted_setup_file": 0.0011938214302062988 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "3408", + "1001", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:29 GMT", + "Tue, 12 Mar 2024 00:30:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45705,137 +21489,36 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.529342S", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.821377S", + "compute_time_sec": 6.821377, "compute_times": { - "prove": 5.611146707087755, - "total": 7.596562955528498, - "queued": 8.366789, - "clean_up": 0.00021130777895450592, - "file_setup": 0.2500401921570301, - "save_results": 0.002199240028858185, - "generate_witness_c": 1.7326040733605623 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": { - "pi_a": [ - "9754328505106579624513402735368893076704243395720236157054601210862551944333", - "749707164571282383906001177953109766682937116326128153105224805935859961532", - "1" - ], - "pi_b": [ - [ - "7568031725657157375308866481079515952934935001218392341522528214108353507565", - "8701968356867322742889416465996913899428444603543628632939349914982264100560" - ], - [ - "1014500641916149725162605398571415555555033473300910232976024827032520344450", - "11122881947934724306424180991433059143129946055583090803716478038938644456860" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "10369060922159457158704513702812955642197374571074656414600237324891296434984", - "20113774357919302679458228855354054621192395422487609598864582085826752061656", - "1" - ], - "protocol": "groth16" - }, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": [ - "20" - ], - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "total": 6.826562466099858, + "queued": 30.605249, + "clean_up": 0.03631652891635895, + "create_cpp": 0.04230261128395796, + "file_setup": 0.03898624051362276, + "compile_cpp": 4.361995664425194, + "create_r1cs": 0.013952208682894707, + "save_results": 0.0029701171442866325, + "get_r1cs_info": 0.0003667334094643593, + "groth16_setup": 1.1385776856914163, + "export_verification_key": 1.189240344800055, + "download_trusted_setup_file": 0.0011938214302062988 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -45930,15 +21613,126 @@ ] ] }, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + "rawHeaders": [ + "Content-Length", + "3641", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:30:13 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.876603S", + "compute_time_sec": 6.876603, + "compute_times": { + "total": 6.882667106110603, + "queued": 29.007266, + "clean_up": 0.04546098504215479, + "create_cpp": 0.043475366197526455, + "file_setup": 0.03212927980348468, + "compile_cpp": 4.419587793760002, + "create_r1cs": 0.01546289399266243, + "save_results": 0.002493636216968298, + "get_r1cs_info": 0.00048116687685251236, + "groth16_setup": 1.1517645819112659, + "export_verification_key": 1.1701868688687682, + "download_trusted_setup_file": 0.001243850216269493 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + "rawHeaders": [ + "Content-Length", + "1001", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:30:14 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/prove", + "body": "------WebKitFormBoundaryFHOZt1T9cAuBSHty\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryFHOZt1T9cAuBSHty--\r\n", + "status": 201, + "response": { + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "circuit_name": "circom-multiplier2", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_type": "circom", + "date_created": "2024-03-12T00:30:14.362Z", + "perform_verify": false, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "7127", + "468", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:29 GMT", + "Tue, 12 Mar 2024 00:30:14 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45955,118 +21749,99 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01d1e2c3-71bd-40bc-b28e-61334e50679a/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "path": "/api/v1/proof/bfedc200-63c9-48fd-88bf-844413ad428a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, - "response": [ - { - "proof_id": "6a0dd4dc-baa8-4bbc-8cf6-e93e4449660e", - "circuit_name": "circom-multiplier2", - "circuit_id": "01d1e2c3-71bd-40bc-b28e-61334e50679a", - "circuit_type": "circom", - "date_created": "2024-01-16T20:54:11.979Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.529342S", - "compute_times": { - "prove": 5.611146707087755, - "total": 7.596562955528498, - "queued": 8.366789, - "clean_up": 0.00021130777895450592, - "file_setup": 0.2500401921570301, - "save_results": 0.002199240028858185, - "generate_witness_c": 1.7326040733605623 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,7-31,34-63,68-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,5,6,32,33,64-67,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-bf9a7393-b374-dd83-2920-928af80b1f91", - "driver": "525.125.06", - "serial": "1324821107004", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null - } + "response": { + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "circuit_name": "circom-multiplier2", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_type": "circom", + "date_created": "2024-03-12T00:30:14.362Z", + "perform_verify": false, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "484", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:30:14 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.924565S", + "compute_time_sec": 6.924565, + "compute_times": { + "total": 6.929660878144205, + "queued": 22.741395, + "clean_up": 0.018933841958642006, + "create_cpp": 0.04256786499172449, + "file_setup": 0.02480014692991972, + "compile_cpp": 4.3917419938370585, + "create_r1cs": 0.013429097831249237, + "save_results": 0.0027808332815766335, + "get_r1cs_info": 0.00034791603684425354, + "groth16_setup": 1.2296617422252893, + "export_verification_key": 1.2036232966929674, + "download_trusted_setup_file": 0.0012051593512296677 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, "rawHeaders": [ "Content-Length", - "3754", + "1005", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:30 GMT", + "Tue, 12 Mar 2024 00:30:15 GMT", "Referrer-Policy", "same-origin", "Server", @@ -46083,56 +21858,48 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/e94a4b80-9021-48c3-941d-55dcd1ea8610/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/bfedc200-63c9-48fd-88bf-844413ad428a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "e94a4b80-9021-48c3-941d-55dcd1ea8610", + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", "circuit_name": "circom-multiplier2", - "circuit_id": "b083e8f7-fee6-403b-8926-e24991cdf1b9", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:05.513Z", + "date_created": "2024-03-12T00:30:14.362Z", "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M09.082516S", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.354832S", + "compute_time_sec": 0.354832, "compute_times": { - "prove": 6.273992471396923, - "total": 9.149442529305816, - "queued": 15.060922, - "clean_up": 0.00036756880581378937, - "file_setup": 0.24993485026061535, - "save_results": 0.003279495984315872, - "generate_witness_c": 2.621601413935423 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "prove": 0.29524299991317093, + "total": 0.3594474990386516, + "queued": 0.452341, + "clean_up": 0.010387225076556206, + "file_setup": 0.0286204491276294, + "save_results": 0.0014043520204722881, + "generate_witness_c": 0.023333966033533216 + }, + "file_size": 714, "proof_input": { "a": "5", "b": "4" }, "proof": { "pi_a": [ - "18072743418791621166861452458364761678197663724303091534500273896066890451832", - "7428869401111395659637118833810516937759822244365669915839884194768242237348", + "11949514769451524332662562865926691476261169184544316779334032332670082029944", + "9550080803318845276551860407970350096528425247389234985271611269453846901141", "1" ], "pi_b": [ [ - "5699664235061039672843651625666178015671173652029152969071050749960723409933", - "15753987497865008615097383785046039341375186834851479344667572925445648725362" + "20699712497607694570919554370346242085435582350481334394704480681822069086941", + "11169970291949827620962812370771058424149926616198840110052255999674454947989" ], [ - "13074491361780756504585635771953476038776141234351032056570901063179094109791", - "1679371648702098811466565660574807143110140685179781680450838525307787692155" + "4357299319118913570949423806850116203434175623530228704142483990917515858032", + "20519580596030533624359722910874566685325199344536472077343907249187982217240" ], [ "1", @@ -46140,80 +21907,15 @@ ] ], "pi_c": [ - "12337458841416311493873273792368831674217952146005120918997246222371524459748", - "14541605299421485461944640115811140702653234542299753528248902547064046793638", + "12519453461541158465917410495302869539615096681316950994155196803319847361819", + "5183099171905559243460255018628191247553269378451842702179487961020704501901", "1" ], "protocol": "groth16" }, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, "public": [ "20" ], - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -46312,11 +22014,11 @@ }, "rawHeaders": [ "Content-Length", - "7125", + "4092", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:31 GMT", + "Tue, 12 Mar 2024 00:30:15 GMT", "Referrer-Policy", "same-origin", "Server", diff --git a/test/fixtures/sdk.test.ts.json b/test/fixtures/sdk.test.ts.json index 1522850..c6e64a5 100644 --- a/test/fixtures/sdk.test.ts.json +++ b/test/fixtures/sdk.test.ts.json @@ -2,38705 +2,18652 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "path": "/api/v1/circuit/list?include_verification_key=false", "body": "", "status": 200, "response": [ { - "proof_id": "7206a741-eb14-4b4d-9df8-34d4573a671c", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T20:50:03.892Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.157652S", - "compute_times": { - "prove": 6.974535636603832, - "total": 7.280014621093869, - "queued": 0.699272, - "clean_up": 0.0002770274877548218, - "file_setup": 0.29124958999454975, - "save_results": 0.0023470818996429443, - "generate_witness_c": 0.011234406381845474 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_name": "poseidon", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:08:55.369Z", + "num_proofs": 229, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M20.064560S", + "compute_time_sec": 20.06456, + "compute_times": { + "total": 20.07014292757958, + "queued": 0.281108, + "compile": 12.642420304007828, + "clean_up": 5.060501893050969, + "file_setup": 2.2013850677758455, + "save_results": 0.036197442561388016, + "compile_r1cs_and_keygen": 0.12922980543226004 }, + "file_size": 30921195, + "uploaded_file_name": "poseidon.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "0e78c891-40bf-42e3-bd3f-9ed15ab294f0", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T18:55:20.740Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.626586S", - "compute_times": { - "prove": 6.398727452382445, - "total": 6.695585208013654, - "queued": 0.700341, - "clean_up": 0.00033893808722496033, - "file_setup": 0.2777874078601599, - "save_results": 0.003003843128681183, - "generate_witness_c": 0.015339698642492294 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.18", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,5,7-31,33-63,68-95,97-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,6,32,64-67,96", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-e16b8d72-c644-fe31-8ecb-7760d3065b46", - "driver": "525.125.06", - "serial": "1325021030241", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:01:02.213Z", + "num_proofs": 2, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.157686S", + "compute_time_sec": 14.157686, + "compute_times": { + "total": 14.164283829275519, + "queued": 0.242197, + "compile": 9.50105039961636, + "clean_up": 2.131474153138697, + "file_setup": 2.504877657163888, + "save_results": 0.007419941946864128, + "compile_r1cs_and_keygen": 0.018980357330292463 }, + "file_size": 19726986, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "9d5192cc-1409-4d2f-9396-41caf8f29fe7", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", + "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-16T18:52:27.137Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.899607S", - "compute_times": { - "prove": 6.709071487188339, - "total": 6.967682661488652, - "queued": 0.743436, - "clean_up": 0.00023915618658065796, - "file_setup": 0.2436655443161726, - "save_results": 0.0022156648337841034, - "generate_witness_c": 0.012174580246210098 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-28T16:06:54.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.680331S", + "compute_time_sec": 2.680331, + "compute_times": { + "total": 2.6865532309748232, + "queued": 0.278162, + "clean_up": 0.15621905494481325, + "file_setup": 0.07576264115050435, + "create_r1cs": 0.02499393606558442, + "create_wasm": 0.037889659870415926, + "save_results": 0.006284092087298632, + "get_r1cs_info": 0.0003155169542878866, + "groth16_setup": 1.1963414950296283, + "export_verification_key": 1.1868828509468585, + "download_trusted_setup_file": 0.0014421690721064806 }, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "c67272e2-9303-477b-8334-654e9254a644", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", + "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-16T18:42:04.008Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.841297S", - "compute_times": { - "prove": 6.633739210665226, - "total": 6.908717390149832, - "queued": 19.305507, - "clean_up": 0.0003377869725227356, - "file_setup": 0.2361250314861536, - "save_results": 0.003197876736521721, - "generate_witness_c": 0.034953245893120766 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-28T16:06:28.625Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.723950S", + "compute_time_sec": 2.72395, + "compute_times": { + "total": 2.730448425281793, + "queued": 0.24759, + "clean_up": 0.03860751632601023, + "file_setup": 0.08125918405130506, + "create_r1cs": 0.025404677726328373, + "create_wasm": 0.03741568187251687, + "save_results": 0.007240877952426672, + "get_r1cs_info": 0.00033877836540341377, + "groth16_setup": 1.2571284701116383, + "export_verification_key": 1.2813060129992664, + "download_trusted_setup_file": 0.0013454826548695564 }, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "03724588-b4a1-43c0-850b-098764b7950d", - "circuit_name": "circom-multiplier2", - "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.482Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.312271S", - "compute_times": { - "prove": 0.3462319001555443, - "total": 2.3874263800680637, - "queued": 12.962683, - "clean_up": 0.0004112236201763153, - "file_setup": 0.7245128508657217, - "save_results": 0.1826412994414568, - "generate_witness_c": 1.133329700678587 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-4,6-31,36-68,70-95,100-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "5,32-35,69,96-99", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-27T01:57:59.411Z", + "num_proofs": 4, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.843744S", + "compute_time_sec": 36.843744, + "compute_times": { + "total": 36.91908207698725, + "queued": 0.286679, + "clean_up": 0.03467807709239423, + "create_cpp": 0.7680627549998462, + "file_setup": 0.1394905720371753, + "compile_cpp": 28.152615127852187, + "create_r1cs": 0.34302311204373837, + "save_results": 0.006143820006400347, + "get_r1cs_info": 0.0005576841067522764, + "groth16_setup": 4.3415444530546665, + "export_verification_key": 1.252952174982056, + "download_trusted_setup_file": 1.879397285869345 }, + "file_size": 3870229, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "91bd2c4c-c595-4b96-8575-029e389492ca", - "circuit_name": "circom-multiplier2", - "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.101Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.429888S", - "compute_times": { - "prove": 0.6376615725457668, - "total": 2.5025347154587507, - "queued": 8.956946, - "clean_up": 0.0003598276525735855, - "file_setup": 0.7227823697030544, - "save_results": 0.18274421244859695, - "generate_witness_c": 0.9586518034338951 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-26T02:32:51.263Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.040985S", + "compute_time_sec": 0.040985, + "compute_times": { + "total": 0.03328296495601535, + "queued": 0.306452, + "file_setup": 0.02101697097532451, + "create_wasm": 0.011749706929549575 }, + "file_size": 1015, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "81720f66-b35d-4928-9cb3-0ab9822e35c6", - "circuit_name": "circom-multiplier2", - "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:34.090Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.293048S", - "compute_times": { - "prove": 0.3393626883625984, - "total": 2.3659547176212072, - "queued": 7.751341, - "clean_up": 0.00032026320695877075, - "file_setup": 0.7235073558986187, - "save_results": 0.18249027617275715, - "generate_witness_c": 1.1200690548866987 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-25T21:21:18.316Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.116953S", + "compute_time_sec": 36.116953, + "compute_times": { + "total": 36.12258589011617, + "queued": 0.280658, + "clean_up": 0.045256566954776645, + "create_cpp": 0.7550635728985071, + "file_setup": 0.055438351118937135, + "compile_cpp": 27.543986437143758, + "create_r1cs": 0.34856289392337203, + "save_results": 0.005512146046385169, + "get_r1cs_info": 0.0005783189553767443, + "groth16_setup": 4.374077996937558, + "export_verification_key": 1.1806295281276107, + "download_trusted_setup_file": 1.8129089260473847 }, + "file_size": 3870232, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "0c041b4a-cb98-4972-b274-18350f453414", - "circuit_name": "circom-multiplier2", - "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:33.577Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.087576S", - "compute_times": { - "prove": 0.40940901823341846, - "total": 3.1577404141426086, - "queued": 1.195321, - "clean_up": 0.00036599859595298767, - "file_setup": 0.8494507372379303, - "save_results": 0.18248247168958187, - "generate_witness_c": 1.7156950328499079 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-25T21:15:00.721Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.153850S", + "compute_time_sec": 0.15385, + "compute_times": { + "total": 0.14053412294015288, + "queued": 0.345862, + "file_setup": 0.12803456606343389, + "create_wasm": 0.01188180991448462 }, + "file_size": 1004, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", - "circuit_name": "circom-multiplier2", - "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:36.311Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.092256S", - "compute_times": { - "prove": 0.36259699426591396, - "total": 2.1656957883387804, - "queued": 5.830407, - "clean_up": 0.0003967471420764923, - "file_setup": 0.6623526718467474, - "save_results": 0.18246298655867577, - "generate_witness_c": 0.9574985150247812 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-22T00:02:35.495Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.105806S", + "compute_time_sec": 8.105806, + "compute_times": { + "total": 8.111726151080802, + "queued": 0.299859, + "clean_up": 0.03814816800877452, + "create_cpp": 0.11785020097158849, + "file_setup": 0.07184063596650958, + "compile_cpp": 4.999685499118641, + "create_r1cs": 0.027501144912093878, + "save_results": 0.0056748660281300545, + "get_r1cs_info": 0.0003923040349036455, + "groth16_setup": 1.33484046603553, + "export_verification_key": 1.5138321269769222, + "download_trusted_setup_file": 0.0013768889475613832 }, + "file_size": 1650685, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", - "circuit_name": "circom-multiplier2", - "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:34.880Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.002676S", - "compute_times": { - "prove": 0.40854700468480587, - "total": 3.068965345621109, - "queued": 2.266619, - "clean_up": 0.00030806101858615875, - "file_setup": 0.7846233639866114, - "save_results": 0.18261023424565792, - "generate_witness_c": 1.6924956049770117 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-21T23:58:37.180Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.050622S", + "compute_time_sec": 7.050622, + "compute_times": { + "total": 7.057020629988983, + "queued": 0.29724, + "clean_up": 0.062270441092550755, + "create_cpp": 0.06243468704633415, + "file_setup": 0.07652567396871746, + "compile_cpp": 4.485646587098017, + "create_r1cs": 0.02570242597721517, + "save_results": 0.00595727888867259, + "get_r1cs_info": 0.00039725680835545063, + "groth16_setup": 1.17986157303676, + "export_verification_key": 1.1563023570924997, + "download_trusted_setup_file": 0.0012368990574032068 }, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", - "circuit_name": "circom-multiplier2", - "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:30.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.202003S", - "compute_times": { - "prove": 0.46431767754256725, - "total": 3.2886892426759005, - "queued": 1.201985, - "clean_up": 0.0002929028123617172, - "file_setup": 0.8507254235446453, - "save_results": 0.18203313648700714, - "generate_witness_c": 1.7910168208181858 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-16T16:44:06.247Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.940220S", + "compute_time_sec": 35.94022, + "compute_times": { + "total": 35.94744881300721, + "queued": 0.255393, + "clean_up": 0.0907127889804542, + "create_cpp": 0.8199345880420879, + "file_setup": 0.08025214297231287, + "compile_cpp": 27.603134420933202, + "create_r1cs": 0.38317175407428294, + "save_results": 0.009111783001571894, + "get_r1cs_info": 0.0010840859031304717, + "groth16_setup": 4.134320180979557, + "export_verification_key": 1.0508651459822431, + "download_trusted_setup_file": 1.7740050770808011 }, + "file_size": 3869586, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 1, + "num_private_inputs": 4, + "num_public_inputs": 0 }, { - "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", - "circuit_name": "circom-multiplier2", - "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:09.850Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.165555S", - "compute_times": { - "prove": 0.39277893863618374, - "total": 3.2604714408516884, - "queued": 1.166733, - "clean_up": 0.000250350683927536, - "file_setup": 0.9157394412904978, - "save_results": 0.1821883488446474, - "generate_witness_c": 1.7691551242023706 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T19:07:26.262Z", + "num_proofs": 2, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.144392S", + "compute_time_sec": 35.144392, + "compute_times": { + "total": 35.15089295199141, + "queued": 0.226366, + "clean_up": 0.11753120506182313, + "create_cpp": 0.7529647811315954, + "file_setup": 0.06330146407708526, + "compile_cpp": 28.331635219044983, + "create_r1cs": 0.34842015197500587, + "save_results": 0.010279993992298841, + "get_r1cs_info": 0.0006776847876608372, + "groth16_setup": 4.291510064154863, + "export_verification_key": 1.2317856717854738, + "download_trusted_setup_file": 0.002070905175060034 }, + "file_size": 3870226, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", - "circuit_name": "circom-multiplier2", - "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T12:58:03.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.952523S", - "compute_times": { - "prove": 5.78664686344564, - "total": 6.02712868899107, - "queued": 19.881766, - "clean_up": 0.000322168692946434, - "file_setup": 0.22792908176779747, - "save_results": 0.0026133283972740173, - "generate_witness_c": 0.009340517222881317 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:46:44.192Z", + "num_proofs": 5, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.775219S", + "compute_time_sec": 6.775219, + "compute_times": { + "total": 6.786237360094674, + "queued": 0.306632, + "clean_up": 0.02926708501763642, + "create_cpp": 0.06894711602944881, + "file_setup": 0.06364756193943322, + "compile_cpp": 4.536427660030313, + "create_r1cs": 0.0257944610202685, + "save_results": 0.008142217062413692, + "get_r1cs_info": 0.000770728918723762, + "groth16_setup": 1.0133657020051032, + "export_verification_key": 1.0354817470069975, + "download_trusted_setup_file": 0.003386533004231751 }, + "file_size": 232969, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", - "circuit_name": "circom-multiplier2", - "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T12:58:00.883Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.075331S", - "compute_times": { - "prove": 5.884085742756724, - "total": 6.148683849722147, - "queued": 15.626844, - "clean_up": 0.0003361683338880539, - "file_setup": 0.25031704641878605, - "save_results": 0.0027868077158927917, - "generate_witness_c": 0.010888265445828438 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:44:21.936Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.525882S", + "compute_time_sec": 7.525882, + "compute_times": { + "total": 7.532384330872446, + "queued": 0.273291, + "clean_up": 0.41135954577475786, + "create_cpp": 0.044112610165029764, + "file_setup": 0.05311372969299555, + "compile_cpp": 4.545667007099837, + "create_r1cs": 0.021503231953829527, + "save_results": 0.023626559413969517, + "get_r1cs_info": 0.0004302137531340122, + "groth16_setup": 1.2149698357097805, + "export_verification_key": 1.2118688928894699, + "download_trusted_setup_file": 0.004898259416222572 }, + "file_size": 232949, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", - "circuit_name": "circom-multiplier2", - "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", + "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:55.709Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.347161S", - "compute_times": { - "prove": 6.171584198251367, - "total": 6.416391229256988, - "queued": 13.397523, - "clean_up": 0.00026652775704860687, - "file_setup": 0.23340564966201782, - "save_results": 0.0024722814559936523, - "generate_witness_c": 0.008305234834551811 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:21:42.338Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.218699S", + "compute_time_sec": 35.218699, + "compute_times": { + "total": 35.2277638950618, + "queued": 0.317566, + "clean_up": 0.1369406400481239, + "create_cpp": 0.8040473599685356, + "file_setup": 0.1467569509986788, + "compile_cpp": 27.42731417901814, + "create_r1cs": 0.37680110498331487, + "save_results": 0.008219165029004216, + "get_r1cs_info": 0.0012246599653735757, + "groth16_setup": 4.11037651298102, + "export_verification_key": 1.009748816024512, + "download_trusted_setup_file": 1.2047668669838458 }, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", - "circuit_name": "circom-multiplier2", - "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", + "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:48.596Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.389301S", - "compute_times": { - "prove": 6.184801682829857, - "total": 6.4623388685286045, - "queued": 13.056683, - "clean_up": 0.00022029876708984375, - "file_setup": 0.2468203753232956, - "save_results": 0.002211831510066986, - "generate_witness_c": 0.027915021404623985 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T16:20:47.501Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M34.701699S", + "compute_time_sec": 34.701699, + "compute_times": { + "total": 34.707892696838826, + "queued": 0.318933, + "clean_up": 0.09660972375422716, + "create_cpp": 0.7858420582488179, + "file_setup": 0.062256335746496916, + "compile_cpp": 27.987545497715473, + "create_r1cs": 0.3427793183363974, + "save_results": 0.006912626326084137, + "get_r1cs_info": 0.0007053948938846588, + "groth16_setup": 4.240857229102403, + "export_verification_key": 1.1814902885816991, + "download_trusted_setup_file": 0.002157846000045538 }, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", - "circuit_name": "circom-multiplier2", - "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", + "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:34.540Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.935803S", - "compute_times": { - "prove": 3.0700035598129034, - "total": 4.0028952937573195, - "queued": 0.33355, - "clean_up": 0.0002639107406139374, - "file_setup": 0.27034700475633144, - "save_results": 0.06622319296002388, - "generate_witness_c": 0.5958553366363049 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-15T00:37:02.228Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M55.791705S", + "compute_time_sec": 55.791705, + "compute_times": { + "total": 55.797921964898705, + "queued": 0.257892, + "clean_up": 0.07545234775170684, + "create_cpp": 1.1982138170860708, + "file_setup": 0.0613596779294312, + "compile_cpp": 36.85164702497423, + "create_r1cs": 0.7978045740164816, + "save_results": 0.006434123031795025, + "get_r1cs_info": 0.002160165924578905, + "groth16_setup": 15.61639252398163, + "export_verification_key": 1.167371460236609, + "download_trusted_setup_file": 0.020440288819372654 }, + "file_size": 7540832, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", - "circuit_name": "circom-multiplier2", - "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:29.773Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.856164S", - "compute_times": { - "prove": 5.639464415609837, - "total": 5.929233264178038, - "queued": 0.650797, - "clean_up": 0.00027068890631198883, - "file_setup": 0.25932174175977707, - "save_results": 0.0027653388679027557, - "generate_witness_c": 0.02706645056605339 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T23:58:52.084Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.901539S", + "compute_time_sec": 56.901539, + "compute_times": { + "total": 56.907790740951896, + "queued": 0.286676, + "clean_up": 0.1532127452082932, + "create_cpp": 1.1961525329388678, + "file_setup": 0.05804666178300977, + "compile_cpp": 38.085547543130815, + "create_r1cs": 0.8190577877685428, + "save_results": 0.010267478879541159, + "get_r1cs_info": 0.002185516059398651, + "groth16_setup": 15.381996811367571, + "export_verification_key": 1.1801622677594423, + "download_trusted_setup_file": 0.020589394960552454 }, + "file_size": 7540785, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", - "circuit_name": "circom-multiplier2", - "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", + "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:24.790Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.340675S", - "compute_times": { - "prove": 1.4024820234626532, - "total": 2.4250366389751434, - "queued": 0.269107, - "clean_up": 0.0002933405339717865, - "file_setup": 0.3153865169733763, - "save_results": 0.06680999137461185, - "generate_witness_c": 0.6396786384284496 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T23:57:50.289Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.834710S", + "compute_time_sec": 56.83471, + "compute_times": { + "total": 56.8432289250195, + "queued": 0.287988, + "clean_up": 0.10309748293366283, + "create_cpp": 1.2134589219931513, + "file_setup": 0.09620017104316503, + "compile_cpp": 38.34681939892471, + "create_r1cs": 0.824894416029565, + "save_results": 0.010392117081210017, + "get_r1cs_info": 0.004026207025162876, + "groth16_setup": 15.126561413053423, + "export_verification_key": 1.0899655069224536, + "download_trusted_setup_file": 0.02710751595441252 }, + "file_size": 7540780, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", - "circuit_name": "circom-multiplier2", - "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", + "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:20.359Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.889013S", - "compute_times": { - "prove": 5.641947815194726, - "total": 5.964788755401969, - "queued": 0.707221, - "clean_up": 0.00029845722019672394, - "file_setup": 0.2756399307399988, - "save_results": 0.003031056374311447, - "generate_witness_c": 0.04360153712332249 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T23:52:09.320Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M57.335290S", + "compute_time_sec": 57.33529, + "compute_times": { + "total": 57.34173893509433, + "queued": 0.278472, + "clean_up": 0.10366297094151378, + "create_cpp": 1.246839945204556, + "file_setup": 0.06519381469115615, + "compile_cpp": 38.10613914998248, + "create_r1cs": 0.821301891002804, + "save_results": 0.0067642792128026485, + "get_r1cs_info": 0.002133298199623823, + "groth16_setup": 15.753068736288697, + "export_verification_key": 1.2155762687325478, + "download_trusted_setup_file": 0.020359096582978964 }, + "file_size": 7540742, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", - "circuit_name": "circom-multiplier2", - "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", + "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:24.129Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.822988S", - "compute_times": { - "prove": 5.622058680281043, - "total": 5.897718669846654, - "queued": 7.598676, - "clean_up": 0.00030495598912239075, - "file_setup": 0.26278817281126976, - "save_results": 0.0033362358808517456, - "generate_witness_c": 0.008939847350120544 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T23:43:09.159Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M54.984651S", + "compute_time_sec": 54.984651, + "compute_times": { + "total": 54.99341053608805, + "queued": 0.304312, + "clean_up": 0.06826841598376632, + "create_cpp": 1.2764658289961517, + "file_setup": 0.08957945799920708, + "compile_cpp": 36.77387927705422, + "create_r1cs": 0.801689010928385, + "save_results": 0.009336387040093541, + "get_r1cs_info": 0.003953314037062228, + "groth16_setup": 14.896520375041291, + "export_verification_key": 1.0483920950209722, + "download_trusted_setup_file": 0.024622616940177977 }, + "file_size": 7540733, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", - "circuit_name": "circom-multiplier2", - "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", + "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", + "circuit_name": "rate-limiting-nullifier", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:23.768Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.857713S", - "compute_times": { - "prove": 5.647087793797255, - "total": 5.9318443313241005, - "queued": 0.709273, - "clean_up": 0.000293998047709465, - "file_setup": 0.259655237197876, - "save_results": 0.0029127690941095352, - "generate_witness_c": 0.021628186106681824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T21:42:21.824Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.975886S", + "compute_time_sec": 56.975886, + "compute_times": { + "total": 56.984479263890535, + "queued": 0.3222, + "clean_up": 0.071199910948053, + "create_cpp": 1.246658438933082, + "file_setup": 0.08264653407968581, + "compile_cpp": 37.13031674805097, + "create_r1cs": 0.8157099969685078, + "save_results": 0.008955279947258532, + "get_r1cs_info": 0.004004108952358365, + "groth16_setup": 14.917821239912882, + "export_verification_key": 1.06573862710502, + "download_trusted_setup_file": 1.640640855068341 }, + "file_size": 7540735, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", - "circuit_name": "circom-multiplier2", - "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", + "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", + "circuit_name": "hash-checker", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:39.549Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.830061S", - "compute_times": { - "prove": 5.631390610709786, - "total": 5.904656020924449, - "queued": 1.982144, - "clean_up": 0.00028679706156253815, - "file_setup": 0.2506247963756323, - "save_results": 0.0030198898166418076, - "generate_witness_c": 0.018950100988149643 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T21:41:14.188Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.819064S", + "compute_time_sec": 36.819064, + "compute_times": { + "total": 36.826748004648834, + "queued": 0.269335, + "clean_up": 0.11822917684912682, + "create_cpp": 0.7589871259406209, + "file_setup": 0.15491734398528934, + "compile_cpp": 28.743124674074352, + "create_r1cs": 0.35148238157853484, + "save_results": 0.00582153769209981, + "get_r1cs_info": 0.0006839861162006855, + "groth16_setup": 4.374190780799836, + "export_verification_key": 1.1788361864164472, + "download_trusted_setup_file": 1.1384393190965056 }, + "file_size": 3867265, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", - "circuit_name": "circom-multiplier2", - "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", + "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:30.608Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.833596S", - "compute_times": { - "prove": 5.6385393515229225, - "total": 5.9040695410221815, - "queued": 0.701332, - "clean_up": 0.00033533573150634766, - "file_setup": 0.24379334598779678, - "save_results": 0.0030993279069662094, - "generate_witness_c": 0.017941521480679512 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T21:39:50.042Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M47.319956S", + "compute_time_sec": 47.319956, + "compute_times": { + "total": 47.326535122003406, + "queued": 0.256588, + "clean_up": 0.08247739961370826, + "create_cpp": 1.000471537001431, + "file_setup": 0.0585682881064713, + "compile_cpp": 29.038879429921508, + "create_r1cs": 0.6561976410448551, + "save_results": 0.006647040136158466, + "get_r1cs_info": 0.0020793969742953777, + "groth16_setup": 15.312814712058753, + "export_verification_key": 1.1472203098237514, + "download_trusted_setup_file": 0.02056274702772498 }, + "file_size": 6775884, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", - "circuit_name": "circom-multiplier2", - "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", + "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", + "circuit_name": "Semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T02:01:17.976Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.847273S", - "compute_times": { - "prove": 5.660725159570575, - "total": 5.9144034665077925, - "queued": 0.696042, - "clean_up": 0.000287666916847229, - "file_setup": 0.2316605094820261, - "save_results": 0.0032375045120716095, - "generate_witness_c": 0.018273497000336647 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T21:36:56.776Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M47.874450S", + "compute_time_sec": 47.87445, + "compute_times": { + "total": 47.88067169301212, + "queued": 0.241228, + "clean_up": 0.08292657090350986, + "create_cpp": 1.0067430417984724, + "file_setup": 0.060509118251502514, + "compile_cpp": 28.465293834917247, + "create_r1cs": 0.6478999992832541, + "save_results": 0.00611361488699913, + "get_r1cs_info": 0.0020417659543454647, + "groth16_setup": 14.801113961264491, + "export_verification_key": 1.1754452609457076, + "download_trusted_setup_file": 1.6319761737249792 }, + "file_size": 6775882, + "uploaded_file_name": "Semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", - "circuit_name": "circom-multiplier2", - "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", + "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-15T01:53:10.576Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.825130S", - "compute_times": { - "prove": 5.63365101441741, - "total": 5.900212554261088, - "queued": 8.137106, - "clean_up": 0.00022866018116474152, - "file_setup": 0.25481966882944107, - "save_results": 0.0027084313333034515, - "generate_witness_c": 0.008522702381014824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T16:08:08.930Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.897920S", + "compute_time_sec": 2.89792, + "compute_times": { + "total": 0.9285368990385905, + "queued": 0.329843, + "create_cpp": 0.04405528900679201, + "file_setup": 0.8838426299626008 }, + "file_size": 24822850, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", - "circuit_name": "circom-multiplier2", - "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", + "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-15T01:53:04.491Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.143579S", - "compute_times": { - "prove": 5.624820232391357, - "total": 6.217369062826037, - "queued": 6.939374, - "clean_up": 0.0002844296395778656, - "file_setup": 0.577876154333353, - "save_results": 0.002981366589665413, - "generate_witness_c": 0.011145314201712608 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T16:06:51.116Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.346644S", + "compute_time_sec": 3.346644, + "compute_times": { + "total": 0.8087141560390592, + "queued": 0.273012, + "create_cpp": 0.01664800103753805, + "file_setup": 0.791186569724232 }, + "file_size": 24822792, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", - "circuit_name": "circom-multiplier2", - "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", + "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-15T01:53:00.837Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.826862S", - "compute_times": { - "prove": 5.6370560657233, - "total": 5.890984209254384, - "queued": 0.694293, - "clean_up": 0.00031204894185066223, - "file_setup": 0.23010724037885666, - "save_results": 0.0025510434061288834, - "generate_witness_c": 0.02062433399260044 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T16:02:01.839Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.017827S", + "compute_time_sec": 3.017827, + "compute_times": { + "total": 0.8431280389195308, + "queued": 0.475505, + "create_cpp": 0.03038154193200171, + "file_setup": 0.8116235659690574 }, + "file_size": 24822332, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", - "circuit_name": "circom-multiplier2", - "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", + "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:49.479Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.859514S", - "compute_times": { - "prove": 5.655713541433215, - "total": 5.953595075756311, - "queued": 0.693846, - "clean_up": 0.0002659261226654053, - "file_setup": 0.2661227900534868, - "save_results": 0.002224266529083252, - "generate_witness_c": 0.028907276690006256 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "date_created": "2024-02-14T16:00:40.414Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.297335S", + "compute_time_sec": 0.297335, + "compute_times": { + "total": 0.11431554611772299, + "queued": 0.292787, + "create_cpp": 0.014114855322986841, + "file_setup": 0.09887601295486093 + }, + "file_size": 1416811, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", - "circuit_name": "circom-multiplier2", - "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", + "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", + "circuit_name": "email", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:52.289Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.397579S", - "compute_times": { - "prove": 6.192587662488222, - "total": 6.465461192652583, - "queued": 9.005381, - "clean_up": 0.0004098862409591675, - "file_setup": 0.25517357513308525, - "save_results": 0.00757579505443573, - "generate_witness_c": 0.009418565779924393 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-14T15:56:00.936Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259954S", + "compute_time_sec": 0.259954, + "compute_times": { + "total": 0.12665929598733783, + "queued": 0.347236, + "create_cpp": 0.022852880065329373, + "file_setup": 0.10267018002923578 }, + "file_size": 1416809, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", - "circuit_name": "circom-multiplier2", - "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:47.933Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.415701S", - "compute_times": { - "prove": 6.212794356048107, - "total": 6.486022163182497, - "queued": 5.792826, - "clean_up": 0.0002670474350452423, - "file_setup": 0.2612623367458582, - "save_results": 0.002615245059132576, - "generate_witness_c": 0.008822411298751831 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-12T16:06:15.388Z", + "num_proofs": 3, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M19.113279S", + "compute_time_sec": 19.113279, + "compute_times": { + "total": 19.119710344821215, + "queued": 0.304946, + "clean_up": 0.05678791180253029, + "file_setup": 0.07778294384479523, + "create_r1cs": 0.6835691910237074, + "create_wasm": 1.5261333975940943, + "save_results": 0.01109285093843937, + "get_r1cs_info": 0.002000190317630768, + "groth16_setup": 15.561696534976363, + "export_verification_key": 1.1593163777142763, + "download_trusted_setup_file": 0.04080592654645443 }, + "file_size": 7081817, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", - "circuit_name": "circom-multiplier2", - "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", + "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:45.581Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.435592S", - "compute_times": { - "prove": 6.2201853562146425, - "total": 6.502878189086914, - "queued": 0.652189, - "clean_up": 0.00024727731943130493, - "file_setup": 0.2532728649675846, - "save_results": 0.0022235289216041565, - "generate_witness_c": 0.026703273877501488 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-12T00:14:36.781Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M21.300025S", + "compute_time_sec": 21.300025, + "compute_times": { + "total": 21.306767147034407, + "queued": 0.293132, + "clean_up": 0.2600619550794363, + "file_setup": 0.10280199348926544, + "create_r1cs": 0.7014120128005743, + "create_wasm": 1.4916918445378542, + "save_results": 0.018025938421487808, + "get_r1cs_info": 0.003770437091588974, + "groth16_setup": 15.514674112200737, + "export_verification_key": 1.5598135478794575, + "download_trusted_setup_file": 1.654065664857626 }, + "file_size": 7081723, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", - "circuit_name": "circom-multiplier2", - "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", + "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:29.960Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.484678S", - "compute_times": { - "prove": 6.229190753772855, - "total": 6.550728781148791, - "queued": 0.657459, - "clean_up": 0.0002836957573890686, - "file_setup": 0.2656614538282156, - "save_results": 0.0025900565087795258, - "generate_witness_c": 0.052704716101288795 - }, - "file_sizes": { - "proof": 710, - "total": 716, - "public": 6, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-12T00:12:50.904Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.311458S", + "compute_time_sec": 0.311458, + "compute_times": { + "total": 0.10177313163876534, + "queued": 0.288724, + "file_setup": 0.08924846164882183, + "create_wasm": 0.011913193389773369 }, + "file_size": 1806552, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", - "circuit_name": "circom-multiplier2", - "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", + "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T01:28:35.809Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.078477S", - "compute_times": { - "prove": 5.902009887620807, - "total": 6.183570355176926, - "queued": 6.122612, - "clean_up": 0.0002631358802318573, - "file_setup": 0.26931122317910194, - "save_results": 0.0026443954557180405, - "generate_witness_c": 0.009012777358293533 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-12T00:10:40.331Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.123483S", + "compute_time_sec": 0.123483, + "compute_times": { + "total": 0.10418374836444855, + "queued": 0.24469, + "file_setup": 0.08240349031984806, + "create_wasm": 0.02108948677778244 }, + "file_size": 907287, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", - "circuit_name": "circom-multiplier2", - "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-15T01:28:33.921Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.160198S", - "compute_times": { - "prove": 5.963096780702472, - "total": 6.232641618698835, - "queued": 0.650062, - "clean_up": 0.00031645968556404114, - "file_setup": 0.24531847052276134, - "save_results": 0.003001151606440544, - "generate_witness_c": 0.020530829206109047 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T19:51:12.364Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.887947S", + "compute_time_sec": 36.887947, + "compute_times": { + "total": 36.89425963815302, + "queued": 0.257023, + "clean_up": 0.04403446055948734, + "file_setup": 29.98060936667025, + "create_r1cs": 0.3443223936483264, + "create_wasm": 1.05553247500211, + "save_results": 0.006293457001447678, + "get_r1cs_info": 0.000581374391913414, + "groth16_setup": 4.288356346078217, + "export_verification_key": 1.171438716351986, + "download_trusted_setup_file": 0.002127542160451412 }, + "file_size": 4238536, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", - "circuit_name": "circom-multiplier2", - "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-15T01:25:52.815Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.175574S", - "compute_times": { - "prove": 5.9231167789548635, - "total": 6.24663576297462, - "queued": 0.698281, - "clean_up": 0.0002771075814962387, - "file_setup": 0.29058355651795864, - "save_results": 0.002341846004128456, - "generate_witness_c": 0.029908066615462303 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T19:35:47.834Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.242908S", + "compute_time_sec": 7.242908, + "compute_times": { + "total": 7.252888669259846, + "queued": 0.315189, + "clean_up": 0.24440924916416407, + "file_setup": 0.10320598538964987, + "create_r1cs": 0.3493071682751179, + "create_wasm": 1.0848499182611704, + "save_results": 0.006677108816802502, + "get_r1cs_info": 0.0006677061319351196, + "groth16_setup": 4.277557077817619, + "export_verification_key": 1.1795741403475404, + "download_trusted_setup_file": 0.002051391638815403 }, + "file_size": 4238546, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", - "circuit_name": "circom-multiplier2", - "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-15T01:24:19.052Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.115018S", - "compute_times": { - "prove": 5.91022140905261, - "total": 6.194757051765919, - "queued": 0.684503, - "clean_up": 0.00032767653465270996, - "file_setup": 0.2622530199587345, - "save_results": 0.003049323335289955, - "generate_witness_c": 0.018631482496857643 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T19:32:24.516Z", + "num_proofs": 3, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.502453S", + "compute_time_sec": 8.502453, + "compute_times": { + "total": 8.5082988422364, + "queued": 0.290802, + "clean_up": 0.24006511457264423, + "file_setup": 0.10109577886760235, + "create_r1cs": 0.374081764370203, + "create_wasm": 1.0719998348504305, + "save_results": 0.006332419812679291, + "get_r1cs_info": 0.0005895020440220833, + "groth16_setup": 4.342386241070926, + "export_verification_key": 1.097628473304212, + "download_trusted_setup_file": 1.2735503260046244 }, + "file_size": 4238535, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", - "circuit_name": "circom-multiplier2", - "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", + "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-15T01:21:13.615Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.117480S", - "compute_times": { - "prove": 5.914364781230688, - "total": 6.191053604707122, - "queued": 15.514631, - "clean_up": 0.00021071918308734894, - "file_setup": 0.24732953310012817, - "save_results": 0.0019527468830347061, - "generate_witness_c": 0.026822445914149284 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T19:14:59.465Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.379245S", + "compute_time_sec": 0.379245, + "compute_times": { + "total": 0.10352941323071718, + "queued": 0.225145, + "file_setup": 0.0858859121799469, + "create_wasm": 0.016125368885695934 }, + "file_size": 1804057, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "142576", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:18 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", - "body": "", - "status": 200, - "response": [ + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, { - "proof_id": "7206a741-eb14-4b4d-9df8-34d4573a671c", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", + "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-16T20:50:03.892Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.157652S", - "compute_times": { - "prove": 6.974535636603832, - "total": 7.280014621093869, - "queued": 0.699272, - "clean_up": 0.0002770274877548218, - "file_setup": 0.29124958999454975, - "save_results": 0.0023470818996429443, - "generate_witness_c": 0.011234406381845474 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T19:09:18.022Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.300239S", + "compute_time_sec": 0.300239, + "compute_times": { + "total": 0.09953181259334087, + "queued": 0.267199, + "file_setup": 0.08270685467869043, + "create_wasm": 0.01634138822555542 }, + "file_size": 1803953, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "0e78c891-40bf-42e3-bd3f-9ed15ab294f0", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", + "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-16T18:55:20.740Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.626586S", - "compute_times": { - "prove": 6.398727452382445, - "total": 6.695585208013654, - "queued": 0.700341, - "clean_up": 0.00033893808722496033, - "file_setup": 0.2777874078601599, - "save_results": 0.003003843128681183, - "generate_witness_c": 0.015339698642492294 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.18", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4,5,7-31,33-63,68-95,97-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,6,32,64-67,96", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-e16b8d72-c644-fe31-8ecb-7760d3065b46", - "driver": "525.125.06", - "serial": "1325021030241", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T19:00:54.135Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179718S", + "compute_time_sec": 0.179718, + "compute_times": { + "total": 0.10090719535946846, + "queued": 0.251874, + "file_setup": 0.08464208338409662, + "create_wasm": 0.01588864903897047 }, + "file_size": 1803921, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "9d5192cc-1409-4d2f-9396-41caf8f29fe7", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", + "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-16T18:52:27.137Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.899607S", - "compute_times": { - "prove": 6.709071487188339, - "total": 6.967682661488652, - "queued": 0.743436, - "clean_up": 0.00023915618658065796, - "file_setup": 0.2436655443161726, - "save_results": 0.0022156648337841034, - "generate_witness_c": 0.012174580246210098 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T18:45:44.857Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.269437S", + "compute_time_sec": 0.269437, + "compute_times": { + "total": 0.10417102556675673, + "queued": 0.229957, + "file_setup": 0.0870280647650361, + "create_wasm": 0.016761316917836666 }, + "file_size": 1803870, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "c67272e2-9303-477b-8334-654e9254a644", - "circuit_name": "circom", - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", + "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", + "circuit_name": "hashchecker", "circuit_type": "circom", - "date_created": "2024-01-16T18:42:04.008Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.841297S", - "compute_times": { - "prove": 6.633739210665226, - "total": 6.908717390149832, - "queued": 19.305507, - "clean_up": 0.0003377869725227356, - "file_setup": 0.2361250314861536, - "save_results": 0.003197876736521721, - "generate_witness_c": 0.034953245893120766 - }, - "file_sizes": { - "proof": 707, - "total": 716, - "public": 9, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T18:44:01.720Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119612S", + "compute_time_sec": 0.119612, + "compute_times": { + "total": 0.07268805895000696, + "queued": 0.258881, + "file_setup": 0.056701790541410446, + "create_wasm": 0.015431713312864304 }, + "file_size": 905050, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "03724588-b4a1-43c0-850b-098764b7950d", - "circuit_name": "circom-multiplier2", - "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.482Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.312271S", - "compute_times": { - "prove": 0.3462319001555443, - "total": 2.3874263800680637, - "queued": 12.962683, - "clean_up": 0.0004112236201763153, - "file_setup": 0.7245128508657217, - "save_results": 0.1826412994414568, - "generate_witness_c": 1.133329700678587 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-4,6-31,36-68,70-95,100-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "5,32-35,69,96-99", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T18:10:12.579Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.281287S", + "compute_time_sec": 0.281287, + "compute_times": { + "total": 0.11563524045050144, + "queued": 0.305225, + "file_setup": 0.10166966635733843, + "create_wasm": 0.01360108982771635 }, + "file_size": 1805983, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "91bd2c4c-c595-4b96-8575-029e389492ca", - "circuit_name": "circom-multiplier2", - "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", + "circuit_name": "semaphore", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:37.101Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.429888S", - "compute_times": { - "prove": 0.6376615725457668, - "total": 2.5025347154587507, - "queued": 8.956946, - "clean_up": 0.0003598276525735855, - "file_setup": 0.7227823697030544, - "save_results": 0.18274421244859695, - "generate_witness_c": 0.9586518034338951 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-02-11T18:09:21.301Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129729S", + "compute_time_sec": 0.129729, + "compute_times": { + "total": 0.0997195653617382, + "queued": 0.324444, + "file_setup": 0.08716154284775257, + "create_wasm": 0.01209271140396595 }, + "file_size": 1805970, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "81720f66-b35d-4928-9cb3-0ab9822e35c6", - "circuit_name": "circom-multiplier2", - "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", + "circuit_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:34.090Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.293048S", - "compute_times": { - "prove": 0.3393626883625984, - "total": 2.3659547176212072, - "queued": 7.751341, - "clean_up": 0.00032026320695877075, - "file_setup": 0.7235073558986187, - "save_results": 0.18249027617275715, - "generate_witness_c": 1.1200690548866987 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T22:08:05.475Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.909178S", + "compute_time_sec": 6.909178, + "compute_times": { + "total": 6.960774548351765, + "queued": 24.976953, + "clean_up": 0.005624564364552498, + "create_cpp": 0.04884001612663269, + "file_setup": 0.23423208110034466, + "compile_cpp": 4.481184393167496, + "create_r1cs": 0.019831592217087746, + "save_results": 0.003675384446978569, + "get_r1cs_info": 0.0003577694296836853, + "groth16_setup": 1.123554177582264, + "export_verification_key": 1.0419799592345953, + "download_trusted_setup_file": 0.0011759810149669647 }, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "0c041b4a-cb98-4972-b274-18350f453414", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", "circuit_name": "circom-multiplier2", - "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:33.577Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.087576S", - "compute_times": { - "prove": 0.40940901823341846, - "total": 3.1577404141426086, - "queued": 1.195321, - "clean_up": 0.00036599859595298767, - "file_setup": 0.8494507372379303, - "save_results": 0.18248247168958187, - "generate_witness_c": 1.7156950328499079 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:04.723Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.286136S", + "compute_time_sec": 7.286136, + "compute_times": { + "total": 7.340654090046883, + "queued": 38.074183, + "clean_up": 0.0009148658718913794, + "create_cpp": 0.04542793915607035, + "file_setup": 0.23204711498692632, + "compile_cpp": 4.680376983946189, + "create_r1cs": 0.008409275906160474, + "save_results": 0.0033105541951954365, + "get_r1cs_info": 0.0003685750998556614, + "groth16_setup": 1.178457418922335, + "export_verification_key": 1.1900099229533225, + "download_trusted_setup_file": 0.000988946994766593 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a0cd0c31-178d-40ab-befd-56240cfac47b", + "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", "circuit_name": "circom-multiplier2", - "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:36.311Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.092256S", - "compute_times": { - "prove": 0.36259699426591396, - "total": 2.1656957883387804, - "queued": 5.830407, - "clean_up": 0.0003967471420764923, - "file_setup": 0.6623526718467474, - "save_results": 0.18246298655867577, - "generate_witness_c": 0.9574985150247812 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:04.122Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.463866S", + "compute_time_sec": 7.463866, + "compute_times": { + "total": 7.523294999962673, + "queued": 37.680306, + "clean_up": 0.0007766569033265114, + "create_cpp": 0.04011468309909105, + "file_setup": 0.2518389639444649, + "compile_cpp": 4.806413288926706, + "create_r1cs": 0.008677670964971185, + "save_results": 0.0031781040597707033, + "get_r1cs_info": 0.00039803609251976013, + "groth16_setup": 1.1818688770290464, + "export_verification_key": 1.2287184570450336, + "download_trusted_setup_file": 0.0010086549445986748 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7a40011c-8526-4c26-a0ac-d9666885eaf0", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", "circuit_name": "circom-multiplier2", - "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:34.880Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.002676S", - "compute_times": { - "prove": 0.40854700468480587, - "total": 3.068965345621109, - "queued": 2.266619, - "clean_up": 0.00030806101858615875, - "file_setup": 0.7846233639866114, - "save_results": 0.18261023424565792, - "generate_witness_c": 1.6924956049770117 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:03.780Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.480065S", + "compute_time_sec": 7.480065, + "compute_times": { + "total": 7.537460318999365, + "queued": 33.511443, + "clean_up": 0.0008328610565513372, + "create_cpp": 0.03915940411388874, + "file_setup": 0.2353337057866156, + "compile_cpp": 4.872832479886711, + "create_r1cs": 0.009635194204747677, + "save_results": 0.003330645151436329, + "get_r1cs_info": 0.00040896888822317123, + "groth16_setup": 1.243939558044076, + "export_verification_key": 1.1305532888509333, + "download_trusted_setup_file": 0.0010688810143619776 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c3ba6384-7192-4ae6-8b0e-98ce27631011", + "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", "circuit_name": "circom-multiplier2", - "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:30.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.202003S", - "compute_times": { - "prove": 0.46431767754256725, - "total": 3.2886892426759005, - "queued": 1.201985, - "clean_up": 0.0002929028123617172, - "file_setup": 0.8507254235446453, - "save_results": 0.18203313648700714, - "generate_witness_c": 1.7910168208181858 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:03.625Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.465790S", + "compute_time_sec": 7.46579, + "compute_times": { + "total": 7.517380404053256, + "queued": 32.017107, + "clean_up": 0.000841652974486351, + "create_cpp": 0.04037469998002052, + "file_setup": 0.21061871387064457, + "compile_cpp": 4.7562680810224265, + "create_r1cs": 0.008348200935870409, + "save_results": 0.0034994680900126696, + "get_r1cs_info": 0.000424881000071764, + "groth16_setup": 1.2855071290396154, + "export_verification_key": 1.210078198928386, + "download_trusted_setup_file": 0.0010237020906060934 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "ab24f58c-fd8c-4d6b-afb9-6fe8bc786b4a", + "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", "circuit_name": "circom-multiplier2", - "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", "circuit_type": "circom", - "date_created": "2024-01-15T13:29:09.850Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.165555S", - "compute_times": { - "prove": 0.39277893863618374, - "total": 3.2604714408516884, - "queued": 1.166733, - "clean_up": 0.000250350683927536, - "file_setup": 0.9157394412904978, - "save_results": 0.1821883488446474, - "generate_witness_c": 1.7691551242023706 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5190.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2-4,6-31,35-64,66-68,70-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,5,32-34,65,69,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A6000", - "uuid": "GPU-bfa26f0f-c563-4d7b-2157-ca283ea42f01", - "driver": "525.125.06", - "serial": "1325121022674", - "memory_total_MiB": 49140 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:02.471Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.143051S", + "compute_time_sec": 7.143051, + "compute_times": { + "total": 7.1952535710297525, + "queued": 32.071917, + "clean_up": 0.0009264149703085423, + "create_cpp": 0.037378153996542096, + "file_setup": 0.22291689622215927, + "compile_cpp": 4.493842450901866, + "create_r1cs": 0.00868003792129457, + "save_results": 0.003541851881891489, + "get_r1cs_info": 0.0003536711446940899, + "groth16_setup": 1.202652727952227, + "export_verification_key": 1.2237500881310552, + "download_trusted_setup_file": 0.0009900499135255814 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3648dc8e-815c-4afa-9a55-d8ef94c94720", + "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", "circuit_name": "circom-multiplier2", - "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", "circuit_type": "circom", - "date_created": "2024-01-15T12:58:03.819Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.952523S", - "compute_times": { - "prove": 5.78664686344564, - "total": 6.02712868899107, - "queued": 19.881766, - "clean_up": 0.000322168692946434, - "file_setup": 0.22792908176779747, - "save_results": 0.0026133283972740173, - "generate_witness_c": 0.009340517222881317 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,7-31,34-64,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-6,32,33,65-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:02.067Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.529084S", + "compute_time_sec": 7.529084, + "compute_times": { + "total": 7.584393135970458, + "queued": 30.973415, + "clean_up": 0.00083908811211586, + "create_cpp": 0.04151515499688685, + "file_setup": 0.23193758307024837, + "compile_cpp": 4.9528708211146295, + "create_r1cs": 0.008621205808594823, + "save_results": 0.0033709488343447447, + "get_r1cs_info": 0.0004654980730265379, + "groth16_setup": 1.127253663027659, + "export_verification_key": 1.2159365471452475, + "download_trusted_setup_file": 0.0011964899022132158 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0593535e-0857-4dfc-8f4d-2b151e5f7bad", + "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", "circuit_name": "circom-multiplier2", - "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", "circuit_type": "circom", - "date_created": "2024-01-15T12:58:00.883Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.075331S", - "compute_times": { - "prove": 5.884085742756724, - "total": 6.148683849722147, - "queued": 15.626844, - "clean_up": 0.0003361683338880539, - "file_setup": 0.25031704641878605, - "save_results": 0.0027868077158927917, - "generate_witness_c": 0.010888265445828438 - }, - "file_sizes": { - "proof": 709, - "total": 715, - "public": 6, - "total_gb": 7.15e-7, - "total_mb": 0.000715 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:01.892Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.968285S", + "compute_time_sec": 6.968285, + "compute_times": { + "total": 7.020302023971453, + "queued": 24.589933, + "clean_up": 0.0007189519237726927, + "create_cpp": 0.039091327926144004, + "file_setup": 0.22075876407325268, + "compile_cpp": 4.478542160009965, + "create_r1cs": 0.008031236007809639, + "save_results": 0.0033459621481597424, + "get_r1cs_info": 0.00031445594504475594, + "groth16_setup": 1.1534762841183692, + "export_verification_key": 1.1147591178305447, + "download_trusted_setup_file": 0.000989275984466076 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1a60be26-4e51-4ac6-befd-db89c42c6f47", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", "circuit_name": "circom-multiplier2", - "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:55.709Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.347161S", - "compute_times": { - "prove": 6.171584198251367, - "total": 6.416391229256988, - "queued": 13.397523, - "clean_up": 0.00026652775704860687, - "file_setup": 0.23340564966201782, - "save_results": 0.0024722814559936523, - "generate_witness_c": 0.008305234834551811 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:01.304Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.959223S", + "compute_time_sec": 6.959223, + "compute_times": { + "total": 7.0112608759664, + "queued": 17.111301, + "clean_up": 0.0008735461160540581, + "create_cpp": 0.038755591958761215, + "file_setup": 0.24885913101024926, + "compile_cpp": 4.36299676517956, + "create_r1cs": 0.00803148397244513, + "save_results": 0.01730395178310573, + "get_r1cs_info": 0.0003368018660694361, + "groth16_setup": 1.1180529070552438, + "export_verification_key": 1.2148506320081651, + "download_trusted_setup_file": 0.0009600170888006687 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e06d8295-f579-452d-aff6-58b1733c3b00", + "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", "circuit_name": "circom-multiplier2", - "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:48.596Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.389301S", - "compute_times": { - "prove": 6.184801682829857, - "total": 6.4623388685286045, - "queued": 13.056683, - "clean_up": 0.00022029876708984375, - "file_setup": 0.2468203753232956, - "save_results": 0.002211831510066986, - "generate_witness_c": 0.027915021404623985 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.22", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-8123ac87-4c84-a9e9-8b99-054309b65f6c", - "driver": "525.125.06", - "serial": "1323821036088", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:01.000Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.949886S", + "compute_time_sec": 6.949886, + "compute_times": { + "total": 7.000236368039623, + "queued": 1.134467, + "clean_up": 0.0007571689784526825, + "create_cpp": 0.03813181212171912, + "file_setup": 0.39067235100083053, + "compile_cpp": 4.379259012872353, + "create_r1cs": 0.008045257069170475, + "save_results": 0.037871989188715816, + "get_r1cs_info": 0.0003408279735594988, + "groth16_setup": 1.0681434420403093, + "export_verification_key": 1.0757975298911333, + "download_trusted_setup_file": 0.0009711629245430231 }, + "file_size": 225416, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "2e4edf7e-5109-43cf-a48d-4b4fdfcd2e19", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", "circuit_name": "circom-multiplier2", - "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:34.540Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M03.935803S", - "compute_times": { - "prove": 3.0700035598129034, - "total": 4.0028952937573195, - "queued": 0.33355, - "clean_up": 0.0002639107406139374, - "file_setup": 0.27034700475633144, - "save_results": 0.06622319296002388, - "generate_witness_c": 0.5958553366363049 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,6,8,10-31,35-63,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-5,7,9,32-34,64-68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-31T18:15:00.922Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.086134S", + "compute_time_sec": 7.086134, + "compute_times": { + "total": 7.139805332990363, + "queued": 9.283956, + "clean_up": 0.0007637820672243834, + "create_cpp": 0.040777466958388686, + "file_setup": 0.22701866691932082, + "compile_cpp": 4.5694026600103825, + "create_r1cs": 0.008620185079053044, + "save_results": 0.009906678926199675, + "get_r1cs_info": 0.0005167280323803425, + "groth16_setup": 1.0815790109336376, + "export_verification_key": 1.1996698069851846, + "download_trusted_setup_file": 0.0012109570670872927 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e119fb54-5449-4a01-ab87-b45ef71643db", - "circuit_name": "circom-multiplier2", - "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", + "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:29.773Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.856164S", - "compute_times": { - "prove": 5.639464415609837, - "total": 5.929233264178038, - "queued": 0.650797, - "clean_up": 0.00027068890631198883, - "file_setup": 0.25932174175977707, - "save_results": 0.0027653388679027557, - "generate_witness_c": 0.02706645056605339 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-17T00:39:38.679Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.550840S", + "compute_time_sec": 7.55084, + "compute_times": { + "total": 7.629153113812208, + "queued": 15.012343, + "clean_up": 0.011455003172159195, + "create_cpp": 0.054636724293231964, + "file_setup": 0.31103159487247467, + "compile_cpp": 4.492543734610081, + "create_r1cs": 0.0336969792842865, + "save_results": 0.005911210551857948, + "get_r1cs_info": 0.0004208497703075409, + "groth16_setup": 1.3556907046586275, + "export_verification_key": 1.3620027527213097, + "download_trusted_setup_file": 0.0013344846665859222 }, + "file_size": 1650629, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "d4611aeb-4705-4373-951c-ba4c1e0329b5", + "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", "circuit_name": "circom-multiplier2", - "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:24.790Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M02.340675S", - "compute_times": { - "prove": 1.4024820234626532, - "total": 2.4250366389751434, - "queued": 0.269107, - "clean_up": 0.0002933405339717865, - "file_setup": 0.3153865169733763, - "save_results": 0.06680999137461185, - "generate_witness_c": 0.6396786384284496 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.47", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,2,5,6,8,10-31,35-63,66,69,70,72,74-95,99-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1,3,4,7,9,32-34,64,65,67,68,71,73,96-98", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-d8160060-7665-694b-2fae-0222ae6d41b2", - "driver": "525.125.06", - "serial": "1322721018312", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T18:27:15.352Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.078009S", + "compute_time_sec": 8.078009, + "compute_times": { + "total": 8.165162647143006, + "queued": 1.05453, + "clean_up": 0.001927914097905159, + "create_cpp": 0.05209779180586338, + "file_setup": 0.2735048495233059, + "compile_cpp": 4.798323042690754, + "create_r1cs": 0.018848145380616188, + "save_results": 0.00658784992992878, + "get_r1cs_info": 0.0008379388600587845, + "groth16_setup": 1.6222364120185375, + "export_verification_key": 1.38789046369493, + "download_trusted_setup_file": 0.0024561677128076553 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "4f8ff74c-1051-44a3-ab0c-f4a6284bbf64", + "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", "circuit_name": "circom-multiplier2", - "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:20.359Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.889013S", - "compute_times": { - "prove": 5.641947815194726, - "total": 5.964788755401969, - "queued": 0.707221, - "clean_up": 0.00029845722019672394, - "file_setup": 0.2756399307399988, - "save_results": 0.003031056374311447, - "generate_witness_c": 0.04360153712332249 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T18:27:14.083Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.904210S", + "compute_time_sec": 7.90421, + "compute_times": { + "total": 7.990685863420367, + "queued": 1.148767, + "clean_up": 0.0017737876623868942, + "create_cpp": 0.04771621339023113, + "file_setup": 0.2793459966778755, + "compile_cpp": 4.619792276993394, + "create_r1cs": 0.00932052917778492, + "save_results": 0.006265198811888695, + "get_r1cs_info": 0.0004815235733985901, + "groth16_setup": 1.4397705420851707, + "export_verification_key": 1.584412407130003, + "download_trusted_setup_file": 0.0015385709702968597 }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d4ed1066-64bb-4f8b-a04c-03e87ba067d0", + "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", "circuit_name": "circom-multiplier2", - "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:24.129Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.822988S", - "compute_times": { - "prove": 5.622058680281043, - "total": 5.897718669846654, - "queued": 7.598676, - "clean_up": 0.00030495598912239075, - "file_setup": 0.26278817281126976, - "save_results": 0.0033362358808517456, - "generate_witness_c": 0.008939847350120544 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T18:27:14.042Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.840020S", + "compute_time_sec": 7.84002, + "compute_times": { + "total": 7.916158145293593, + "queued": 1.103501, + "clean_up": 0.001588582992553711, + "create_cpp": 0.05656779184937477, + "file_setup": 0.2618618682026863, + "compile_cpp": 4.655229337513447, + "create_r1cs": 0.010038148611783981, + "save_results": 0.005318811163306236, + "get_r1cs_info": 0.0004153270274400711, + "groth16_setup": 1.3863549754023552, + "export_verification_key": 1.5370171926915646, + "download_trusted_setup_file": 0.0013035386800765991 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "62e6a199-072a-4fbb-bd75-7d5ae26c3bf0", + "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", "circuit_name": "circom-multiplier2", - "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:23.768Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.857713S", - "compute_times": { - "prove": 5.647087793797255, - "total": 5.9318443313241005, - "queued": 0.709273, - "clean_up": 0.000293998047709465, - "file_setup": 0.259655237197876, - "save_results": 0.0029127690941095352, - "generate_witness_c": 0.021628186106681824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T18:26:26.125Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.895332S", + "compute_time_sec": 7.895332, + "compute_times": { + "total": 7.985105384141207, + "queued": 1.097711, + "clean_up": 0.0017092283815145493, + "create_cpp": 0.05560790188610554, + "file_setup": 0.27359912544488907, + "compile_cpp": 4.84467164054513, + "create_r1cs": 0.01020035706460476, + "save_results": 0.00596289336681366, + "get_r1cs_info": 0.0003344062715768814, + "groth16_setup": 1.3516457378864288, + "export_verification_key": 1.4395998753607273, + "download_trusted_setup_file": 0.001010250300168991 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "4a8ec462-1b17-4478-ab4d-daec1c1d19e0", + "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", "circuit_name": "circom-multiplier2", - "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:39.549Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.830061S", - "compute_times": { - "prove": 5.631390610709786, - "total": 5.904656020924449, - "queued": 1.982144, - "clean_up": 0.00028679706156253815, - "file_setup": 0.2506247963756323, - "save_results": 0.0030198898166418076, - "generate_witness_c": 0.018950100988149643 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T18:26:25.495Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.731496S", + "compute_time_sec": 7.731496, + "compute_times": { + "total": 7.827601557597518, + "queued": 1.26957, + "clean_up": 0.002000821754336357, + "create_cpp": 0.04701829329133034, + "file_setup": 0.2621183265000582, + "compile_cpp": 4.725081695243716, + "create_r1cs": 0.011297162622213364, + "save_results": 0.005976244807243347, + "get_r1cs_info": 0.0006684809923171997, + "groth16_setup": 1.4255939163267612, + "export_verification_key": 1.3449707236140966, + "download_trusted_setup_file": 0.0024210847914218903 }, + "file_size": 225430, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "55636021-bab1-4e5c-a552-271ecd3bca46", + "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", "circuit_name": "circom-multiplier2", - "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:30.608Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.833596S", - "compute_times": { - "prove": 5.6385393515229225, - "total": 5.9040695410221815, - "queued": 0.701332, - "clean_up": 0.00033533573150634766, - "file_setup": 0.24379334598779678, - "save_results": 0.0030993279069662094, - "generate_witness_c": 0.017941521480679512 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:31:55.438Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.586921S", + "compute_time_sec": 7.586921, + "compute_times": { + "total": 7.663304785266519, + "queued": 1.132337, + "clean_up": 0.0015752892941236496, + "create_cpp": 0.049899373203516006, + "file_setup": 0.22959892638027668, + "compile_cpp": 4.780468979850411, + "create_r1cs": 0.017419403418898582, + "save_results": 0.0054653361439704895, + "get_r1cs_info": 0.0007719267159700394, + "groth16_setup": 1.2644738126546144, + "export_verification_key": 1.310561291873455, + "download_trusted_setup_file": 0.0026084203273057938 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6cdf4182-8844-4c68-b6cd-332129204371", + "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", "circuit_name": "circom-multiplier2", - "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", "circuit_type": "circom", - "date_created": "2024-01-15T02:01:17.976Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.847273S", - "compute_times": { - "prove": 5.660725159570575, - "total": 5.9144034665077925, - "queued": 0.696042, - "clean_up": 0.000287666916847229, - "file_setup": 0.2316605094820261, - "save_results": 0.0032375045120716095, - "generate_witness_c": 0.018273497000336647 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:27:56.593Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.801205S", + "compute_time_sec": 7.801205, + "compute_times": { + "total": 7.875548103824258, + "queued": 1.098988, + "clean_up": 0.0017300937324762344, + "create_cpp": 0.05396237596869469, + "file_setup": 0.2385635208338499, + "compile_cpp": 4.6406055726110935, + "create_r1cs": 0.016733812168240547, + "save_results": 0.004983868449926376, + "get_r1cs_info": 0.0006270240992307663, + "groth16_setup": 1.3868273310363293, + "export_verification_key": 1.528601661324501, + "download_trusted_setup_file": 0.002437632530927658 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "fc45e68e-ccfe-43ab-87c1-f3114dada607", + "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", "circuit_name": "circom-multiplier2", - "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", "circuit_type": "circom", - "date_created": "2024-01-15T01:53:10.576Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.825130S", - "compute_times": { - "prove": 5.63365101441741, - "total": 5.900212554261088, - "queued": 8.137106, - "clean_up": 0.00022866018116474152, - "file_setup": 0.25481966882944107, - "save_results": 0.0027084313333034515, - "generate_witness_c": 0.008522702381014824 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:27:42.490Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.531215S", + "compute_time_sec": 7.531215, + "compute_times": { + "total": 7.6094263680279255, + "queued": 1.133009, + "clean_up": 0.001713564619421959, + "create_cpp": 0.04710027575492859, + "file_setup": 0.23515290580689907, + "compile_cpp": 4.696669522672892, + "create_r1cs": 0.017408769577741623, + "save_results": 0.005742281675338745, + "get_r1cs_info": 0.0006468463689088821, + "groth16_setup": 1.3201909139752388, + "export_verification_key": 1.2817781921476126, + "download_trusted_setup_file": 0.0024629440158605576 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "93f27b36-de2d-4251-b7d6-1c9fccca2f06", + "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", "circuit_name": "circom-multiplier2", - "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", "circuit_type": "circom", - "date_created": "2024-01-15T01:53:04.491Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.143579S", - "compute_times": { - "prove": 5.624820232391357, - "total": 6.217369062826037, - "queued": 6.939374, - "clean_up": 0.0002844296395778656, - "file_setup": 0.577876154333353, - "save_results": 0.002981366589665413, - "generate_witness_c": 0.011145314201712608 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:27:26.943Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.713700S", + "compute_time_sec": 7.7137, + "compute_times": { + "total": 7.7915890868753195, + "queued": 1.17603, + "clean_up": 0.001603648066520691, + "create_cpp": 0.04629753343760967, + "file_setup": 0.2314635906368494, + "compile_cpp": 4.7291872799396515, + "create_r1cs": 0.016094380989670753, + "save_results": 0.005229661241173744, + "get_r1cs_info": 0.0004699360579252243, + "groth16_setup": 1.3847032357007265, + "export_verification_key": 1.3747948426753283, + "download_trusted_setup_file": 0.0012649912387132645 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6c5ed6a4-de8d-4cde-9d04-844c0fae1903", + "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", "circuit_name": "circom-multiplier2", - "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", "circuit_type": "circom", - "date_created": "2024-01-15T01:53:00.837Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.826862S", - "compute_times": { - "prove": 5.6370560657233, - "total": 5.890984209254384, - "queued": 0.694293, - "clean_up": 0.00031204894185066223, - "file_setup": 0.23010724037885666, - "save_results": 0.0025510434061288834, - "generate_witness_c": 0.02062433399260044 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:24:25.201Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.782942S", + "compute_time_sec": 7.782942, + "compute_times": { + "total": 7.858149649575353, + "queued": 1.192228, + "clean_up": 0.0016285404562950134, + "create_cpp": 0.04751185514032841, + "file_setup": 0.22963756695389748, + "compile_cpp": 4.810557749122381, + "create_r1cs": 0.011191016063094139, + "save_results": 0.0053499843925237656, + "get_r1cs_info": 0.0006842408329248428, + "groth16_setup": 1.305834548547864, + "export_verification_key": 1.4425791203975677, + "download_trusted_setup_file": 0.0027836784720420837 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "46048553-2c00-40bc-ae69-76f68d26286e", + "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", "circuit_name": "circom-multiplier2", - "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:49.479Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M05.859514S", - "compute_times": { - "prove": 5.655713541433215, - "total": 5.953595075756311, - "queued": 0.693846, - "clean_up": 0.0002659261226654053, - "file_setup": 0.2661227900534868, - "save_results": 0.002224266529083252, - "generate_witness_c": 0.028907276690006256 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.16", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,1,7-31,34-65,67,71-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2-6,32,33,66,68-70,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-79117d4d-91b9-eb61-753d-b86432cca7e8", - "driver": "525.125.06", - "serial": "1325121130125", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:24:08.702Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.712942S", + "compute_time_sec": 7.712942, + "compute_times": { + "total": 7.788311326876283, + "queued": 1.222064, + "clean_up": 0.0015964601188898087, + "create_cpp": 0.048168059438467026, + "file_setup": 0.24294559471309185, + "compile_cpp": 4.80493832193315, + "create_r1cs": 0.01979799196124077, + "save_results": 0.005484664812684059, + "get_r1cs_info": 0.0007523689419031143, + "groth16_setup": 1.360052939504385, + "export_verification_key": 1.3015912808477879, + "download_trusted_setup_file": 0.00248897448182106 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "73c4b7e5-e5e8-42de-b0ee-ca5b596c012d", + "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", "circuit_name": "circom-multiplier2", - "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:52.289Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.397579S", - "compute_times": { - "prove": 6.192587662488222, - "total": 6.465461192652583, - "queued": 9.005381, - "clean_up": 0.0004098862409591675, - "file_setup": 0.25517357513308525, - "save_results": 0.00757579505443573, - "generate_witness_c": 0.009418565779924393 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:23:55.055Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.504987S", + "compute_time_sec": 7.504987, + "compute_times": { + "total": 7.582275737076998, + "queued": 1.111203, + "clean_up": 0.00203564390540123, + "create_cpp": 0.04740658402442932, + "file_setup": 0.2326672412455082, + "compile_cpp": 4.5253369603306055, + "create_r1cs": 0.015371032059192657, + "save_results": 0.0063849929720163345, + "get_r1cs_info": 0.0003808550536632538, + "groth16_setup": 1.3611575067043304, + "export_verification_key": 1.3897777944803238, + "download_trusted_setup_file": 0.0012431517243385315 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "be7990f4-a06a-4dae-873d-4c331b6c6368", + "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", "circuit_name": "circom-multiplier2", - "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:47.933Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.415701S", - "compute_times": { - "prove": 6.212794356048107, - "total": 6.486022163182497, - "queued": 5.792826, - "clean_up": 0.0002670474350452423, - "file_setup": 0.2612623367458582, - "save_results": 0.002615245059132576, - "generate_witness_c": 0.008822411298751831 - }, - "file_sizes": { - "proof": 705, - "total": 711, - "public": 6, - "total_gb": 7.11e-7, - "total_mb": 0.000711 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:23:31.285Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.404341S", + "compute_time_sec": 7.404341, + "compute_times": { + "total": 7.481531243771315, + "queued": 1.164668, + "clean_up": 0.001758268103003502, + "create_cpp": 0.054409828037023544, + "file_setup": 0.228825144469738, + "compile_cpp": 4.561935219913721, + "create_r1cs": 0.01824786141514778, + "save_results": 0.005484595894813538, + "get_r1cs_info": 0.000652119517326355, + "groth16_setup": 1.3237749002873898, + "export_verification_key": 1.2835038527846336, + "download_trusted_setup_file": 0.0024792589247226715 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "26f07d1b-4740-4410-9319-38c99c80c474", + "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", "circuit_name": "circom-multiplier2", - "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:45.581Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.435592S", - "compute_times": { - "prove": 6.2201853562146425, - "total": 6.502878189086914, - "queued": 0.652189, - "clean_up": 0.00024727731943130493, - "file_setup": 0.2532728649675846, - "save_results": 0.0022235289216041565, - "generate_witness_c": 0.026703273877501488 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:23:11.647Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.506243S", + "compute_time_sec": 7.506243, + "compute_times": { + "total": 7.5825384352356195, + "queued": 1.123872, + "clean_up": 0.0020943544805049896, + "create_cpp": 0.055948369204998016, + "file_setup": 0.2336848620325327, + "compile_cpp": 4.572340337559581, + "create_r1cs": 0.011611813679337502, + "save_results": 0.006018133834004402, + "get_r1cs_info": 0.000943819060921669, + "groth16_setup": 1.345878291875124, + "export_verification_key": 1.3496504835784435, + "download_trusted_setup_file": 0.003846803680062294 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "f0e9a8ef-a9f7-45a1-9d24-25822ff56d47", + "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", "circuit_name": "circom-multiplier2", - "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:29.960Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.484678S", - "compute_times": { - "prove": 6.229190753772855, - "total": 6.550728781148791, - "queued": 0.657459, - "clean_up": 0.0002836957573890686, - "file_setup": 0.2656614538282156, - "save_results": 0.0025900565087795258, - "generate_witness_c": 0.052704716101288795 - }, - "file_sizes": { - "proof": 710, - "total": 716, - "public": 6, - "total_gb": 7.16e-7, - "total_mb": 0.000716 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.17", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-2,5-32,34-63,65,66,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "3,4,33,64,67,68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-782cd3ea-0ea7-bd75-f8f2-54d75566f9c2", - "driver": "525.125.06", - "serial": "1324921081899", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:21:38.135Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.490694S", + "compute_time_sec": 7.490694, + "compute_times": { + "total": 7.569987336173654, + "queued": 1.179116, + "clean_up": 0.002130907028913498, + "create_cpp": 0.04748098365962505, + "file_setup": 0.2508866246789694, + "compile_cpp": 4.549122573807836, + "create_r1cs": 0.01635313406586647, + "save_results": 0.006561141461133957, + "get_r1cs_info": 0.0007531233131885529, + "groth16_setup": 1.3041542451828718, + "export_verification_key": 1.389599822461605, + "download_trusted_setup_file": 0.002447204664349556 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "f8406ce7-d14a-4fa6-9677-1d57449c0e92", + "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", "circuit_name": "circom-multiplier2", - "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", "circuit_type": "circom", - "date_created": "2024-01-15T01:28:35.809Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.078477S", - "compute_times": { - "prove": 5.902009887620807, - "total": 6.183570355176926, - "queued": 6.122612, - "clean_up": 0.0002631358802318573, - "file_setup": 0.26931122317910194, - "save_results": 0.0026443954557180405, - "generate_witness_c": 0.009012777358293533 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:21:25.337Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.714617S", + "compute_time_sec": 7.714617, + "compute_times": { + "total": 7.78945274092257, + "queued": 1.109203, + "clean_up": 0.0014195535331964493, + "create_cpp": 0.0532410591840744, + "file_setup": 0.2293473482131958, + "compile_cpp": 4.6692238971591, + "create_r1cs": 0.011476732790470123, + "save_results": 0.0056864432990550995, + "get_r1cs_info": 0.0009230468422174454, + "groth16_setup": 1.4699061587452888, + "export_verification_key": 1.3452017772942781, + "download_trusted_setup_file": 0.0025169849395751953 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "bc95c37e-6335-4962-a45e-ce0e92856220", + "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", "circuit_name": "circom-multiplier2", - "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", "circuit_type": "circom", - "date_created": "2024-01-15T01:28:33.921Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.160198S", - "compute_times": { - "prove": 5.963096780702472, - "total": 6.232641618698835, - "queued": 0.650062, - "clean_up": 0.00031645968556404114, - "file_setup": 0.24531847052276134, - "save_results": 0.003001151606440544, - "generate_witness_c": 0.020530829206109047 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:21:07.305Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.675740S", + "compute_time_sec": 7.67574, + "compute_times": { + "total": 7.751045668497682, + "queued": 1.129433, + "clean_up": 0.0018131695687770844, + "create_cpp": 0.04765470325946808, + "file_setup": 0.24081012606620789, + "compile_cpp": 4.558540068566799, + "create_r1cs": 0.01800389215350151, + "save_results": 0.005974184721708298, + "get_r1cs_info": 0.0006712991744279861, + "groth16_setup": 1.373840706422925, + "export_verification_key": 1.500656010583043, + "download_trusted_setup_file": 0.002558337524533272 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "92e2e996-b3cf-465f-a4c0-978a5566287d", + "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", "circuit_name": "circom-multiplier2", - "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", "circuit_type": "circom", - "date_created": "2024-01-15T01:25:52.815Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.175574S", - "compute_times": { - "prove": 5.9231167789548635, - "total": 6.24663576297462, - "queued": 0.698281, - "clean_up": 0.0002771075814962387, - "file_setup": 0.29058355651795864, - "save_results": 0.002341846004128456, - "generate_witness_c": 0.029908066615462303 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:19:55.212Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.062178S", + "compute_time_sec": 8.062178, + "compute_times": { + "total": 8.142503958195448, + "queued": 1.149423, + "clean_up": 0.0018021930009126663, + "create_cpp": 0.04863681085407734, + "file_setup": 0.23515266925096512, + "compile_cpp": 5.073512123897672, + "create_r1cs": 0.018286654725670815, + "save_results": 0.004714170470833778, + "get_r1cs_info": 0.0007165037095546722, + "groth16_setup": 1.3629947770386934, + "export_verification_key": 1.3937593009322882, + "download_trusted_setup_file": 0.0024403519928455353 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "82de6aa2-4108-43aa-85f0-0bc9c8e6fb8e", + "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", "circuit_name": "circom-multiplier2", - "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", "circuit_type": "circom", - "date_created": "2024-01-15T01:24:19.052Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.115018S", - "compute_times": { - "prove": 5.91022140905261, - "total": 6.194757051765919, - "queued": 0.684503, - "clean_up": 0.00032767653465270996, - "file_setup": 0.2622530199587345, - "save_results": 0.003049323335289955, - "generate_witness_c": 0.018631482496857643 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null - }, - { - "proof_id": "250bec19-3e55-44aa-8259-e0c16f81740a", - "circuit_name": "circom-multiplier2", - "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", - "circuit_type": "circom", - "date_created": "2024-01-15T01:21:13.615Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.117480S", - "compute_times": { - "prove": 5.914364781230688, - "total": 6.191053604707122, - "queued": 15.514631, - "clean_up": 0.00021071918308734894, - "file_setup": 0.24732953310012817, - "save_results": 0.0019527468830347061, - "generate_witness_c": 0.026822445914149284 - }, - "file_sizes": { - "proof": 707, - "total": 713, - "public": 6, - "total_gb": 7.13e-7, - "total_mb": 0.000713 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5199.98", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,4-32,34-63,69-96,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-3,33,64-68,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-3ae041c5-a9ec-129a-cbf6-33b374bc92c0", - "driver": "525.125.06", - "serial": "1325121129330", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "142576", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:18 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed53c16ee23010e59caf18a13d002db1134290603975af3db53f608c4bdc26b6654fa856d5fefbda49a054acd44a20edae9477b13dcf9ef1d8ef7169b9aea6555da234a5143625dc876a89316fa8c1e5a094e659067e4c16731a464ad3ac1d03b798c120c9e6f36446e922cf067e5bbe08fc156a7f8ada21b3fe2a97e6697b81e3f80fe0f44d4fe7a73096ed2a06ed5f431ad398aea2884ca2c7423ae8a400282a533214c00bc15f1c60c11038c8301370100f6728b502fd040c98dac2268e1e746db980d13db3bc8024bd8594a6b3f112a202d1b825215bcd5d27b5586ab2138852eda6e157506cc9ab95cdbabb89235f3de8c346961f8f4e0840141d9bb97f173d8cc6f016480020047e085e327b6cc7c99d62a58bfd06cfb72b90cad4086cf587e0e66350d718a27cf55ee04e2b8796498587ac1cbeafd7fee126ede95f51143ad04a2884ca6f84f5e97d47e35574158df073ff3ba9b656c6cf4eabab94f8ccffb3343df37f4af3deff97e22bfe7ff3da1b7e73ded7151b2e617870572702660c6146927dd245a61553f249389cb6671a990c6f4316c52a11529c4baae53b1f3efe3427db3aaab6fb26b851e93c6b63c6eabdb7ef4328d3703babb148f2967d95a88473778dcb856d12dedc0cbd6ffed263f7e8d1a3c77f86df87e21dcf000c00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 493, - "total": 493, - "total_mb": 0.000493, - "total_gb": 4.93e-7 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:19 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/list?include_verification_key=false", - "body": "", - "status": 200, - "response": [ - { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - { - "circuit_id": "29fb3a82-1590-4be9-b70a-88f5984dc124", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-16T20:48:35.963Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.844513S", - "compute_times": { - "total": 7.923681704327464, - "queued": 15.45273, - "clean_up": 0.01527201198041439, - "create_cpp": 0.06142416223883629, - "file_setup": 0.3039850164204836, - "compile_cpp": 4.784410445019603, - "create_r1cs": 0.03248248063027859, - "save_results": 0.005430160090327263, - "get_r1cs_info": 0.0006867349147796631, - "groth16_setup": 1.4019621182233095, - "export_verification_key": 1.3149166032671928, - "download_trusted_setup_file": 0.002530926838517189 - }, - "file_sizes": { - "total": 1720180, - "circuit": 221992, - "total_gb": 0.00172018, - "total_mb": 1.72018, - "circuit.dat": 6264, - "code.tar.gz": 1485443, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" - }, - { - "circuit_id": "dd945962-fff2-4781-a4a6-8f508914cb1d", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-16T18:40:22.847Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.646149S", - "compute_times": { - "total": 7.724423663690686, - "queued": 15.761971, - "clean_up": 0.014004472643136978, - "create_cpp": 0.05887523107230663, - "file_setup": 0.29307289980351925, - "compile_cpp": 4.618602339178324, - "create_r1cs": 0.030209284275770187, - "save_results": 0.005881253629922867, - "get_r1cs_info": 0.0006434936076402664, - "groth16_setup": 1.3945081308484077, - "export_verification_key": 1.3054639268666506, - "download_trusted_setup_file": 0.002590106800198555 - }, - "file_sizes": { - "total": 1720180, - "circuit": 221992, - "total_gb": 0.00172018, - "total_mb": 1.72018, - "circuit.dat": 6264, - "code.tar.gz": 1485443, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "date_created": "2024-01-14T16:18:49.431Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.693335S", + "compute_time_sec": 7.693335, + "compute_times": { + "total": 7.781858703121543, + "queued": 1.116293, + "clean_up": 0.0017208773642778397, + "create_cpp": 0.05256185121834278, + "file_setup": 0.2557890061289072, + "compile_cpp": 4.588302677497268, + "create_r1cs": 0.010025406256318092, + "save_results": 0.0073493290692567825, + "get_r1cs_info": 0.0005155783146619797, + "groth16_setup": 1.4648161549121141, + "export_verification_key": 1.3988297637552023, + "download_trusted_setup_file": 0.0014446470886468887 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 1, - "num_constraints": 2, + "num_constraints": 1, "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_name": "circom", + "circuit_id": "315b9559-c461-49ab-b089-885151347107", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T19:02:13.653Z", + "date_created": "2024-01-14T16:18:35.546Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.610477S", - "compute_times": { - "total": 7.686040507629514, - "queued": 13.887033, - "clean_up": 0.012916117906570435, - "create_cpp": 0.07114601135253906, - "file_setup": 0.318003311753273, - "compile_cpp": 4.542702650651336, - "create_r1cs": 0.0307772196829319, - "save_results": 0.006008602678775787, - "get_r1cs_info": 0.0006719175726175308, - "groth16_setup": 1.3185164164751768, - "export_verification_key": 1.3821478076279163, - "download_trusted_setup_file": 0.0025328118354082108 - }, - "file_sizes": { - "total": 1719978, - "circuit": 221992, - "total_gb": 0.001719978, - "total_mb": 1.719978, - "circuit.dat": 6264, - "code.tar.gz": 1485241, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.469497S", + "compute_time_sec": 7.469497, + "compute_times": { + "total": 7.547948880121112, + "queued": 1.248019, + "clean_up": 0.0015904363244771957, + "create_cpp": 0.0542209018021822, + "file_setup": 0.23366319201886654, + "compile_cpp": 4.586157588288188, + "create_r1cs": 0.018297061324119568, + "save_results": 0.005786450579762459, + "get_r1cs_info": 0.0006671342998743057, + "groth16_setup": 1.364309385418892, + "export_verification_key": 1.2802996914833784, + "download_trusted_setup_file": 0.002457818016409874 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 1, - "num_constraints": 2, + "num_constraints": 1, "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "16cc9ce9-c462-4544-889b-b92a8aa2a163", + "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:28.205Z", + "date_created": "2024-01-14T16:17:44.931Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.747574S", - "compute_times": { - "total": 4.78177017706912, - "queued": 5.016909, - "clean_up": 0.0004598660161718726, - "create_cpp": 0.030555953970178962, - "file_setup": 0.20548532891552895, - "compile_cpp": 2.9665471400367096, - "create_r1cs": 0.00540319096762687, - "save_results": 0.0024345499696210027, - "get_r1cs_info": 0.0003199470229446888, - "groth16_setup": 0.7762336740270257, - "export_verification_key": 0.7933770680101588, - "download_trusted_setup_file": 0.000703481025993824 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.473321S", + "compute_time_sec": 7.473321, + "compute_times": { + "total": 7.547661663964391, + "queued": 1.119777, + "clean_up": 0.000894695520401001, + "create_cpp": 0.05381825938820839, + "file_setup": 0.24185010977089405, + "compile_cpp": 4.524175513535738, + "create_r1cs": 0.017902396619319916, + "save_results": 0.004841597750782967, + "get_r1cs_info": 0.0008537471294403076, + "groth16_setup": 1.3410304505378008, + "export_verification_key": 1.3593134097754955, + "download_trusted_setup_file": 0.0025420039892196655 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "cd090915-c649-4d03-a97b-e962996ddd20", + "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:27.776Z", + "date_created": "2024-01-14T16:16:28.531Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M06.629298S", - "compute_times": { - "total": 6.6755576292052865, - "queued": 1.176057, - "clean_up": 0.0018914993852376938, - "create_cpp": 0.05316939204931259, - "file_setup": 0.22646267898380756, - "compile_cpp": 4.249306512996554, - "create_r1cs": 0.017062108032405376, - "save_results": 0.030750948935747147, - "get_r1cs_info": 0.0009490260854363441, - "groth16_setup": 1.0647103870287538, - "export_verification_key": 1.028034188784659, - "download_trusted_setup_file": 0.0026015527546405792 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.690520S", + "compute_time_sec": 7.69052, + "compute_times": { + "total": 7.770463544875383, + "queued": 5.453395, + "clean_up": 0.0014936216175556183, + "create_cpp": 0.05430406704545021, + "file_setup": 0.23710034973919392, + "compile_cpp": 4.83283169940114, + "create_r1cs": 0.019483311101794243, + "save_results": 0.0048837121576070786, + "get_r1cs_info": 0.0006661657243967056, + "groth16_setup": 1.3555313758552074, + "export_verification_key": 1.2612487897276878, + "download_trusted_setup_file": 0.0024483725428581238 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "32", - "BogoMIPS:": "6400.00", - "L2 cache:": "16 MiB (16 instances)", - "L3 cache:": "49.5 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "512 KiB (16 instances)", - "L1i cache:": "512 KiB (16 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "8", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0-31", - "Vulnerability Srbds:": "Not affected", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "d2b35982-db22-46ed-8398-633a67326497", + "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:27.371Z", + "date_created": "2024-01-14T16:16:22.368Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M05.028025S", - "compute_times": { - "total": 5.060947331017815, - "queued": 1.002764, - "clean_up": 0.0005010430468246341, - "create_cpp": 0.030848323018290102, - "file_setup": 0.3499931499827653, - "compile_cpp": 2.9625711779808626, - "create_r1cs": 0.005965905962511897, - "save_results": 0.0023849039571359754, - "get_r1cs_info": 0.0003329960163682699, - "groth16_setup": 0.8954589819768444, - "export_verification_key": 0.8118982950691134, - "download_trusted_setup_file": 0.000777014996856451 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.866076S", + "compute_time_sec": 7.866076, + "compute_times": { + "total": 7.941894210875034, + "queued": 2.535538, + "clean_up": 0.0015988927334547043, + "create_cpp": 0.047808632254600525, + "file_setup": 0.27344413474202156, + "compile_cpp": 4.95066586881876, + "create_r1cs": 0.018682880327105522, + "save_results": 0.005130548030138016, + "get_r1cs_info": 0.0007092785090208054, + "groth16_setup": 1.3249204363673925, + "export_verification_key": 1.3161130715161562, + "download_trusted_setup_file": 0.0024131685495376587 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "36e99794-bf82-45ba-84e2-473801d04601", + "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:27.344Z", + "date_created": "2024-01-14T16:16:14.715Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.938049S", - "compute_times": { - "total": 4.9735322810010985, - "queued": 0.972193, - "clean_up": 0.0004673229996114969, - "create_cpp": 0.029697786085307598, - "file_setup": 0.18970869795884937, - "compile_cpp": 3.0105657579842955, - "create_r1cs": 0.005213497905060649, - "save_results": 0.0022177600767463446, - "get_r1cs_info": 0.0002456710208207369, - "groth16_setup": 0.884783201967366, - "export_verification_key": 0.8496285049477592, - "download_trusted_setup_file": 0.0007285490864887834 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.791801S", + "compute_time_sec": 7.791801, + "compute_times": { + "total": 7.869745476171374, + "queued": 1.134289, + "clean_up": 0.001745712012052536, + "create_cpp": 0.05209941044449806, + "file_setup": 0.2489724848419428, + "compile_cpp": 4.845416411757469, + "create_r1cs": 0.019992178305983543, + "save_results": 0.005489939823746681, + "get_r1cs_info": 0.0008604265749454498, + "groth16_setup": 1.321467338129878, + "export_verification_key": 1.3704753294587135, + "download_trusted_setup_file": 0.002767615020275116 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "3e42bb6b-fb5c-438f-b93d-491b396b6f23", + "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:26.518Z", + "date_created": "2024-01-14T16:13:40.405Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.816702S", - "compute_times": { - "total": 4.8482058160007, - "queued": 0.906488, - "clean_up": 0.0006248310673981905, - "create_cpp": 0.02985287399496883, - "file_setup": 0.19871655595488846, - "compile_cpp": 2.975329626002349, - "create_r1cs": 0.005557317053899169, - "save_results": 0.007954819942824543, - "get_r1cs_info": 0.00032641494181007147, - "groth16_setup": 0.7642357499571517, - "export_verification_key": 0.8646354200318456, - "download_trusted_setup_file": 0.0007459390908479691 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.405829S", + "compute_time_sec": 7.405829, + "compute_times": { + "total": 7.476599719375372, + "queued": 1.131337, + "clean_up": 0.0016632992774248123, + "create_cpp": 0.047042084857821465, + "file_setup": 0.2487345952540636, + "compile_cpp": 4.6313931327313185, + "create_r1cs": 0.015436878427863121, + "save_results": 0.0051026009023189545, + "get_r1cs_info": 0.0007460527122020721, + "groth16_setup": 1.2485730070620775, + "export_verification_key": 1.274957099929452, + "download_trusted_setup_file": 0.002432204782962799 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "08356d78-f494-441e-bfdb-b9f1c33d1c79", + "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:26.040Z", + "date_created": "2024-01-14T16:13:12.201Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.255852S", - "compute_times": { - "total": 8.342214539647102, - "queued": 1.207576, - "clean_up": 0.001900574192404747, - "create_cpp": 0.048632413148880005, - "file_setup": 0.29853893630206585, - "compile_cpp": 4.7833232916891575, - "create_r1cs": 0.010217664763331413, - "save_results": 0.006458930671215057, - "get_r1cs_info": 0.00041519850492477417, - "groth16_setup": 1.685638464987278, - "export_verification_key": 1.505559166893363, - "download_trusted_setup_file": 0.001057775691151619 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.489214S", + "compute_time_sec": 7.489214, + "compute_times": { + "total": 7.565977169200778, + "queued": 1.146208, + "clean_up": 0.0016220677644014359, + "create_cpp": 0.0601615309715271, + "file_setup": 0.23689182102680206, + "compile_cpp": 4.628598712384701, + "create_r1cs": 0.01757240854203701, + "save_results": 0.005794510245323181, + "get_r1cs_info": 0.0007582679390907288, + "groth16_setup": 1.3360584639012814, + "export_verification_key": 1.2756301537156105, + "download_trusted_setup_file": 0.0024445243179798126 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "0c79ed16-2255-42d7-9d50-69b2a48e7a7e", + "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:25.692Z", + "date_created": "2024-01-14T16:11:41.174Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.989370S", - "compute_times": { - "total": 8.078493990004063, - "queued": 1.082236, - "clean_up": 0.0013379640877246857, - "create_cpp": 0.046086084097623825, - "file_setup": 0.26662280783057213, - "compile_cpp": 4.741464577615261, - "create_r1cs": 0.010393906384706497, - "save_results": 0.004450704902410507, - "get_r1cs_info": 0.0003890320658683777, - "groth16_setup": 1.424798371270299, - "export_verification_key": 1.581564825028181, - "download_trusted_setup_file": 0.0009499248117208481 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.580861S", + "compute_time_sec": 7.580861, + "compute_times": { + "total": 7.656488731503487, + "queued": 1.097627, + "clean_up": 0.0016867052763700485, + "create_cpp": 0.04802015610039234, + "file_setup": 0.24031525664031506, + "compile_cpp": 4.603576384484768, + "create_r1cs": 0.016298340633511543, + "save_results": 0.005427641794085503, + "get_r1cs_info": 0.0008495114743709564, + "groth16_setup": 1.44757186062634, + "export_verification_key": 1.2892759256064892, + "download_trusted_setup_file": 0.0029640905559062958 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "1f9793dd-fc3a-40a7-8054-cef057abd541", + "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:25.616Z", + "date_created": "2024-01-14T16:06:12.999Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.171096S", - "compute_times": { - "total": 8.264494920149446, - "queued": 1.091233, - "clean_up": 0.0011752620339393616, - "create_cpp": 0.047388264909386635, - "file_setup": 0.2554698046296835, - "compile_cpp": 5.00205560401082, - "create_r1cs": 0.016951866447925568, - "save_results": 0.004460513591766357, - "get_r1cs_info": 0.0007659532129764557, - "groth16_setup": 1.5022341907024384, - "export_verification_key": 1.43130037561059, - "download_trusted_setup_file": 0.0023894812911748886 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.468363S", + "compute_time_sec": 7.468363, + "compute_times": { + "total": 7.544480819255114, + "queued": 1.143003, + "clean_up": 0.0016008112579584122, + "create_cpp": 0.05341379716992378, + "file_setup": 0.22887434996664524, + "compile_cpp": 4.706471795216203, + "create_r1cs": 0.01654653809964657, + "save_results": 0.006104299798607826, + "get_r1cs_info": 0.0004962123930454254, + "groth16_setup": 1.2300675436854362, + "export_verification_key": 1.299116501584649, + "download_trusted_setup_file": 0.0012989863753318787 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "4e4d2d46-51d3-4194-b234-bdbb6a4f90fa", + "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:24.753Z", + "date_created": "2024-01-14T16:05:23.917Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.002611S", - "compute_times": { - "total": 8.10809656791389, - "queued": 1.196517, - "clean_up": 0.0010557789355516434, - "create_cpp": 0.04669773019850254, - "file_setup": 0.29523342847824097, - "compile_cpp": 4.564519450068474, - "create_r1cs": 0.018192801624536514, - "save_results": 0.005101308226585388, - "get_r1cs_info": 0.0006758365780115128, - "groth16_setup": 1.4404480885714293, - "export_verification_key": 1.733376519754529, - "download_trusted_setup_file": 0.0023900754749774933 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.759975S", + "compute_time_sec": 7.759975, + "compute_times": { + "total": 7.83847594819963, + "queued": 1.10425, + "clean_up": 0.001688338816165924, + "create_cpp": 0.04832325503230095, + "file_setup": 0.2314634695649147, + "compile_cpp": 4.819877410307527, + "create_r1cs": 0.015260979533195496, + "save_results": 0.006293922662734985, + "get_r1cs_info": 0.0006519351154565811, + "groth16_setup": 1.3941991496831179, + "export_verification_key": 1.3179172277450562, + "download_trusted_setup_file": 0.0024711433798074722 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "4cb330c7-66c6-4cf5-a68f-c4ef96ac9f2f", + "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:31:24.744Z", + "date_created": "2024-01-14T16:04:56.095Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.974658S", - "compute_times": { - "total": 8.07497458346188, - "queued": 1.213266, - "clean_up": 0.0014442000538110733, - "create_cpp": 0.04963418282568455, - "file_setup": 0.2647697776556015, - "compile_cpp": 4.544425489380956, - "create_r1cs": 0.009241640567779541, - "save_results": 0.0048146117478609085, - "get_r1cs_info": 0.00042194314301013947, - "groth16_setup": 1.4614581391215324, - "export_verification_key": 1.737057751044631, - "download_trusted_setup_file": 0.00112207792699337 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.406479S", + "compute_time_sec": 7.406479, + "compute_times": { + "total": 7.483620099723339, + "queued": 1.177252, + "clean_up": 0.001823868602514267, + "create_cpp": 0.045437244698405266, + "file_setup": 0.24590439908206463, + "compile_cpp": 4.595620075240731, + "create_r1cs": 0.016566921025514603, + "save_results": 0.005170263350009918, + "get_r1cs_info": 0.00036842189729213715, + "groth16_setup": 1.3206052239984274, + "export_verification_key": 1.2503768727183342, + "download_trusted_setup_file": 0.0012859292328357697 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "9bbe03cb-c39f-42df-b91c-ad40785769a7", + "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.977Z", + "date_created": "2024-01-14T16:02:24.098Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.046214S", - "compute_times": { - "total": 8.123173575848341, - "queued": 37.732277, - "clean_up": 0.0018738601356744766, - "create_cpp": 0.05183893069624901, - "file_setup": 0.2543136142194271, - "compile_cpp": 4.950523996725678, - "create_r1cs": 0.015572600066661835, - "save_results": 0.005953660234808922, - "get_r1cs_info": 0.0006317459046840668, - "groth16_setup": 1.518635692074895, - "export_verification_key": 1.321570660918951, - "download_trusted_setup_file": 0.0017584580928087234 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.616668S", + "compute_time_sec": 7.616668, + "compute_times": { + "total": 7.693107321858406, + "queued": 1.109472, + "clean_up": 0.0016501452773809433, + "create_cpp": 0.05231943354010582, + "file_setup": 0.23242460750043392, + "compile_cpp": 4.745099242776632, + "create_r1cs": 0.019039543345570564, + "save_results": 0.0055495090782642365, + "get_r1cs_info": 0.0005333274602890015, + "groth16_setup": 1.285587765276432, + "export_verification_key": 1.3491349909454584, + "download_trusted_setup_file": 0.0012811962515115738 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "c0575a32-e974-4036-8343-02890b5dd43f", + "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.276Z", + "date_created": "2024-01-14T16:01:40.573Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.025239S", - "compute_times": { - "total": 8.103251675143838, - "queued": 37.071617, - "clean_up": 0.0019434932619333267, - "create_cpp": 0.05545089207589626, - "file_setup": 0.2586412336677313, - "compile_cpp": 4.959581568837166, - "create_r1cs": 0.017252666875720024, - "save_results": 0.005369381979107857, - "get_r1cs_info": 0.0007654130458831787, - "groth16_setup": 1.369353175163269, - "export_verification_key": 1.4320305939763784, - "download_trusted_setup_file": 0.0025755316019058228 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.484601S", + "compute_time_sec": 7.484601, + "compute_times": { + "total": 7.560129789635539, + "queued": 1.111989, + "clean_up": 0.0016574747860431671, + "create_cpp": 0.04680110327899456, + "file_setup": 0.23556585423648357, + "compile_cpp": 4.649155827239156, + "create_r1cs": 0.0172688327729702, + "save_results": 0.0043340642005205154, + "get_r1cs_info": 0.0007321778684854507, + "groth16_setup": 1.310708336532116, + "export_verification_key": 1.2910060994327068, + "download_trusted_setup_file": 0.002450576052069664 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "ddd1b9a9-83e6-41d1-8936-3bff88aa6921", + "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.179Z", + "date_created": "2024-01-14T16:01:12.249Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.049708S", - "compute_times": { - "total": 8.133471051231027, - "queued": 33.561144, - "clean_up": 0.001717088744044304, - "create_cpp": 0.04866603575646877, - "file_setup": 0.239702383056283, - "compile_cpp": 5.001192836090922, - "create_r1cs": 0.009522216394543648, - "save_results": 0.006353143602609634, - "get_r1cs_info": 0.000697137787938118, - "groth16_setup": 1.4610587637871504, - "export_verification_key": 1.361605390906334, - "download_trusted_setup_file": 0.002519451081752777 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.651112S", + "compute_time_sec": 7.651112, + "compute_times": { + "total": 7.727200584486127, + "queued": 1.123557, + "clean_up": 0.0017795618623495102, + "create_cpp": 0.05026000365614891, + "file_setup": 0.2426721192896366, + "compile_cpp": 4.745914597064257, + "create_r1cs": 0.010544411838054657, + "save_results": 0.006228795275092125, + "get_r1cs_info": 0.0007463283836841583, + "groth16_setup": 1.2904645502567291, + "export_verification_key": 1.375608079135418, + "download_trusted_setup_file": 0.002477342262864113 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "96444cdd-027c-4c3f-a682-4e72d16bf3a5", + "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:53.099Z", + "date_created": "2024-01-14T16:00:46.395Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.940388S", - "compute_times": { - "total": 8.01799102500081, - "queued": 32.362319, - "clean_up": 0.001860274001955986, - "create_cpp": 0.05603296309709549, - "file_setup": 0.24690320529043674, - "compile_cpp": 4.9119456727057695, - "create_r1cs": 0.009936073794960976, - "save_results": 0.005414023995399475, - "get_r1cs_info": 0.0005574170500040054, - "groth16_setup": 1.3544788006693125, - "export_verification_key": 1.4287667162716389, - "download_trusted_setup_file": 0.0015699360519647598 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.560954S", + "compute_time_sec": 7.560954, + "compute_times": { + "total": 7.63792067207396, + "queued": 1.118023, + "clean_up": 0.0011309515684843063, + "create_cpp": 0.05688653700053692, + "file_setup": 0.24240840040147305, + "compile_cpp": 4.653197390958667, + "create_r1cs": 0.01638108491897583, + "save_results": 0.005740107968449593, + "get_r1cs_info": 0.0008277762681245804, + "groth16_setup": 1.3475805260241032, + "export_verification_key": 1.3108154106885195, + "download_trusted_setup_file": 0.0024681556969881058 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "fb643fa2-c0d1-43c0-b005-e94ecc364e81", + "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:52.239Z", + "date_created": "2024-01-14T15:59:57.004Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.931796S", - "compute_times": { - "total": 8.004282549023628, - "queued": 30.380939, - "clean_up": 0.003405677154660225, - "create_cpp": 0.04673151113092899, - "file_setup": 0.27263920940458775, - "compile_cpp": 4.911707244813442, - "create_r1cs": 0.017409181222319603, - "save_results": 0.007333524525165558, - "get_r1cs_info": 0.00041870400309562683, - "groth16_setup": 1.4117986112833023, - "export_verification_key": 1.330976827070117, - "download_trusted_setup_file": 0.001385936513543129 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.474006S", + "compute_time_sec": 7.474006, + "compute_times": { + "total": 7.551057329401374, + "queued": 1.13943, + "clean_up": 0.0015815366059541702, + "create_cpp": 0.04650958999991417, + "file_setup": 0.2340244445949793, + "compile_cpp": 4.627846229821444, + "create_r1cs": 0.01713145151734352, + "save_results": 0.005708448588848114, + "get_r1cs_info": 0.0004803799092769623, + "groth16_setup": 1.2327740285545588, + "export_verification_key": 1.3827583715319633, + "download_trusted_setup_file": 0.001740090548992157 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "7ef187a6-8c98-453b-8a71-a9eaaecc0e34", + "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:51.703Z", + "date_created": "2024-01-14T15:59:11.428Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.805326S", - "compute_times": { - "total": 7.880803409963846, - "queued": 29.627509, - "clean_up": 0.0018093828111886978, - "create_cpp": 0.04843143746256828, - "file_setup": 0.2650751415640116, - "compile_cpp": 4.736435519531369, - "create_r1cs": 0.01788560301065445, - "save_results": 0.0059021469205617905, - "get_r1cs_info": 0.00045815669000148773, - "groth16_setup": 1.429807098582387, - "export_verification_key": 1.3734482415020466, - "download_trusted_setup_file": 0.0011302679777145386 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.631306S", + "compute_time_sec": 7.631306, + "compute_times": { + "total": 7.710235442966223, + "queued": 1.386075, + "clean_up": 0.002034531906247139, + "create_cpp": 0.04852190800011158, + "file_setup": 0.24500983953475952, + "compile_cpp": 4.704880395904183, + "create_r1cs": 0.010721936821937561, + "save_results": 0.0055764298886060715, + "get_r1cs_info": 0.0006168503314256668, + "groth16_setup": 1.448454624041915, + "export_verification_key": 1.2422269843518734, + "download_trusted_setup_file": 0.0016173608601093292 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "ef0f5d45-cc4a-44dc-bbcc-68cec83e7279", + "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:51.482Z", + "date_created": "2024-01-14T15:58:05.906Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.567289S", - "compute_times": { - "total": 7.648521225899458, - "queued": 26.571096, - "clean_up": 0.001760430634021759, - "create_cpp": 0.05707797780632973, - "file_setup": 0.25215250812470913, - "compile_cpp": 4.578133208677173, - "create_r1cs": 0.016807612031698227, - "save_results": 0.005696004256606102, - "get_r1cs_info": 0.0005241129547357559, - "groth16_setup": 1.3513143379241228, - "export_verification_key": 1.3831868078559637, - "download_trusted_setup_file": 0.001370033249258995 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.838875S", + "compute_time_sec": 7.838875, + "compute_times": { + "total": 7.916816979646683, + "queued": 1.13646, + "clean_up": 0.0017937906086444855, + "create_cpp": 0.04604017175734043, + "file_setup": 0.25198566168546677, + "compile_cpp": 4.960162149742246, + "create_r1cs": 0.017025411128997803, + "save_results": 0.006269412115216255, + "get_r1cs_info": 0.0005705077201128006, + "groth16_setup": 1.3184205926954746, + "export_verification_key": 1.312853867188096, + "download_trusted_setup_file": 0.0013548657298088074 }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "aa53da22-0b0e-4a8e-859e-fccdac3b504b", + "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:51.339Z", + "date_created": "2024-01-14T15:10:36.167Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.705618S", - "compute_times": { - "total": 7.775683760643005, - "queued": 17.802545, - "clean_up": 0.0016981493681669235, - "create_cpp": 0.04159858077764511, - "file_setup": 0.2633522041141987, - "compile_cpp": 4.702255232259631, - "create_r1cs": 0.016227660700678825, - "save_results": 0.006025375798344612, - "get_r1cs_info": 0.0004564579576253891, - "groth16_setup": 1.386870777234435, - "export_verification_key": 1.355175631120801, - "download_trusted_setup_file": 0.0015500187873840332 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.494759S", + "compute_time_sec": 7.494759, + "compute_times": { + "total": 7.577943356707692, + "queued": 15.661842, + "clean_up": 0.0015942566096782684, + "create_cpp": 0.046944042667746544, + "file_setup": 0.23811103031039238, + "compile_cpp": 4.708118129521608, + "create_r1cs": 0.01638900674879551, + "save_results": 0.00562669150531292, + "get_r1cs_info": 0.0006911307573318481, + "groth16_setup": 1.2832315117120743, + "export_verification_key": 1.2741688843816519, + "download_trusted_setup_file": 0.0024611055850982666 }, + "file_size": 225418, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, { - "circuit_id": "24294db3-7afa-418b-bf0d-1243f5886a87", - "circuit_name": "circom-multiplier2", + "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:50.820Z", + "date_created": "2023-12-19T00:01:17.518Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.571579S", - "compute_times": { - "total": 7.648920483887196, - "queued": 9.579982, - "clean_up": 0.0016354341059923172, - "create_cpp": 0.04483112692832947, - "file_setup": 0.25358958914875984, - "compile_cpp": 4.433619428426027, - "create_r1cs": 0.015889232978224754, - "save_results": 0.02785000577569008, - "get_r1cs_info": 0.0006279703229665756, - "groth16_setup": 1.4690972827374935, - "export_verification_key": 1.3993326891213655, - "download_trusted_setup_file": 0.00199044868350029 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.829640S", + "compute_time_sec": 14.82964, + "compute_times": { + "total": 16.11652692966163, + "queued": 21.506947, + "clean_up": 0.00970545969903469, + "create_cpp": 0.07700999267399311, + "file_setup": 1.6147372927516699, + "compile_cpp": 7.614376271143556, + "create_r1cs": 0.154385132715106, + "save_results": 0.005050705745816231, + "get_r1cs_info": 0.0008396394550800323, + "groth16_setup": 3.3179074060171843, + "export_verification_key": 3.320323884487152, + "download_trusted_setup_file": 0.0015841908752918243 }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "d277da2b-a725-479a-a7b5-45d7faaade8c", - "circuit_name": "circom-multiplier2", + "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T13:28:50.187Z", + "date_created": "2023-12-18T23:44:10.716Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.506613S", - "compute_times": { - "total": 7.5880236234515905, - "queued": 1.494971, - "clean_up": 0.001649005338549614, - "create_cpp": 0.0485001876950264, - "file_setup": 0.2546906843781471, - "compile_cpp": 4.532622603699565, - "create_r1cs": 0.017625445500016212, - "save_results": 0.006649702787399292, - "get_r1cs_info": 0.000700976699590683, - "groth16_setup": 1.304074052721262, - "export_verification_key": 1.4185661766678095, - "download_trusted_setup_file": 0.0024695247411727905 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.500698S", + "compute_time_sec": 8.500698, + "compute_times": { + "total": 9.787439923733473, + "queued": 1.294188, + "clean_up": 0.013815293088555336, + "create_cpp": 0.06775672547519207, + "file_setup": 1.5670747924596071, + "compile_cpp": 5.217347398400307, + "create_r1cs": 0.03056485578417778, + "save_results": 0.006023731082677841, + "get_r1cs_info": 0.0007077902555465698, + "groth16_setup": 1.4515825044363737, + "export_verification_key": 1.4297321401536465, + "download_trusted_setup_file": 0.0024385377764701843 }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "7e87dad2-322f-4d95-8e15-98ae32d5b826", - "circuit_name": "circom-multiplier2", + "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:14.415Z", + "date_created": "2023-12-18T23:42:13.949Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M09.377530S", - "compute_times": { - "total": 9.451860029250383, - "queued": 40.689702, - "clean_up": 0.0017610322684049606, - "create_cpp": 0.039578983560204506, - "file_setup": 0.24412750452756882, - "compile_cpp": 6.24841209128499, - "create_r1cs": 0.009235382080078125, - "save_results": 0.006292244419455528, - "get_r1cs_info": 0.000551098957657814, - "groth16_setup": 1.5359418783336878, - "export_verification_key": 1.3637649361044168, - "download_trusted_setup_file": 0.0016706939786672592 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.803270S", + "compute_time_sec": 13.80327, + "compute_times": { + "total": 15.069168468937278, + "queued": 1.279988, + "clean_up": 0.010122904554009438, + "create_cpp": 0.12114278227090836, + "file_setup": 1.5526539776474237, + "compile_cpp": 7.2996343690901995, + "create_r1cs": 0.07337300851941109, + "save_results": 0.10131139867007732, + "get_r1cs_info": 0.0005603395402431488, + "groth16_setup": 2.957974351942539, + "export_verification_key": 2.9508997034281492, + "download_trusted_setup_file": 0.0010457858443260193 }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "4a19fd18-26a5-4539-8450-fdc3c57ed2e6", - "circuit_name": "circom-multiplier2", + "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.901Z", + "date_created": "2023-12-18T23:36:30.574Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.557773S", - "compute_times": { - "total": 8.646001007407904, - "queued": 40.098382, - "clean_up": 0.0008681099861860275, - "create_cpp": 0.04919867962598801, - "file_setup": 0.2636448033154011, - "compile_cpp": 5.393070332705975, - "create_r1cs": 0.01822390779852867, - "save_results": 0.004401525482535362, - "get_r1cs_info": 0.0008187666535377502, - "groth16_setup": 1.5381991360336542, - "export_verification_key": 1.3743581157177687, - "download_trusted_setup_file": 0.0025259219110012054 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.521983S", + "compute_time_sec": 13.521983, + "compute_times": { + "total": 14.785143690183759, + "queued": 27.741822, + "clean_up": 0.00823935680091381, + "create_cpp": 0.10304738581180573, + "file_setup": 1.505700759589672, + "compile_cpp": 7.270766986533999, + "create_r1cs": 0.07485816441476345, + "save_results": 0.0029987990856170654, + "get_r1cs_info": 0.0006173755973577499, + "groth16_setup": 2.891835331916809, + "export_verification_key": 2.924815448001027, + "download_trusted_setup_file": 0.0017245206981897354 }, + "file_size": 1719981, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "dc8d2ea3-558f-464b-88ef-4bfa06fa618e", - "circuit_name": "circom-multiplier2", + "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", + "circuit_name": "my-circuit", "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.697Z", + "date_created": "2023-12-17T19:35:22.108Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.013795S", - "compute_times": { - "total": 8.088545773178339, - "queued": 40.279611, - "clean_up": 0.0012215152382850647, - "create_cpp": 0.05022146739065647, - "file_setup": 0.26072706654667854, - "compile_cpp": 5.073584912344813, - "create_r1cs": 0.01825350522994995, - "save_results": 0.004272386431694031, - "get_r1cs_info": 0.0007919874042272568, - "groth16_setup": 1.3669961635023355, - "export_verification_key": 1.3096041847020388, - "download_trusted_setup_file": 0.0024598315358161926 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.399840S", + "compute_time_sec": 13.39984, + "compute_times": { + "total": 14.661026014015079, + "queued": 20.325028, + "clean_up": 0.005762990564107895, + "create_cpp": 0.07418840192258358, + "file_setup": 1.5508117154240608, + "compile_cpp": 7.441567042842507, + "create_r1cs": 0.0411736685782671, + "save_results": 0.003770258277654648, + "get_r1cs_info": 0.0007237941026687622, + "groth16_setup": 2.749024560675025, + "export_verification_key": 2.7917208038270473, + "download_trusted_setup_file": 0.0016946438699960709 }, + "file_size": 1650609, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "b0811776-3cbb-4f04-91fa-77ff7816010c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.508Z", - "proving_scheme": "groth16", + "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", + "circuit_name": "my-circuit", + "circuit_type": "noir", + "date_created": "2023-12-17T18:49:58.483Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M08.156157S", - "compute_times": { - "total": 8.234552638605237, - "queued": 37.671742, - "clean_up": 0.001722807064652443, - "create_cpp": 0.04674012400209904, - "file_setup": 0.24939687177538872, - "compile_cpp": 5.042005067691207, - "create_r1cs": 0.018849780783057213, - "save_results": 0.0057501643896102905, - "get_r1cs_info": 0.0007910709828138351, - "groth16_setup": 1.4699617084115744, - "export_verification_key": 1.396314723417163, - "download_trusted_setup_file": 0.002504836767911911 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.373831S", + "compute_time_sec": 4.373831, + "compute_times": { + "total": 5.606248481199145, + "queued": 17.784967, + "clean_up": 0.000952577218413353, + "file_setup": 1.4592411685734987, + "nargo_checks": 4.145449373871088 }, + "file_size": 724, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "my_circuit", + "noir_version": "0.17.0" }, { - "circuit_id": "f6935d07-74b9-4eaa-917a-dd40eb8c3eb5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:13.072Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.484689S", - "compute_times": { - "total": 8.550514187663794, - "queued": 35.796557, - "clean_up": 0.001462932676076889, - "create_cpp": 0.04712385684251785, - "file_setup": 0.22329718619585037, - "compile_cpp": 5.446879722177982, - "create_r1cs": 0.01579388603568077, - "save_results": 0.012278709560632706, - "get_r1cs_info": 0.0005889721214771271, - "groth16_setup": 1.4639050755649805, - "export_verification_key": 1.3370745498687029, - "download_trusted_setup_file": 0.001513822004199028 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:44:44.083Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.215446S", + "compute_time_sec": 0.215446, + "compute_times": { + "total": 1.39835050329566, + "queued": 1.360483, + "file_setup": 1.395031625404954, + "nargo_checks": 0.003077572211623192 }, + "file_size": 742, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "circuit_id": "f8e982ba-0f45-445f-8080-31e81ea66636", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:12.326Z", - "proving_scheme": "groth16", + "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:51.455Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.840774S", - "compute_times": { - "total": 7.925517087802291, - "queued": 33.768323, - "clean_up": 0.0019125081598758698, - "create_cpp": 0.0470704510807991, - "file_setup": 0.25080676563084126, - "compile_cpp": 4.833130354061723, - "create_r1cs": 0.017199259251356125, - "save_results": 0.0060319844633340836, - "get_r1cs_info": 0.0008542612195014954, - "groth16_setup": 1.3945932500064373, - "export_verification_key": 1.3710776213556528, - "download_trusted_setup_file": 0.002456527203321457 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.479235S", + "compute_time_sec": 1.479235, + "compute_times": { + "total": 2.6415348909795284, + "queued": 1.942949, + "clean_up": 0.0005522631108760834, + "file_setup": 1.3729195687919855, + "nargo_checks": 1.2678131125867367 }, + "file_size": 741, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "Hi2noir_Hi", + "noir_version": "0.17.0" }, { - "circuit_id": "946b487f-afc3-4bce-aaae-aa306a76c11e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:12.265Z", - "proving_scheme": "groth16", + "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:04.488Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.802354S", - "compute_times": { - "total": 7.876622410491109, - "queued": 32.510341, - "clean_up": 0.0016722455620765686, - "create_cpp": 0.047051187604665756, - "file_setup": 0.24521219171583652, - "compile_cpp": 4.761473456397653, - "create_r1cs": 0.01887539029121399, - "save_results": 0.005280636250972748, - "get_r1cs_info": 0.0006754584610462189, - "groth16_setup": 1.3808959163725376, - "export_verification_key": 1.4123545419424772, - "download_trusted_setup_file": 0.0024936143308877945 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.415435S", + "compute_time_sec": 1.415435, + "compute_times": { + "total": 2.570197055116296, + "queued": 1.245783, + "clean_up": 0.00041295401751995087, + "file_setup": 1.3385441917926073, + "nargo_checks": 1.2309921570122242 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 737, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:44.606Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.405646S", + "compute_time_sec": 1.405646, + "compute_times": { + "total": 2.5658690985292196, + "queued": 1.186038, + "clean_up": 0.00047394633293151855, + "file_setup": 1.3717324659228325, + "nargo_checks": 1.1934157982468605 }, + "file_size": 736, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "2noir_hi", + "noir_version": "0.17.0" }, - { - "circuit_id": "39a7d49d-2aa4-42f5-bad7-41fa853c5400", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:12.235Z", - "proving_scheme": "groth16", + { + "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:17.783Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.715939S", - "compute_times": { - "total": 7.792726593092084, - "queued": 27.774632, - "clean_up": 0.0008173845708370209, - "create_cpp": 0.04740807227790356, - "file_setup": 0.24712751060724258, - "compile_cpp": 4.673818884417415, - "create_r1cs": 0.01585347205400467, - "save_results": 0.005448015406727791, - "get_r1cs_info": 0.0006210263818502426, - "groth16_setup": 1.4341732878237963, - "export_verification_key": 1.3649929203093052, - "download_trusted_setup_file": 0.001871241256594658 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.462830S", + "compute_time_sec": 1.46283, + "compute_times": { + "total": 2.6199891455471516, + "queued": 1.25179, + "clean_up": 0.00041804835200309753, + "file_setup": 1.3820457514375448, + "nargo_checks": 1.2372824884951115 }, + "file_size": 739, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "_noir_hi", + "noir_version": "0.17.0" }, { - "circuit_id": "a8fe6c7b-48d4-4d31-9357-d7d9a184b933", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:11.316Z", - "proving_scheme": "groth16", + "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:41:44.867Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M08.241682S", - "compute_times": { - "total": 8.319445628672838, - "queued": 25.35184, - "clean_up": 0.0016656406223773956, - "create_cpp": 0.047069305554032326, - "file_setup": 0.24678357504308224, - "compile_cpp": 5.164380734786391, - "create_r1cs": 0.017509033903479576, - "save_results": 0.0056435465812683105, - "get_r1cs_info": 0.000514056533575058, - "groth16_setup": 1.471221825107932, - "export_verification_key": 1.3627644162625074, - "download_trusted_setup_file": 0.001434769481420517 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.422583S", + "compute_time_sec": 1.422583, + "compute_times": { + "total": 2.580868471413851, + "queued": 1.187135, + "clean_up": 0.00045336224138736725, + "file_setup": 1.360721966251731, + "nargo_checks": 1.2194277700036764 }, + "file_size": 727, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "9c8a486c-4c18-4a7a-8e79-8100500a2660", + "circuit_name": "_2halo-hi", + "circuit_type": "halo2", + "date_created": "2023-12-13T16:37:57.886Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H01M28.284700S", + "compute_time_sec": 88.2847, + "compute_times": { + "total": 89.44666199572384, + "queued": 2.165129, + "compile": 87.56292228028178, + "clean_up": 0.07346387021243572, + "file_setup": 1.3726620227098465, + "save_results": 0.04124521091580391, + "generate_keys": 0.3959560953080654, + "download_trusted_setup_file": 0.00015112943947315216 + }, + "file_size": 44933087, + "uploaded_file_name": "_2halo-hi.tar.gz", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "class_name": "_2halo_hi::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, { - "circuit_id": "8dd11963-c9e5-4610-b47e-06e1a6721b7b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T12:57:11.310Z", - "proving_scheme": "groth16", + "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", + "circuit_name": "_noir-circuit-32", + "circuit_type": "noir", + "date_created": "2023-12-13T16:31:57.140Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.516111S", - "compute_times": { - "total": 7.592797514051199, - "queued": 16.636252, - "clean_up": 0.00167083740234375, - "create_cpp": 0.05534513108432293, - "file_setup": 0.24897748976945877, - "compile_cpp": 4.495417779311538, - "create_r1cs": 0.01559985987842083, - "save_results": 0.005447791889309883, - "get_r1cs_info": 0.0003331173211336136, - "groth16_setup": 1.3702464755624533, - "export_verification_key": 1.3981607723981142, - "download_trusted_setup_file": 0.0010023191571235657 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.154282S", + "compute_time_sec": 6.154282, + "compute_times": { + "total": 7.310710787773132, + "queued": 18.86527, + "clean_up": 0.00043790414929389954, + "file_setup": 1.3356177434325218, + "nargo_checks": 5.974256757646799 + }, + "file_size": 736, + "uploaded_file_name": "_noir-circuit-32.tar.gz", + "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 7, + "nargo_package_name": "noir_circuit_32", + "noir_version": "0.17.0" }, { - "circuit_id": "17fa8218-c2f7-4e58-9490-ab5f57ec84cf", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:13.061Z", - "proving_scheme": "groth16", + "circuit_id": "ec12dd1d-75be-4729-bdd4-0ae924f2c8e6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T22:14:30.186Z", + "num_proofs": 0, + "proving_scheme": "shplonk", "status": "Ready", - "compute_time": "P0DT00H00M07.636293S", - "compute_times": { - "total": 7.71372976899147, - "queued": 15.303177, - "clean_up": 0.0018192771822214127, - "create_cpp": 0.04809073731303215, - "file_setup": 0.2711461931467056, - "compile_cpp": 4.684678319841623, - "create_r1cs": 0.010924961417913437, - "save_results": 0.005295315757393837, - "get_r1cs_info": 0.0006762687116861343, - "groth16_setup": 1.3283091206103563, - "export_verification_key": 1.359778843820095, - "download_trusted_setup_file": 0.00243326835334301 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H01M20.814859S", + "compute_time_sec": 80.814859, + "compute_times": { + "total": 82.05906438827515, + "queued": 1.410777, + "compile": 80.08948761411011, + "clean_up": 0.08174648880958557, + "file_setup": 1.495840536430478, + "save_results": 0.04187909886240959, + "generate_keys": 0.3492503445595503, + "download_trusted_setup_file": 0.00032539665699005127 + }, + "file_size": 44934523, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "14124f66-b386-4da6-94c3-7c9504e59b55", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T21:21:17.813Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.609091S", + "compute_time_sec": 1.609091, + "compute_times": { + "total": 1.430661918129772, + "queued": 1.232619, + "file_setup": 1.4302852991968393 + }, + "file_size": 6518, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: cargo --quiet build --release stdout: stderr: error: package `colored v2.1.0` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.69.0-nightly\nEither upgrade to rustc 1.70 or newer, or use\ncargo update -p colored@2.1.0 --precise ver\nwhere `ver` is the latest version of `colored` supporting rustc 1.69.0-nightly\n", + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "180aaddd-e613-42ba-a7d0-2b023e582fa6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T21:38:35.968Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H02M31.452475S", + "compute_time_sec": 151.452475, + "compute_times": { + "total": 152.61581724137068, + "queued": 16.679736, + "compile": 150.85432086326182, + "clean_up": 0.08890871703624725, + "file_setup": 1.3426462803035975, + "save_results": 0.055491913110017776, + "generate_keys": 0.27397330291569233, + "download_trusted_setup_file": 0.00015251711010932922 + }, + "file_size": 44942284, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "1a12a25a-6ee5-48eb-96bb-2be6c57fe8a8", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T20:56:40.952Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H02M47.087177S", + "compute_time_sec": 167.087177, + "compute_times": { + "total": 168.2553534731269, + "queued": 15.969391, + "compile": 166.52114362455904, + "clean_up": 0.08557339012622833, + "file_setup": 1.3397669158875942, + "save_results": 0.023856762796640396, + "generate_keys": 0.28439050912857056, + "download_trusted_setup_file": 0.00015943683683872223 + }, + "file_size": 44943541, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "KZG bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:26:39.713Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.813118S", + "compute_time_sec": 1.813118, + "compute_times": { + "total": 3.01790676638484, + "queued": 1.305567, + "clean_up": 0.000589149072766304, + "file_setup": 1.37160237506032, + "nargo_checks": 1.6454425044357777 }, + "file_size": 3951, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, - { - "circuit_id": "4803fbe7-94df-4450-862e-222f380aa951", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:12.338Z", - "proving_scheme": "groth16", + { + "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:23:01.975Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M04.673188S", - "compute_times": { - "total": 4.704905105987564, - "queued": 15.967736, - "clean_up": 0.0005092429928481579, - "create_cpp": 0.030301433987915516, - "file_setup": 0.17748972598928958, - "compile_cpp": 2.933968245051801, - "create_r1cs": 0.005270819994620979, - "save_results": 0.0024895829847082496, - "get_r1cs_info": 0.0002773590385913849, - "groth16_setup": 0.7643708229297772, - "export_verification_key": 0.7893407850060612, - "download_trusted_setup_file": 0.0007287419866770506 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.488323S", + "compute_time_sec": 4.488323, + "compute_times": { + "total": 5.69258569739759, + "queued": 19.825139, + "clean_up": 0.0005774423480033875, + "file_setup": 1.3714763727039099, + "nargo_checks": 4.320127023383975 }, + "file_size": 706, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, { - "circuit_id": "12ae269c-cfa3-4132-ba3e-c623ce2e22c8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:12.206Z", - "proving_scheme": "groth16", + "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:09:13.111Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.807982S", - "compute_times": { - "total": 7.882879471406341, - "queued": 8.13048, - "clean_up": 0.0016283374279737473, - "create_cpp": 0.0489681139588356, - "file_setup": 0.2604731395840645, - "compile_cpp": 4.725069401785731, - "create_r1cs": 0.01646772027015686, - "save_results": 0.005680175498127937, - "get_r1cs_info": 0.0007954202592372894, - "groth16_setup": 1.4267123583704233, - "export_verification_key": 1.3941872529685497, - "download_trusted_setup_file": 0.0024522673338651657 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.592621S", + "compute_time_sec": 4.592621, + "compute_times": { + "total": 5.8083343375474215, + "queued": 20.40929, + "clean_up": 0.0006539653986692429, + "file_setup": 1.3848200682550669, + "nargo_checks": 4.422410562634468 }, + "file_size": 3746, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, { - "circuit_id": "384650aa-8967-4250-af2a-7314d45d6a9e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:12.153Z", - "proving_scheme": "groth16", + "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:46:56.192Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M07.684574S", - "compute_times": { - "total": 7.763364655897021, - "queued": 8.156539, - "clean_up": 0.0008707121014595032, - "create_cpp": 0.04779571294784546, - "file_setup": 0.26266710832715034, - "compile_cpp": 4.542561935260892, - "create_r1cs": 0.049717847257852554, - "save_results": 0.0047896187752485275, - "get_r1cs_info": 0.0007063969969749451, - "groth16_setup": 1.432243825867772, - "export_verification_key": 1.4190982822328806, - "download_trusted_setup_file": 0.0024577490985393524 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.901192S", + "compute_time_sec": 1.901192, + "compute_times": { + "total": 3.042013813741505, + "queued": 1.216309, + "clean_up": 0.0005592899397015572, + "file_setup": 1.3641308145597577, + "nargo_checks": 1.6769273420795798 }, + "file_size": 646, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" }, { - "circuit_id": "fda87f7f-c3ec-4f10-948e-d033331c76c9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:11.234Z", - "proving_scheme": "groth16", + "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:36.302Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", - "compute_time": "P0DT00H00M04.668960S", - "compute_times": { - "total": 4.70031307998579, - "queued": 7.067504, - "clean_up": 0.0005026600556448102, - "create_cpp": 0.030464475974440575, - "file_setup": 0.18320538906846195, - "compile_cpp": 2.9281170460162684, - "create_r1cs": 0.00510658894199878, - "save_results": 0.002476120018400252, - "get_r1cs_info": 0.00033819000236690044, - "groth16_setup": 0.7497855660039932, - "export_verification_key": 0.7994677489623427, - "download_trusted_setup_file": 0.0006945140194147825 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.854306S", + "compute_time_sec": 3.854306, + "compute_times": { + "total": 5.005337344482541, + "queued": 1.049939, + "clean_up": 0.0004933271557092667, + "file_setup": 1.3198325717821717, + "nargo_checks": 3.684743066318333 }, + "file_size": 646, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "acir_opcodes": 1, + "circuit_size": 6, + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" }, { - "circuit_id": "1d85f8c0-a58c-491e-9d17-4ce07902f6be", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T02:08:11.224Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.392307S", - "compute_times": { - "total": 7.469517232850194, - "queued": 8.534181, - "clean_up": 0.001875605434179306, - "create_cpp": 0.053479813039302826, - "file_setup": 0.22859745100140572, - "compile_cpp": 4.603027116507292, - "create_r1cs": 0.010996641591191292, - "save_results": 0.005396205931901932, - "get_r1cs_info": 0.0006968453526496887, - "groth16_setup": 1.3165561687201262, - "export_verification_key": 1.2459994573146105, - "download_trusted_setup_file": 0.002440648153424263 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:01.042Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.321372S", + "compute_time_sec": 1.321372, + "compute_times": { + "total": 2.4821140887215734, + "queued": 1.147771, + "file_setup": 1.3312397608533502, + "nargo_checks": 1.1506206970661879 + }, + "file_size": 649, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:42:50.433Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.254776S", + "compute_time_sec": 1.254776, + "compute_times": { + "total": 2.4055077601224184, + "queued": 1.040189, + "file_setup": 1.3746437635272741, + "nargo_checks": 1.0305692087858915 + }, + "file_size": 653, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:40:12.889Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.165442S", + "compute_time_sec": 2.165442, + "compute_times": { + "total": 3.31729419529438, + "queued": 18.785446, + "file_setup": 1.312557090073824, + "nargo_checks": 2.004337651655078 }, + "file_size": 642, + "uploaded_file_name": "", "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "circuit_id": "8ce7821a-ac27-47d4-b226-4fc1757f0a30", - "circuit_name": "circom-multiplier2", + "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:10.585Z", + "date_created": "2023-12-02T21:14:03.406Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.604279S", - "compute_times": { - "total": 4.635603144066408, - "queued": 0.97709, - "clean_up": 0.00047702505253255367, - "create_cpp": 0.030288457055576146, - "file_setup": 0.19134966598358005, - "compile_cpp": 2.92873600195162, - "create_r1cs": 0.005112337996251881, - "save_results": 0.003062595962546766, - "get_r1cs_info": 0.0002235310385003686, - "groth16_setup": 0.70648637204431, - "export_verification_key": 0.7690231120213866, - "download_trusted_setup_file": 0.000696779927238822 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.700449S", + "compute_time_sec": 2.700449, + "compute_times": { + "total": 3.862834582105279, + "queued": 1.240923, + "clean_up": 0.0048230309039354324, + "file_setup": 1.4248666781932116, + "create_r1cs": 0.019674228504300117, + "create_wasm": 0.02921307645738125, + "save_results": 0.003329528495669365, + "get_r1cs_info": 0.00027392804622650146, + "groth16_setup": 1.1982815023511648, + "export_verification_key": 1.1812070365995169, + "download_trusted_setup_file": 0.0009372644126415253 }, + "file_size": 1537235, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "57a370e8-d904-4e45-ad58-196db3d30f4d", - "circuit_name": "circom-multiplier2", + "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:10.148Z", + "date_created": "2023-12-02T21:12:15.898Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.670361S", - "compute_times": { - "total": 7.7598298992961645, - "queued": 1.340101, - "clean_up": 0.0019132401794195175, - "create_cpp": 0.047642480581998825, - "file_setup": 0.28451264277100563, - "compile_cpp": 4.557841159403324, - "create_r1cs": 0.01719365455210209, - "save_results": 0.00552779994904995, - "get_r1cs_info": 0.0007379818707704544, - "groth16_setup": 1.4282774832099676, - "export_verification_key": 1.4133095126599073, - "download_trusted_setup_file": 0.002416664734482765 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.249043S", + "compute_time_sec": 7.249043, + "compute_times": { + "total": 8.408733254298568, + "queued": 1.325923, + "clean_up": 0.006613824516534805, + "create_cpp": 0.05350269004702568, + "file_setup": 1.4143117368221283, + "compile_cpp": 4.4514400865882635, + "create_r1cs": 0.020590879023075104, + "save_results": 0.002988070249557495, + "get_r1cs_info": 0.00036310404539108276, + "groth16_setup": 1.2632708046585321, + "export_verification_key": 1.1944759152829647, + "download_trusted_setup_file": 0.0009543616324663162 }, + "file_size": 1719868, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "44c0f928-5c25-4bc0-a78f-1523c457f5af", - "circuit_name": "circom-multiplier2", + "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:10.140Z", + "date_created": "2023-12-02T21:08:10.932Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.658778S", - "compute_times": { - "total": 7.742852771654725, - "queued": 1.336022, - "clean_up": 0.0016133859753608704, - "create_cpp": 0.05547862686216831, - "file_setup": 0.29617039300501347, - "compile_cpp": 4.542897034436464, - "create_r1cs": 0.017181839793920517, - "save_results": 0.0058561451733112335, - "get_r1cs_info": 0.0004195272922515869, - "groth16_setup": 1.408520732074976, - "export_verification_key": 1.4131443835794926, - "download_trusted_setup_file": 0.0012377090752124786 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.128823S", + "compute_time_sec": 7.128823, + "compute_times": { + "total": 8.290217800065875, + "queued": 1.176634, + "clean_up": 0.006579896435141563, + "create_cpp": 0.049633922055363655, + "file_setup": 1.407272644340992, + "compile_cpp": 4.411186024546623, + "create_r1cs": 0.020449023693799973, + "save_results": 0.0031916871666908264, + "get_r1cs_info": 0.0003460422158241272, + "groth16_setup": 1.1822046767920256, + "export_verification_key": 1.2081128470599651, + "download_trusted_setup_file": 0.0009996052831411362 }, + "file_size": 1719871, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "123f913d-504d-4246-8d29-85a68b8f685c", - "circuit_name": "circom-multiplier2", + "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:08:09.711Z", + "date_created": "2023-12-02T21:03:13.779Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.738898S", - "compute_times": { - "total": 7.813894247636199, - "queued": 1.100992, - "clean_up": 0.0010037794709205627, - "create_cpp": 0.04616817645728588, - "file_setup": 0.24978489242494106, - "compile_cpp": 4.788679093122482, - "create_r1cs": 0.016563747078180313, - "save_results": 0.004571622237563133, - "get_r1cs_info": 0.0006682649254798889, - "groth16_setup": 1.4005869701504707, - "export_verification_key": 1.3029269501566887, - "download_trusted_setup_file": 0.0024551209062337875 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.214778S", + "compute_time_sec": 0.214778, + "compute_times": { + "total": 1.39355612359941, + "queued": 1.091083, + "create_cpp": 0.005528604611754417, + "file_setup": 1.387480080127716 }, + "file_size": 1086, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "ed55e890-c65c-4978-94c2-62c36da8309a", - "circuit_name": "circom-multiplier2", + "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:14.554Z", + "date_created": "2023-12-02T20:54:52.720Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.639042S", - "compute_times": { - "total": 4.670196183025837, - "queued": 1.192037, - "clean_up": 0.0004636390367522836, - "create_cpp": 0.029885608004406095, - "file_setup": 0.19036857096944004, - "compile_cpp": 2.9288433239562437, - "create_r1cs": 0.005293185007758439, - "save_results": 0.002376335905864835, - "get_r1cs_info": 0.00021172501146793365, - "groth16_setup": 0.7855832269415259, - "export_verification_key": 0.7263032890623435, - "download_trusted_setup_file": 0.0007130390731617808 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.127570S", + "compute_time_sec": 7.12757, + "compute_times": { + "total": 8.300101362168789, + "queued": 1.180095, + "clean_up": 0.006741989403963089, + "create_cpp": 0.04977302439510822, + "file_setup": 1.3937485367059708, + "compile_cpp": 4.4108633529394865, + "create_r1cs": 0.020317360758781433, + "save_results": 0.003299059346318245, + "get_r1cs_info": 0.0003479979932308197, + "groth16_setup": 1.2352007273584604, + "export_verification_key": 1.1786142773926258, + "download_trusted_setup_file": 0.0009277686476707458 }, + "file_size": 1720407, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "f6bf151d-2fd0-488a-8dd5-f8fafee7a06b", - "circuit_name": "circom-multiplier2", + "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:14.087Z", + "date_created": "2023-12-02T20:54:30.461Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.582657S", - "compute_times": { - "total": 7.672385489568114, - "queued": 1.09439, - "clean_up": 0.002001248300075531, - "create_cpp": 0.05665309727191925, - "file_setup": 0.28869662806391716, - "compile_cpp": 4.477934097871184, - "create_r1cs": 0.018961958587169647, - "save_results": 0.005625590682029724, - "get_r1cs_info": 0.0006451867520809174, - "groth16_setup": 1.400868695229292, - "export_verification_key": 1.4178343042731285, - "download_trusted_setup_file": 0.002523709088563919 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.186269S", + "compute_time_sec": 7.186269, + "compute_times": { + "total": 8.347925985231996, + "queued": 1.11165, + "clean_up": 0.006883986294269562, + "create_cpp": 0.055882176384329796, + "file_setup": 1.3711591251194477, + "compile_cpp": 4.481259575113654, + "create_r1cs": 0.020169200375676155, + "save_results": 0.003566296771168709, + "get_r1cs_info": 0.00035143643617630005, + "groth16_setup": 1.192156182602048, + "export_verification_key": 1.2153031043708324, + "download_trusted_setup_file": 0.0009823162108659744 }, + "file_size": 1720386, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "1ffbe8f9-87c8-4e42-baa8-7aa33c4d17ee", - "circuit_name": "circom-multiplier2", + "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:13.808Z", + "date_created": "2023-12-02T20:51:38.256Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.789518S", - "compute_times": { - "total": 7.865276617929339, - "queued": 1.233985, - "clean_up": 0.0009253527969121933, - "create_cpp": 0.057666877284646034, - "file_setup": 0.42827480658888817, - "compile_cpp": 4.4704748671501875, - "create_r1cs": 0.009908992797136307, - "save_results": 0.0053389593958854675, - "get_r1cs_info": 0.0004046596586704254, - "groth16_setup": 1.474434545263648, - "export_verification_key": 1.4163631908595562, - "download_trusted_setup_file": 0.0010532364249229431 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.180372S", + "compute_time_sec": 0.180372, + "compute_times": { + "total": 1.3365695010870695, + "queued": 1.087627, + "create_cpp": 0.005229467526078224, + "file_setup": 1.331127068027854 }, + "file_size": 4524, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "d40bcb67-e940-4fb1-b733-5382a0d24818", - "circuit_name": "circom-multiplier2", + "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:07:13.622Z", + "date_created": "2023-12-02T20:51:05.065Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.484271S", - "compute_times": { - "total": 7.556855067610741, - "queued": 1.163986, - "clean_up": 0.00173221156001091, - "create_cpp": 0.053104178979992867, - "file_setup": 0.25219348073005676, - "compile_cpp": 4.602972414344549, - "create_r1cs": 0.016127610579133034, - "save_results": 0.0044687893241643906, - "get_r1cs_info": 0.0006831474602222443, - "groth16_setup": 1.384469285607338, - "export_verification_key": 1.2383170630782843, - "download_trusted_setup_file": 0.002438986673951149 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.227270S", + "compute_time_sec": 0.22727, + "compute_times": { + "total": 1.387567725032568, + "queued": 1.200424, + "create_cpp": 0.005518514662981033, + "file_setup": 1.3818144612014294 }, + "file_size": 4516, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "c43fd46d-1d67-4e43-9087-2fd558de038f", - "circuit_name": "circom-multiplier2", + "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:24.311Z", + "date_created": "2023-12-02T20:49:50.199Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.415030S", - "compute_times": { - "total": 7.4919023886322975, - "queued": 15.399161, - "clean_up": 0.0017888862639665604, - "create_cpp": 0.04686305299401283, - "file_setup": 0.2366184201091528, - "compile_cpp": 4.676926027983427, - "create_r1cs": 0.016247382387518883, - "save_results": 0.005460144951939583, - "get_r1cs_info": 0.0005027409642934799, - "groth16_setup": 1.222083330154419, - "export_verification_key": 1.2832992672920227, - "download_trusted_setup_file": 0.001483755186200142 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.208167S", + "compute_time_sec": 0.208167, + "compute_times": { + "total": 1.3689671531319618, + "queued": 1.304207, + "create_cpp": 0.005460506305098534, + "file_setup": 1.3632374834269285 }, + "file_size": 4516, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "9e12ff5e-5632-46c4-9ab1-3349ec0b131e", - "circuit_name": "circom-multiplier2", + "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:23.911Z", + "date_created": "2023-12-02T20:47:15.011Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M04.661941S", - "compute_times": { - "total": 4.693298900965601, - "queued": 14.904538, - "clean_up": 0.00046248501166701317, - "create_cpp": 0.030274335062131286, - "file_setup": 0.20949947088956833, - "compile_cpp": 2.9299584419932216, - "create_r1cs": 0.005165933980606496, - "save_results": 0.0026655279798433185, - "get_r1cs_info": 0.00022936402820050716, - "groth16_setup": 0.7548628870863467, - "export_verification_key": 0.7593056479236111, - "download_trusted_setup_file": 0.0007180699612945318 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174086S", + "compute_time_sec": 0.174086, + "compute_times": { + "total": 1.3330576121807098, + "queued": 19.864284, + "create_cpp": 0.005246447399258614, + "file_setup": 1.3275200203061104 }, + "file_size": 4483, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "a5de0eca-b376-4d33-91b6-9a30d4235aa7", - "circuit_name": "circom-multiplier2", + "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:23.662Z", + "date_created": "2023-12-02T20:05:13.309Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.640504S", - "compute_times": { - "total": 4.674585030064918, - "queued": 9.563851, - "clean_up": 0.0004374060081318021, - "create_cpp": 0.029949681949801743, - "file_setup": 0.18676624703221023, - "compile_cpp": 2.926436795038171, - "create_r1cs": 0.00553747802041471, - "save_results": 0.0025256150402128696, - "get_r1cs_info": 0.00030519498977810144, - "groth16_setup": 0.74638494302053, - "export_verification_key": 0.7754071449162439, - "download_trusted_setup_file": 0.0006875250255689025 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.546964S", + "compute_time_sec": 2.546964, + "compute_times": { + "total": 3.7097523529082537, + "queued": 1.209301, + "clean_up": 0.0005107801407575607, + "file_setup": 1.3446728140115738, + "create_r1cs": 0.007440237328410149, + "create_wasm": 0.016755376011133194, + "save_results": 0.0036186836659908295, + "get_r1cs_info": 0.00025043077766895294, + "groth16_setup": 1.1559293158352375, + "export_verification_key": 1.1794348638504744, + "download_trusted_setup_file": 0.0008941646665334702 }, + "file_size": 54024, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "3eec50d0-8bc1-4266-8506-a76961a3627d", - "circuit_name": "circom-multiplier2", + "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:03:23.403Z", + "date_created": "2023-12-02T20:03:06.093Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.659658S", - "compute_times": { - "total": 4.6912087330129, - "queued": 0.999787, - "clean_up": 0.0005085699958726764, - "create_cpp": 0.030190049903467298, - "file_setup": 0.1714191420469433, - "compile_cpp": 2.942204582039267, - "create_r1cs": 0.0055296330247074366, - "save_results": 0.0026200800202786922, - "get_r1cs_info": 0.0003244479885324836, - "groth16_setup": 0.7581778330495581, - "export_verification_key": 0.7793734009610489, - "download_trusted_setup_file": 0.0007095789769664407 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.578866S", + "compute_time_sec": 2.578866, + "compute_times": { + "total": 3.752036551013589, + "queued": 19.44917, + "clean_up": 0.0005340799689292908, + "file_setup": 1.3582166992127895, + "create_r1cs": 0.007758324965834618, + "create_wasm": 0.01886793226003647, + "save_results": 0.0029870178550481796, + "get_r1cs_info": 0.0002993810921907425, + "groth16_setup": 1.1675188429653645, + "export_verification_key": 1.1944289654493332, + "download_trusted_setup_file": 0.0009995810687541962 }, + "file_size": 54024, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "596a0973-b6a7-4e8f-b6d6-9f2ddb483f02", - "circuit_name": "circom-multiplier2", + "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T02:01:10.696Z", + "date_created": "2023-12-02T19:28:31.237Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M04.600004S", - "compute_times": { - "total": 4.634266157983802, - "queued": 1.007035, - "clean_up": 0.0004430810222402215, - "create_cpp": 0.029862282914109528, - "file_setup": 0.19106685707811266, - "compile_cpp": 2.921206888044253, - "create_r1cs": 0.005109910038299859, - "save_results": 0.003121474990621209, - "get_r1cs_info": 0.0002160179428756237, - "groth16_setup": 0.7425107170129195, - "export_verification_key": 0.7398575020488352, - "download_trusted_setup_file": 0.000722195953130722 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.697079S", + "compute_time_sec": 2.697079, + "compute_times": { + "total": 3.860771119594574, + "queued": 45.887615, + "clean_up": 0.0005786605179309845, + "file_setup": 1.3233154714107513, + "create_r1cs": 0.007670976221561432, + "create_wasm": 0.017503729090094566, + "save_results": 0.04876627214252949, + "get_r1cs_info": 0.0002490133047103882, + "groth16_setup": 1.2176049146801233, + "export_verification_key": 1.2436372973024845, + "download_trusted_setup_file": 0.0010085124522447586 }, + "file_size": 54024, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "4f5b0304-a53e-45e9-b83f-8e06611dc640", - "circuit_name": "circom-multiplier2", + "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:29.407Z", + "date_created": "2023-12-02T05:31:32.434Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.795432S", - "compute_times": { - "total": 7.873008634895086, - "queued": 31.342195, - "clean_up": 0.0018993616104125977, - "create_cpp": 0.055077794939279556, - "file_setup": 0.24360725842416286, - "compile_cpp": 4.703614357858896, - "create_r1cs": 0.02081167884171009, - "save_results": 0.0056080929934978485, - "get_r1cs_info": 0.0008842349052429199, - "groth16_setup": 1.4346165657043457, - "export_verification_key": 1.4034891910851002, - "download_trusted_setup_file": 0.002933880314230919 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.383253S", + "compute_time_sec": 2.383253, + "compute_times": { + "total": 3.5439179949462414, + "queued": 1.183641, + "clean_up": 0.0006380276754498482, + "file_setup": 1.3339016744866967, + "create_r1cs": 0.007884668186306953, + "create_wasm": 0.01797499507665634, + "save_results": 0.004143344238400459, + "get_r1cs_info": 0.000565793365240097, + "groth16_setup": 1.0339104048907757, + "export_verification_key": 1.1432477626949549, + "download_trusted_setup_file": 0.0013524582609534264 }, + "file_size": 54025, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "64c8849e-21b2-46a5-8786-87d5fe82f4d6", - "circuit_name": "circom-multiplier2", + "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:28.573Z", + "date_created": "2023-12-02T05:27:06.804Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.741476S", - "compute_times": { - "total": 7.819348992779851, - "queued": 31.913431, - "clean_up": 0.0019285250455141068, - "create_cpp": 0.04896355792880058, - "file_setup": 0.23411452770233154, - "compile_cpp": 4.654933050274849, - "create_r1cs": 0.016990680247545242, - "save_results": 0.005897335708141327, - "get_r1cs_info": 0.0007398743182420731, - "groth16_setup": 1.392984814941883, - "export_verification_key": 1.4599114395678043, - "download_trusted_setup_file": 0.0024141818284988403 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.387682S", + "compute_time_sec": 7.387682, + "compute_times": { + "total": 8.548618336208165, + "queued": 18.71772, + "clean_up": 0.0012578116729855537, + "create_cpp": 0.04181432072073221, + "file_setup": 1.3276818674057722, + "compile_cpp": 5.035406060516834, + "create_r1cs": 0.008279835805296898, + "save_results": 0.003593659959733486, + "get_r1cs_info": 0.0006254948675632477, + "groth16_setup": 1.091116052120924, + "export_verification_key": 1.0372483730316162, + "download_trusted_setup_file": 0.0012065665796399117 }, + "file_size": 229069, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "circuit_id": "696b5f3c-ac4c-4c88-a40a-7b8d5239cb47", - "circuit_name": "circom-multiplier2", + "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:28.552Z", + "date_created": "2023-12-02T05:16:12.963Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M04.657088S", - "compute_times": { - "total": 4.6882268759654835, - "queued": 29.904162, - "clean_up": 0.0004538500215858221, - "create_cpp": 0.029869360965676606, - "file_setup": 0.18104861094616354, - "compile_cpp": 2.9436706830747426, - "create_r1cs": 0.005239389953203499, - "save_results": 0.0024021610151976347, - "get_r1cs_info": 0.00020038604270666838, - "groth16_setup": 0.762411353061907, - "export_verification_key": 0.7620555579196662, - "download_trusted_setup_file": 0.0007234419463202357 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.167528S", + "compute_time_sec": 0.167528, + "compute_times": { + "total": 1.3633314277976751, + "queued": 1.187746, + "create_cpp": 0.005508816801011562, + "file_setup": 1.3575280215591192 }, + "file_size": 3143, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "b5d133fc-f5f0-4fd8-8a37-bec3f105f957", - "circuit_name": "circom-multiplier2", + "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:28.531Z", + "date_created": "2023-12-02T05:16:02.472Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.815061S", - "compute_times": { - "total": 7.892049107700586, - "queued": 26.139954, - "clean_up": 0.0009030122309923172, - "create_cpp": 0.04740026593208313, - "file_setup": 0.24122893437743187, - "compile_cpp": 4.7460735235363245, - "create_r1cs": 0.010444654151797295, - "save_results": 0.003931155428290367, - "get_r1cs_info": 0.0007425416260957718, - "groth16_setup": 1.4072796031832695, - "export_verification_key": 1.4309465549886227, - "download_trusted_setup_file": 0.0025080330669879913 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.364457S", + "compute_time_sec": 0.364457, + "compute_times": { + "total": 1.5177692053839564, + "queued": 1.273971, + "create_cpp": 0.0061752675101161, + "file_setup": 1.5113406758755445 }, + "file_size": 3149, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "b4a23df2-a7e7-4eb8-9ce1-f9d52a7b5efd", - "circuit_name": "circom-multiplier2", + "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:27.630Z", + "date_created": "2023-12-02T05:14:05.849Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.577744S", - "compute_times": { - "total": 7.656200651079416, - "queued": 24.444641, - "clean_up": 0.0016275551170110703, - "create_cpp": 0.04782847873866558, - "file_setup": 0.25123047828674316, - "compile_cpp": 4.509421624243259, - "create_r1cs": 0.017046067863702774, - "save_results": 0.005663003772497177, - "get_r1cs_info": 0.000681556761264801, - "groth16_setup": 1.3982542753219604, - "export_verification_key": 1.421325797215104, - "download_trusted_setup_file": 0.0025193486362695694 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.285739S", + "compute_time_sec": 0.285739, + "compute_times": { + "total": 1.433143719099462, + "queued": 1.368079, + "create_cpp": 0.00570196658372879, + "file_setup": 1.4271633345633745 }, + "file_size": 3146, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "dc9db61e-d2c3-40f8-a3f3-afbd9e8042c4", - "circuit_name": "circom-multiplier2", + "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:27.313Z", + "date_created": "2023-12-02T05:11:33.616Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.545149S", - "compute_times": { - "total": 7.623603418469429, - "queued": 24.498309, - "clean_up": 0.0017016865313053131, - "create_cpp": 0.04762609116733074, - "file_setup": 0.24350149184465408, - "compile_cpp": 4.597848556935787, - "create_r1cs": 0.012152310460805893, - "save_results": 0.005475817248225212, - "get_r1cs_info": 0.0004205126315355301, - "groth16_setup": 1.3248953483998775, - "export_verification_key": 1.3882451467216015, - "download_trusted_setup_file": 0.0009885765612125397 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.190295S", + "compute_time_sec": 0.190295, + "compute_times": { + "total": 1.3479114715009928, + "queued": 1.174311, + "create_cpp": 0.006716226227581501, + "file_setup": 1.3409330770373344 }, + "file_size": 3148, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "2c1beb82-6dc9-44ea-bbf7-3514b27e47fe", - "circuit_name": "circom-multiplier2", + "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:27.047Z", + "date_created": "2023-12-02T05:09:43.690Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M04.629165S", - "compute_times": { - "total": 4.66044994990807, - "queued": 25.910415, - "clean_up": 0.00046650797594338655, - "create_cpp": 0.030314832110889256, - "file_setup": 0.17054930399172008, - "compile_cpp": 2.9262271099723876, - "create_r1cs": 0.005123129929415882, - "save_results": 0.0024022479774430394, - "get_r1cs_info": 0.0003190510906279087, - "groth16_setup": 0.7423932970268652, - "export_verification_key": 0.7817557220114395, - "download_trusted_setup_file": 0.0007441989146173 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.180634S", + "compute_time_sec": 0.180634, + "compute_times": { + "total": 1.3301707739010453, + "queued": 1.267544, + "create_cpp": 0.00672531221061945, + "file_setup": 1.3231740267947316 }, + "file_size": 3140, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "d492fd4d-7509-45fb-87b3-adef4fd745df", - "circuit_name": "circom-multiplier2", + "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:26.747Z", + "date_created": "2023-12-02T05:08:33.991Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M04.578700S", - "compute_times": { - "total": 4.609950889949687, - "queued": 16.176819, - "clean_up": 0.0004615719662979245, - "create_cpp": 0.029976019985042512, - "file_setup": 0.16958309896290302, - "compile_cpp": 2.9370939240325242, - "create_r1cs": 0.005518535035662353, - "save_results": 0.0025302410358563066, - "get_r1cs_info": 0.00021990097593516111, - "groth16_setup": 0.7456176759442315, - "export_verification_key": 0.7180980830453336, - "download_trusted_setup_file": 0.0006872049998492002 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.182958S", + "compute_time_sec": 0.182958, + "compute_times": { + "total": 1.3482676716521382, + "queued": 23.976753, + "create_cpp": 0.005651121959090233, + "file_setup": 1.3422273648902774 }, + "file_size": 3141, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "b4dd22c7-ef45-415b-9adb-b55796852c23", - "circuit_name": "circom-multiplier2", + "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:26.416Z", + "date_created": "2023-12-02T04:48:47.509Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M04.686577S", - "compute_times": { - "total": 4.717802106984891, - "queued": 6.382446, - "clean_up": 0.000551781035028398, - "create_cpp": 0.029999293037690222, - "file_setup": 0.18139734293799847, - "compile_cpp": 2.932805340969935, - "create_r1cs": 0.005408287048339844, - "save_results": 0.015873302007094026, - "get_r1cs_info": 0.00022628996521234512, - "groth16_setup": 0.7609705639770254, - "export_verification_key": 0.7896749229403213, - "download_trusted_setup_file": 0.0007316060364246368 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.247686S", + "compute_time_sec": 0.247686, + "compute_times": { + "total": 1.4311082614585757, + "queued": 1.440336, + "create_cpp": 0.0059531861916184425, + "file_setup": 1.4248412810266018 }, + "file_size": 3144, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "62424675-e5a3-472b-b6d9-360469112a6c", - "circuit_name": "circom-multiplier2", + "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:52:26.115Z", + "date_created": "2023-12-02T04:47:48.347Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M04.768701S", - "compute_times": { - "total": 4.799833326018415, - "queued": 0.976508, - "clean_up": 0.00047689699567854404, - "create_cpp": 0.030055438983254135, - "file_setup": 0.17185658100061119, - "compile_cpp": 2.9329681789968163, - "create_r1cs": 0.005263481056317687, - "save_results": 0.09661219897679985, - "get_r1cs_info": 0.00022084394004195929, - "groth16_setup": 0.7651074749883264, - "export_verification_key": 0.7962674020091072, - "download_trusted_setup_file": 0.0007937300251796842 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 invpcid_single intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities", - "Model:": "143", - "CPU(s):": "128", - "BogoMIPS:": "5600.00", - "L2 cache:": "128 MiB (64 instances)", - "L3 cache:": "120 MiB (2 instances)", - "Stepping:": "7", - "L1d cache:": "3 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8462Y+", - "CPU max MHz:": "4100.0000", - "CPU min MHz:": "800.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "52 bits physical, 57 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0,5-64,69-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-4,65-68", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Enhanced IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS SW sequence", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.186337S", + "compute_time_sec": 0.186337, + "compute_times": { + "total": 1.3291292237117887, + "queued": 1.389798, + "create_cpp": 0.005445321090519428, + "file_setup": 1.3232828453183174 }, + "file_size": 3144, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "16c96d49-925a-4232-8da4-c43026de854e", - "circuit_name": "circom-multiplier2", + "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:13.892Z", + "date_created": "2023-12-02T04:47:16.025Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.885708S", - "compute_times": { - "total": 7.955762881785631, - "queued": 28.847048, - "clean_up": 0.0018043965101242065, - "create_cpp": 0.055242860689759254, - "file_setup": 0.24882620573043823, - "compile_cpp": 4.8809529915452, - "create_r1cs": 0.01775236241519451, - "save_results": 0.006603563204407692, - "get_r1cs_info": 0.000814288854598999, - "groth16_setup": 1.4022877030074596, - "export_verification_key": 1.3382868971675634, - "download_trusted_setup_file": 0.002887807786464691 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.203844S", + "compute_time_sec": 0.203844, + "compute_times": { + "total": 1.358934978954494, + "queued": 1.23962, + "create_cpp": 0.005131745710968971, + "file_setup": 1.3535515246912837 }, + "file_size": 3147, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "01d61417-f3c8-405d-8327-8676c11b920c", - "circuit_name": "circom-multiplier2", + "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", + "circuit_name": "c", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:13.567Z", + "date_created": "2023-12-02T04:44:43.907Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.745866S", - "compute_times": { - "total": 7.822312492877245, - "queued": 25.557495, - "clean_up": 0.0016726050525903702, - "create_cpp": 0.054300736635923386, - "file_setup": 0.24556394666433334, - "compile_cpp": 4.760834071785212, - "create_r1cs": 0.011471176519989967, - "save_results": 0.005745843052864075, - "get_r1cs_info": 0.0006968062371015549, - "groth16_setup": 1.4245723970234394, - "export_verification_key": 1.3145959675312042, - "download_trusted_setup_file": 0.0024240929633378983 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.211198S", + "compute_time_sec": 0.211198, + "compute_times": { + "total": 1.3726867232471704, + "queued": 21.28569, + "create_cpp": 0.04041997902095318, + "file_setup": 1.3318777102977037 }, + "file_size": 3118, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "circuit_id": "68922dfc-836b-4954-915d-91e6474e1b5d", - "circuit_name": "circom-multiplier2", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_name": "sudoku", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:13.542Z", + "date_created": "2023-12-02T03:58:52.961Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.127036S", - "compute_times": { - "total": 8.208296919241548, - "queued": 23.853413, - "clean_up": 0.0016598310321569443, - "create_cpp": 0.046626683324575424, - "file_setup": 0.24938496574759483, - "compile_cpp": 5.05383531935513, - "create_r1cs": 0.050674159079790115, - "save_results": 0.005311015993356705, - "get_r1cs_info": 0.000824756920337677, - "groth16_setup": 1.4834840036928654, - "export_verification_key": 1.3135647680610418, - "download_trusted_setup_file": 0.0025572720915079117 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M30.485776S", + "compute_time_sec": 30.485776, + "compute_times": { + "total": 31.713325195014477, + "queued": 1.53179, + "clean_up": 0.0050907619297504425, + "create_cpp": 0.5502202846109867, + "file_setup": 1.4041321221739054, + "compile_cpp": 8.600912608206272, + "create_r1cs": 0.5660600401461124, + "save_results": 0.015263739973306656, + "get_r1cs_info": 0.0007791165262460709, + "groth16_setup": 18.966865327209234, + "export_verification_key": 1.5605580545961857, + "download_trusted_setup_file": 0.043034087866544724 }, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 11906, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "circuit_id": "03dcdd85-9300-440b-8353-91bea904d8c5", - "circuit_name": "circom-multiplier2", + "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", + "circuit_name": "sudoku", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:12.640Z", + "date_created": "2023-12-02T03:57:39.629Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.854047S", - "compute_times": { - "total": 7.929084803909063, - "queued": 23.597366, - "clean_up": 0.0012285895645618439, - "create_cpp": 0.04848377965390682, - "file_setup": 0.24958525598049164, - "compile_cpp": 4.769202491268516, - "create_r1cs": 0.016365252435207367, - "save_results": 0.005111081525683403, - "get_r1cs_info": 0.0006984081119298935, - "groth16_setup": 1.324900783598423, - "export_verification_key": 1.5104059372097254, - "download_trusted_setup_file": 0.0024766679853200912 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M30.503827S", + "compute_time_sec": 30.503827, + "compute_times": { + "total": 31.731675423681736, + "queued": 1.329617, + "clean_up": 0.005224447697401047, + "create_cpp": 0.5869219042360783, + "file_setup": 1.396010784432292, + "compile_cpp": 8.755487740039825, + "create_r1cs": 0.6137677505612373, + "save_results": 0.015961000695824623, + "get_r1cs_info": 0.0007797814905643463, + "groth16_setup": 18.781834876164794, + "export_verification_key": 1.5326797477900982, + "download_trusted_setup_file": 0.04255225136876106 }, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 11906, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "circuit_id": "53eb66ff-b56b-4cb7-a75a-49924b2fb393", - "circuit_name": "circom-multiplier2", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_name": "sudoku", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:12.394Z", + "date_created": "2023-12-02T03:53:41.285Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.394188S", - "compute_times": { - "total": 7.469893058761954, - "queued": 21.7528, - "clean_up": 0.0017232540994882584, - "create_cpp": 0.04593514837324619, - "file_setup": 0.2557643633335829, - "compile_cpp": 4.412009971216321, - "create_r1cs": 0.009809941053390503, - "save_results": 0.00808953307569027, - "get_r1cs_info": 0.000814361497759819, - "groth16_setup": 1.357611108571291, - "export_verification_key": 1.3745716717094183, - "download_trusted_setup_file": 0.0029620975255966187 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M29.404746S", + "compute_time_sec": 29.404746, + "compute_times": { + "total": 30.63611113280058, + "queued": 1.393016, + "clean_up": 0.004741033539175987, + "create_cpp": 0.5701096802949905, + "file_setup": 1.4058604761958122, + "compile_cpp": 8.18474044650793, + "create_r1cs": 0.5578694771975279, + "save_results": 0.012727703899145126, + "get_r1cs_info": 0.0007434040307998657, + "groth16_setup": 18.383400244638324, + "export_verification_key": 1.4725701548159122, + "download_trusted_setup_file": 0.042938267812132835 }, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 11906, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "circuit_id": "407bcfed-fe41-4066-9332-aeb40b808d06", - "circuit_name": "circom-multiplier2", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_name": "sudoku", "circuit_type": "circom", - "date_created": "2024-01-15T01:44:12.156Z", + "date_created": "2023-12-02T03:50:43.511Z", + "num_proofs": 1, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.571485S", - "compute_times": { - "total": 7.641632162034512, - "queued": 18.226087, - "clean_up": 0.0013474393635988235, - "create_cpp": 0.05902073346078396, - "file_setup": 0.23511924035847187, - "compile_cpp": 4.656228628009558, - "create_r1cs": 0.018529707565903664, - "save_results": 0.004187965765595436, - "get_r1cs_info": 0.0008369125425815582, - "groth16_setup": 1.2646941412240267, - "export_verification_key": 1.3983517494052649, - "download_trusted_setup_file": 0.002851281315088272 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M28.987369S", + "compute_time_sec": 28.987369, + "compute_times": { + "total": 30.219565767794847, + "queued": 73.815898, + "clean_up": 0.005328845232725143, + "create_cpp": 0.5412574652582407, + "file_setup": 1.408054981380701, + "compile_cpp": 7.979971516877413, + "create_r1cs": 0.5340761709958315, + "save_results": 0.10810003615915775, + "get_r1cs_info": 0.0008541643619537354, + "groth16_setup": 18.02999261394143, + "export_verification_key": 1.5689898952841759, + "download_trusted_setup_file": 0.04256066307425499 }, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, + "num_constraints": 11906, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "circuit_id": "a7c1a9a9-2df3-4f76-9be0-1bb8456c22db", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:11.755Z", + "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:28:21.086Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.694656S", - "compute_times": { - "total": 7.773913914337754, - "queued": 9.755186, - "clean_up": 0.0017512477934360504, - "create_cpp": 0.05254339054226875, - "file_setup": 0.25238266587257385, - "compile_cpp": 4.748115291818976, - "create_r1cs": 0.017892709001898766, - "save_results": 0.005697643384337425, - "get_r1cs_info": 0.0006967000663280487, - "groth16_setup": 1.3444917406886816, - "export_verification_key": 1.3474417924880981, - "download_trusted_setup_file": 0.0025170259177684784 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M12.293107S", + "compute_time_sec": 12.293107, + "compute_times": { + "total": 1.540343570522964, + "queued": 1.149716, + "file_setup": 1.5400111814960837 }, + "file_size": 3876, + "uploaded_file_name": "", "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", + "curve": "bls24-315", + "gnark_version": "v0.9.0" }, { - "circuit_id": "7b7b7b2a-451c-4d73-ab46-f0e66c2c85ca", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:44:11.486Z", + "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:27:16.183Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.630543S", - "compute_times": { - "total": 7.710038185119629, - "queued": 1.150464, - "clean_up": 0.0011645127087831497, - "create_cpp": 0.058946333825588226, - "file_setup": 0.25080287642776966, - "compile_cpp": 4.800692165270448, - "create_r1cs": 0.01764843240380287, - "save_results": 0.004682136699557304, - "get_r1cs_info": 0.0006801802664995193, - "groth16_setup": 1.2236122898757458, - "export_verification_key": 1.3488865680992603, - "download_trusted_setup_file": 0.002442905679345131 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M16.323835S", + "compute_time_sec": 16.323835, + "compute_times": { + "total": 17.493196861818433, + "queued": 20.294201, + "compile": 15.894271181896329, + "clean_up": 0.06409060023725033, + "file_setup": 1.479825496673584, + "save_results": 0.030155125074088573, + "compile_r1cs_and_keygen": 0.024464260786771774 }, + "file_size": 19740582, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "curve": "bls24-315", + "gnark_version": "v0.9.0" }, { - "circuit_id": "02c640e5-cfcb-41ae-af49-b931f9a8c09c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:24.401Z", + "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", + "circuit_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:02:34.146Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.241318S", - "compute_times": { - "total": 8.329373510554433, - "queued": 1.121606, - "clean_up": 0.0019346550107002258, - "create_cpp": 0.05594826489686966, - "file_setup": 0.27456157468259335, - "compile_cpp": 4.8171467911452055, - "create_r1cs": 0.026553984731435776, - "save_results": 0.006161559373140335, - "get_r1cs_info": 0.0005842037498950958, - "groth16_setup": 1.7246721610426903, - "export_verification_key": 1.4198596961796284, - "download_trusted_setup_file": 0.001470223069190979 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M12.571758S", + "compute_time_sec": 12.571758, + "compute_times": { + "total": 13.761676067486405, + "queued": 1.17776, + "compile": 12.108159688301384, + "clean_up": 0.0739858876913786, + "file_setup": 1.5122289564460516, + "save_results": 0.0421032914891839, + "compile_r1cs_and_keygen": 0.02487844880670309 }, + "file_size": 19740713, + "uploaded_file_name": "", "verification_key": null, "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "curve": "bw6-633", + "gnark_version": "v0.9.0" }, { - "circuit_id": "723f695f-ceca-435e-9423-fa9623b26962", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:24.332Z", + "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", + "circuit_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:54:25.971Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.354681S", - "compute_times": { - "total": 8.443675557151437, - "queued": 1.117419, - "clean_up": 0.0017919130623340607, - "create_cpp": 0.04705219343304634, - "file_setup": 0.2759277820587158, - "compile_cpp": 4.905571544542909, - "create_r1cs": 0.009557157754898071, - "save_results": 0.006301635876297951, - "get_r1cs_info": 0.00048459507524967194, - "groth16_setup": 1.7585814129561186, - "export_verification_key": 1.4364026803523302, - "download_trusted_setup_file": 0.0015424657613039017 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M15.096119S", + "compute_time_sec": 15.096119, + "compute_times": { + "total": 16.24127036239952, + "queued": 18.859283, + "compile": 14.711085448041558, + "clean_up": 0.060433197766542435, + "file_setup": 1.4220957215875387, + "save_results": 0.03548778221011162, + "compile_r1cs_and_keygen": 0.011818661354482174 }, + "file_size": 19740996, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "1f4e0b8e-d4a1-40fa-b32b-a8d263ca516f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:23.531Z", + "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:30:10.306Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.068099S", - "compute_times": { - "total": 8.153660595417023, - "queued": 1.071738, - "clean_up": 0.001531621441245079, - "create_cpp": 0.045755207538604736, - "file_setup": 0.2599444091320038, - "compile_cpp": 4.871264658868313, - "create_r1cs": 0.017335444688796997, - "save_results": 0.005486989393830299, - "get_r1cs_info": 0.0006858445703983307, - "groth16_setup": 1.361423509195447, - "export_verification_key": 1.5872800443321466, - "download_trusted_setup_file": 0.0024511031806468964 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.119803S", + "compute_time_sec": 11.119803, + "compute_times": { + "total": 1.4363502692431211, + "queued": 1.930609, + "file_setup": 1.4360267175361514 }, + "file_size": 19555, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "7347f61d-b7cb-4343-a5bf-ebce2cc55f8a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:23.438Z", + "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:26:29.959Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.140640S", - "compute_times": { - "total": 8.235822454094887, - "queued": 1.081126, - "clean_up": 0.0017961226403713226, - "create_cpp": 0.04311295971274376, - "file_setup": 0.27040280401706696, - "compile_cpp": 4.741711314767599, - "create_r1cs": 0.008934037759900093, - "save_results": 0.0059998612850904465, - "get_r1cs_info": 0.0005991235375404358, - "groth16_setup": 1.4837695751339197, - "export_verification_key": 1.6770079042762518, - "download_trusted_setup_file": 0.0020057205110788345 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.939780S", + "compute_time_sec": 13.93978, + "compute_times": { + "total": 1.4325123187154531, + "queued": 47.459123, + "file_setup": 1.4321166425943375 }, + "file_size": 3976, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "60568e01-5db1-4bcc-8b5d-9a5d0c597cfc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:22.740Z", + "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:11:51.697Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.678150S", - "compute_times": { - "total": 7.751736994832754, - "queued": 1.13689, - "clean_up": 0.0017000120133161545, - "create_cpp": 0.04771371744573116, - "file_setup": 0.25899965688586235, - "compile_cpp": 4.8372255228459835, - "create_r1cs": 0.017538156360387802, - "save_results": 0.00590207614004612, - "get_r1cs_info": 0.0006850995123386383, - "groth16_setup": 1.2987089455127716, - "export_verification_key": 1.2803236413747072, - "download_trusted_setup_file": 0.0023799482733011246 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.350788S", + "compute_time_sec": 13.350788, + "compute_times": { + "total": 1.6208326760679483, + "queued": 19.954132, + "file_setup": 1.6202213428914547 }, + "file_size": 3976, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "631a6175-1cf5-4d85-9dba-beb0b7f39ac4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:28:22.659Z", + "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:56:28.365Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.029136S", - "compute_times": { - "total": 8.106146903708577, - "queued": 1.175805, - "clean_up": 0.0012847986072301865, - "create_cpp": 0.046614110469818115, - "file_setup": 0.25902401097118855, - "compile_cpp": 4.752150634303689, - "create_r1cs": 0.009271597489714622, - "save_results": 0.0047521647065877914, - "get_r1cs_info": 0.0004211030900478363, - "groth16_setup": 1.3230060525238514, - "export_verification_key": 1.7080091033130884, - "download_trusted_setup_file": 0.0011603403836488724 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.241851S", + "compute_time_sec": 11.241851, + "compute_times": { + "total": 12.474130183458328, + "queued": 1.420551, + "compile": 10.825671127066016, + "clean_up": 0.061418959870934486, + "file_setup": 1.5227604731917381, + "save_results": 0.04108254425227642, + "compile_r1cs_and_keygen": 0.022699812427163124 }, + "file_size": 19741724, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "fc9f5f13-b3fb-4921-9e72-79d9e66e179b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:43.592Z", + "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:55:10.340Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.307121S", - "compute_times": { - "total": 8.39285988919437, - "queued": 1.170429, - "clean_up": 0.0017455965280532837, - "create_cpp": 0.05315246060490608, - "file_setup": 0.25207769870758057, - "compile_cpp": 4.999113095924258, - "create_r1cs": 0.011692922562360764, - "save_results": 0.005579909309744835, - "get_r1cs_info": 0.0005984082818031311, - "groth16_setup": 1.5826541632413864, - "export_verification_key": 1.484537510201335, - "download_trusted_setup_file": 0.0012438185513019562 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.246401S", + "compute_time_sec": 11.246401, + "compute_times": { + "total": 12.475918658077717, + "queued": 1.465348, + "compile": 10.844971090555191, + "clean_up": 0.05561045743525028, + "file_setup": 1.5209588538855314, + "save_results": 0.032638829201459885, + "compile_r1cs_and_keygen": 0.021452149376273155 }, + "file_size": 19741716, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "e4031874-dd5e-44fe-9c00-d1fd6fb202c6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:43.503Z", + "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:53:46.296Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.235985S", - "compute_times": { - "total": 8.321344017982483, - "queued": 1.068236, - "clean_up": 0.0016151797026395798, - "create_cpp": 0.05340844392776489, - "file_setup": 0.26708511635661125, - "compile_cpp": 4.841666031628847, - "create_r1cs": 0.012876151129603386, - "save_results": 0.005826536566019058, - "get_r1cs_info": 0.0005277041345834732, - "groth16_setup": 1.6289604622870684, - "export_verification_key": 1.5077580194920301, - "download_trusted_setup_file": 0.0011740028858184814 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.258641S", + "compute_time_sec": 11.258641, + "compute_times": { + "total": 12.491810835897923, + "queued": 1.516986, + "compile": 10.808460559695959, + "clean_up": 0.06728884018957615, + "file_setup": 1.5511275846511126, + "save_results": 0.04296918027102947, + "compile_r1cs_and_keygen": 0.021483000367879868 }, + "file_size": 19741716, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "36ed7747-01de-4272-bd8e-e28802d5c668", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:42.642Z", + "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:52:51.464Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M08.289158S", - "compute_times": { - "total": 8.37978408485651, - "queued": 1.052437, - "clean_up": 0.0008304361253976822, - "create_cpp": 0.04860556498169899, - "file_setup": 0.25936984457075596, - "compile_cpp": 5.029499880969524, - "create_r1cs": 0.01772325113415718, - "save_results": 0.0037908367812633514, - "get_r1cs_info": 0.0006020087748765945, - "groth16_setup": 1.5292650777846575, - "export_verification_key": 1.488473566249013, - "download_trusted_setup_file": 0.001187194138765335 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.176662S", + "compute_time_sec": 11.176662, + "compute_times": { + "total": 12.414811408147216, + "queued": 1.367679, + "compile": 10.73251723125577, + "clean_up": 0.08182202465832233, + "file_setup": 1.5543472524732351, + "save_results": 0.023770425468683243, + "compile_r1cs_and_keygen": 0.021878626197576523 }, + "file_size": 19741718, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "25366e22-1f30-4f2b-9c24-b18e1f015e63", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:42.295Z", + "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:50:44.245Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M08.117529S", - "compute_times": { - "total": 8.207875268533826, - "queued": 1.087153, - "clean_up": 0.0015377029776573181, - "create_cpp": 0.04848550260066986, - "file_setup": 0.284574668854475, - "compile_cpp": 4.720001315698028, - "create_r1cs": 0.019293557852506638, - "save_results": 0.005876583978533745, - "get_r1cs_info": 0.0006543230265378952, - "groth16_setup": 1.3807134442031384, - "export_verification_key": 1.7450519409030676, - "download_trusted_setup_file": 0.0012251269072294235 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.090040S", + "compute_time_sec": 14.09004, + "compute_times": { + "total": 1.543837545439601, + "queued": 21.153753, + "file_setup": 1.5434527061879635 }, + "file_size": 4148, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "d5b7ab09-4ca6-4521-a7db-c4d157012d70", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:42.146Z", + "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:29:14.159Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.534592S", - "compute_times": { - "total": 7.610471937805414, - "queued": 1.093385, - "clean_up": 0.0015752967447042465, - "create_cpp": 0.05304797925055027, - "file_setup": 0.26768016442656517, - "compile_cpp": 4.674749160185456, - "create_r1cs": 0.011171292513608932, - "save_results": 0.005162520334124565, - "get_r1cs_info": 0.0006882045418024063, - "groth16_setup": 1.2686850260943174, - "export_verification_key": 1.324827728793025, - "download_trusted_setup_file": 0.002427944913506508 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M10.460622S", + "compute_time_sec": 10.460622, + "compute_times": { + "total": 1.5692181382328272, + "queued": 1.442896, + "file_setup": 1.568734273314476 }, + "file_size": 4148, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "259650fb-5b58-4325-a93c-aae8b050e8de", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:25:41.758Z", + "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:21:25.657Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.763101S", - "compute_times": { - "total": 7.8425999116152525, - "queued": 1.180645, - "clean_up": 0.0010943040251731873, - "create_cpp": 0.04768798500299454, - "file_setup": 0.27950611896812916, - "compile_cpp": 4.640486840158701, - "create_r1cs": 0.017582029104232788, - "save_results": 0.005249707028269768, - "get_r1cs_info": 0.0008139610290527344, - "groth16_setup": 1.330995000898838, - "export_verification_key": 1.5162372961640358, - "download_trusted_setup_file": 0.0024677496403455734 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.046979S", + "compute_time_sec": 14.046979, + "compute_times": { + "total": 1.551876936107874, + "queued": 18.025252, + "file_setup": 1.5510845798999071 }, + "file_size": 4143, + "uploaded_file_name": "", "verification_key": null, - "error": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "gnark_version": "v0.9.0" }, { - "circuit_id": "fdd63193-c8f9-44d3-808f-1c141d8943a9", - "circuit_name": "circom-multiplier2", + "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", + "circuit_name": "multiplier2", "circuit_type": "circom", - "date_created": "2024-01-15T01:24:08.312Z", + "date_created": "2023-12-01T19:22:16.230Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.531226S", - "compute_times": { - "total": 7.6369316056370735, - "queued": 8.365347, - "clean_up": 0.0019285567104816437, - "create_cpp": 0.046893924474716187, - "file_setup": 0.27671243622899055, - "compile_cpp": 4.530390504747629, - "create_r1cs": 0.0143166184425354, - "save_results": 0.0062755923718214035, - "get_r1cs_info": 0.0004708431661128998, - "groth16_setup": 1.3666829708963633, - "export_verification_key": 1.3914693985134363, - "download_trusted_setup_file": 0.0013060756027698517 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.920270S", + "compute_time_sec": 7.92027, + "compute_times": { + "total": 9.144548835232854, + "queued": 26.442871, + "clean_up": 0.0016796644777059555, + "create_cpp": 0.05204322002828121, + "file_setup": 1.3975976463407278, + "compile_cpp": 4.545235302299261, + "create_r1cs": 0.008858315646648407, + "save_results": 0.005187435075640678, + "get_r1cs_info": 0.0006442461162805557, + "groth16_setup": 1.5628649536520243, + "export_verification_key": 1.5673195589333773, + "download_trusted_setup_file": 0.0025161877274513245 }, + "file_size": 225511, + "uploaded_file_name": "", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" - }, + "num_public_inputs": 0 + } + ], + "rawHeaders": [ + "Content-Length", + "164358", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:56 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ { - "circuit_id": "904ee935-e47f-4e51-b8af-4fa75cc308f7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:07.917Z", - "proving_scheme": "groth16", + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.578702S", - "compute_times": { - "total": 8.665514579042792, - "queued": 1.330868, - "clean_up": 0.0017162077128887177, - "create_cpp": 0.054726479575037956, - "file_setup": 0.2634403742849827, - "compile_cpp": 5.288504149764776, - "create_r1cs": 0.008948137983679771, - "save_results": 0.005719773471355438, - "get_r1cs_info": 0.0004977621138095856, - "groth16_setup": 1.6173019856214523, - "export_verification_key": 1.4229414779692888, - "download_trusted_setup_file": 0.0012561678886413574 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, + "compute_times": { + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "eb7be2ed-0d7e-4036-a5dc-3b36b0d9907c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:07.224Z", - "proving_scheme": "groth16", + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.062Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.530179S", - "compute_times": { - "total": 8.615118628367782, - "queued": 1.275027, - "clean_up": 0.0011486634612083435, - "create_cpp": 0.05415670946240425, - "file_setup": 0.26388018019497395, - "compile_cpp": 4.947564886882901, - "create_r1cs": 0.011440899223089218, - "save_results": 0.0037490390241146088, - "get_r1cs_info": 0.0004730690270662308, - "groth16_setup": 1.862619386985898, - "export_verification_key": 1.4681414254009724, - "download_trusted_setup_file": 0.0015218798071146011 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, + "compute_times": { + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a379c18b-369a-44db-aad6-85af9e6bb9cb", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:06.762Z", - "proving_scheme": "groth16", + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.018Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.830370S", - "compute_times": { - "total": 7.921309085562825, - "queued": 1.088554, - "clean_up": 0.0007459353655576706, - "create_cpp": 0.047761064022779465, - "file_setup": 0.2782799396663904, - "compile_cpp": 4.597128139808774, - "create_r1cs": 0.011429710313677788, - "save_results": 0.0036425814032554626, - "get_r1cs_info": 0.0006814338266849518, - "groth16_setup": 1.4388698264956474, - "export_verification_key": 1.5397362746298313, - "download_trusted_setup_file": 0.0024739503860473633 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, + "compute_times": { + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d040cbc0-5324-4999-b9fd-1c1377b68a5c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:06.594Z", - "proving_scheme": "groth16", + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.932Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.915835S", - "compute_times": { - "total": 7.990416899323463, - "queued": 1.043149, - "clean_up": 0.0017143674194812775, - "create_cpp": 0.04796867072582245, - "file_setup": 0.23446950316429138, - "compile_cpp": 4.777510790154338, - "create_r1cs": 0.017401328310370445, - "save_results": 0.0054901354014873505, - "get_r1cs_info": 0.0009919870644807816, - "groth16_setup": 1.4934867825359106, - "export_verification_key": 1.4077130891382694, - "download_trusted_setup_file": 0.00322798453271389 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, + "compute_times": { + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ec4c4efa-85f5-4706-98f5-c074c42fdd6a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:24:06.301Z", - "proving_scheme": "groth16", + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.924Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.731619S", - "compute_times": { - "total": 7.811778577044606, - "queued": 1.204783, - "clean_up": 0.001674732193350792, - "create_cpp": 0.041051892563700676, - "file_setup": 0.252486540004611, - "compile_cpp": 4.601586431264877, - "create_r1cs": 0.016725540161132812, - "save_results": 0.006723517552018166, - "get_r1cs_info": 0.0007968861609697342, - "groth16_setup": 1.3249811921268702, - "export_verification_key": 1.5628648214042187, - "download_trusted_setup_file": 0.0024388227611780167 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, + "compute_times": { + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a89d05b7-2a7f-48de-8017-c628dfdfbc8b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:47.917Z", - "proving_scheme": "groth16", + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.909Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.789579S", - "compute_times": { - "total": 7.86683814227581, - "queued": 25.35176, - "clean_up": 0.0017080958932638168, - "create_cpp": 0.049080340191721916, - "file_setup": 0.2709489520639181, - "compile_cpp": 4.813403956592083, - "create_r1cs": 0.01896231807768345, - "save_results": 0.005731154233217239, - "get_r1cs_info": 0.0008451472967863083, - "groth16_setup": 1.3692182656377554, - "export_verification_key": 1.3333069793879986, - "download_trusted_setup_file": 0.0029204636812210083 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, + "compute_times": { + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fb9804ea-e593-4510-b89a-b98a0011e155", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:47.325Z", - "proving_scheme": "groth16", + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.810Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.584035S", - "compute_times": { - "total": 7.674813883379102, - "queued": 23.350262, - "clean_up": 0.00165599025785923, - "create_cpp": 0.05108293518424034, - "file_setup": 0.2647382654249668, - "compile_cpp": 4.588076556101441, - "create_r1cs": 0.01682026870548725, - "save_results": 0.006049007177352905, - "get_r1cs_info": 0.0008010715246200562, - "groth16_setup": 1.3996620196849108, - "export_verification_key": 1.3428493328392506, - "download_trusted_setup_file": 0.002526400610804558 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, + "compute_times": { + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "11e78b06-44fb-44b4-b85f-d681e677482c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:46.978Z", - "proving_scheme": "groth16", + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.800Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.813443S", - "compute_times": { - "total": 7.886057889088988, - "queued": 17.997581, - "clean_up": 0.0019489061087369919, - "create_cpp": 0.04485638998448849, - "file_setup": 0.23824510909616947, - "compile_cpp": 4.771794518455863, - "create_r1cs": 0.017174607142806053, - "save_results": 0.005540786311030388, - "get_r1cs_info": 0.0006840340793132782, - "groth16_setup": 1.3794465400278568, - "export_verification_key": 1.4234893918037415, - "download_trusted_setup_file": 0.002448735758662224 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, + "compute_times": { + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4e253e9d-53bb-4dc3-a7ae-3f7c845833c9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:46.598Z", - "proving_scheme": "groth16", + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.792Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.749153S", - "compute_times": { - "total": 7.8208857625722885, - "queued": 9.451752, - "clean_up": 0.0019070468842983246, - "create_cpp": 0.04770251177251339, - "file_setup": 0.23707264475524426, - "compile_cpp": 4.817640336230397, - "create_r1cs": 0.018378887325525284, - "save_results": 0.005359206348657608, - "get_r1cs_info": 0.0008528921753168106, - "groth16_setup": 1.3206407614052296, - "export_verification_key": 1.3683953396975994, - "download_trusted_setup_file": 0.002521853893995285 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, + "compute_times": { + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "50a969b6-0f0e-4066-818e-0d6bee58a675", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:20:46.380Z", - "proving_scheme": "groth16", + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.637Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.412180S", - "compute_times": { - "total": 7.489693740382791, - "queued": 1.076624, - "clean_up": 0.0017442163079977036, - "create_cpp": 0.049648238345980644, - "file_setup": 0.23472837172448635, - "compile_cpp": 4.6169865392148495, - "create_r1cs": 0.01770802214741707, - "save_results": 0.005789747461676598, - "get_r1cs_info": 0.000413551926612854, - "groth16_setup": 1.244078028947115, - "export_verification_key": 1.3168906792998314, - "download_trusted_setup_file": 0.0012542679905891418 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, + "compute_times": { + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8b80ca27-37f0-4a48-b203-3e2d185edd90", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:52.340Z", - "proving_scheme": "groth16", + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.620Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.883228S", - "compute_times": { - "total": 7.962817557156086, - "queued": 30.893441, - "clean_up": 0.0015963222831487656, - "create_cpp": 0.05661488324403763, - "file_setup": 0.26580186001956463, - "compile_cpp": 4.7885665241628885, - "create_r1cs": 0.017876187339425087, - "save_results": 0.005185702815651894, - "get_r1cs_info": 0.0006853118538856506, - "groth16_setup": 1.458715070039034, - "export_verification_key": 1.3646998051553965, - "download_trusted_setup_file": 0.002479085698723793 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, + "compute_times": { + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ff738348-86c5-4a5b-bbf5-f59ebacaa83f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:51.149Z", - "proving_scheme": "groth16", + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.593Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.795750S", - "compute_times": { - "total": 7.888047279790044, - "queued": 29.425801, - "clean_up": 0.0008769631385803223, - "create_cpp": 0.05921477451920509, - "file_setup": 0.25372832454741, - "compile_cpp": 4.736947797238827, - "create_r1cs": 0.01815476454794407, - "save_results": 0.004680829122662544, - "get_r1cs_info": 0.0006990842521190643, - "groth16_setup": 1.3821367472410202, - "export_verification_key": 1.4278872478753328, - "download_trusted_setup_file": 0.002650303766131401 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, + "compute_times": { + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "bd06acf7-db8e-4e1b-add1-78e51aa51bbe", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:50.720Z", - "proving_scheme": "groth16", + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.516Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.390978S", - "compute_times": { - "total": 7.46995716355741, - "queued": 29.832962, - "clean_up": 0.00176163949072361, - "create_cpp": 0.05480833351612091, - "file_setup": 0.23235405422747135, - "compile_cpp": 4.604168305173516, - "create_r1cs": 0.017065662890672684, - "save_results": 0.005929179489612579, - "get_r1cs_info": 0.0009844768792390823, - "groth16_setup": 1.2335669491440058, - "export_verification_key": 1.3159250803291798, - "download_trusted_setup_file": 0.003006463870406151 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, + "compute_times": { + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "afcb9e22-9f99-41d0-9901-af4903b766b4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-15T01:10:50.518Z", - "proving_scheme": "groth16", + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.491Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.546432S", - "compute_times": { - "total": 7.620507316663861, - "queued": 21.381816, - "clean_up": 0.0019138902425765991, - "create_cpp": 0.04845607653260231, - "file_setup": 0.22649670392274857, - "compile_cpp": 4.595834456384182, - "create_r1cs": 0.017602143809199333, - "save_results": 0.006120938807725906, - "get_r1cs_info": 0.0006583519279956818, - "groth16_setup": 1.3733069580048323, - "export_verification_key": 1.3470811117440462, - "download_trusted_setup_file": 0.002516990527510643 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, + "compute_times": { + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c3c2e5be-17ce-49c9-a590-17a34dae5b43", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:38.831Z", - "proving_scheme": "groth16", + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.478Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.495982S", - "compute_times": { - "total": 7.583129834383726, - "queued": 9.308287, - "clean_up": 0.0016463026404380798, - "create_cpp": 0.048509422689676285, - "file_setup": 0.2788010146468878, - "compile_cpp": 4.499293332919478, - "create_r1cs": 0.008868083357810974, - "save_results": 0.006020659580826759, - "get_r1cs_info": 0.0004023592919111252, - "groth16_setup": 1.3391796126961708, - "export_verification_key": 1.3986896388232708, - "download_trusted_setup_file": 0.0012662895023822784 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, + "compute_times": { + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "594d795b-4e83-4bdc-9384-adc6dc579063", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:38.077Z", - "proving_scheme": "groth16", + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.414Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.994296S", - "compute_times": { - "total": 8.085218539461493, - "queued": 1.072056, - "clean_up": 0.0018068403005599976, - "create_cpp": 0.04692729189991951, - "file_setup": 0.24390947446227074, - "compile_cpp": 4.863685358315706, - "create_r1cs": 0.015030544251203537, - "save_results": 0.006564289331436157, - "get_r1cs_info": 0.0005463734269142151, - "groth16_setup": 1.4818106144666672, - "export_verification_key": 1.4225131068378687, - "download_trusted_setup_file": 0.0018362998962402344 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, + "compute_times": { + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cc3da49e-2510-421d-867f-012f50ee430c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:37.920Z", - "proving_scheme": "groth16", + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.362Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.896573S", - "compute_times": { - "total": 7.971910724416375, - "queued": 1.115917, - "clean_up": 0.0015832837671041489, - "create_cpp": 0.03922662511467934, - "file_setup": 0.24468977935612202, - "compile_cpp": 4.67575691267848, - "create_r1cs": 0.01803159900009632, - "save_results": 0.005611082538962364, - "get_r1cs_info": 0.0004954636096954346, - "groth16_setup": 1.507937928661704, - "export_verification_key": 1.4767322856932878, - "download_trusted_setup_file": 0.0013241283595561981 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, + "compute_times": { + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "64c96c11-dba7-4189-aa14-9aecfedddd24", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:01:37.888Z", - "proving_scheme": "groth16", + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.356Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.498334S", - "compute_times": { - "total": 8.571772133931518, - "queued": 1.074783, - "clean_up": 0.0019186809659004211, - "create_cpp": 0.054686328396201134, - "file_setup": 0.2371922954916954, - "compile_cpp": 5.385636718943715, - "create_r1cs": 0.01953158527612686, - "save_results": 0.00620056688785553, - "get_r1cs_info": 0.0007338318973779678, - "groth16_setup": 1.5156110264360905, - "export_verification_key": 1.3472961355000734, - "download_trusted_setup_file": 0.0024816375225782394 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, + "compute_times": { + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "37c2d797-16be-44b3-af1f-25f921d56027", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:00:47.710Z", - "proving_scheme": "groth16", + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.294Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.442405S", - "compute_times": { - "total": 7.519877161830664, - "queued": 18.163234, - "clean_up": 0.0016106609255075455, - "create_cpp": 0.04706509783864021, - "file_setup": 0.2573662418872118, - "compile_cpp": 4.5406668819487095, - "create_r1cs": 0.010846516117453575, - "save_results": 0.0050650909543037415, - "get_r1cs_info": 0.0006506964564323425, - "groth16_setup": 1.2932439744472504, - "export_verification_key": 1.3604716714471579, - "download_trusted_setup_file": 0.0025113988667726517 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, + "compute_times": { + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "64245855-4d0a-4a37-8ac5-5cd8fafd4df6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:00:47.196Z", - "proving_scheme": "groth16", + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.184Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.598393S", - "compute_times": { - "total": 7.670226508751512, - "queued": 9.858631, - "clean_up": 0.0017396323382854462, - "create_cpp": 0.056736381724476814, - "file_setup": 0.2335924208164215, - "compile_cpp": 4.717564798891544, - "create_r1cs": 0.01664743758738041, - "save_results": 0.00606883130967617, - "get_r1cs_info": 0.0007533375173807144, - "groth16_setup": 1.2358768321573734, - "export_verification_key": 1.3982864208519459, - "download_trusted_setup_file": 0.0024993102997541428 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, + "compute_times": { + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "67f4649b-cef0-48a9-853e-08bc9071a422", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T22:00:47.135Z", - "proving_scheme": "groth16", + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.144Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.668392S", - "compute_times": { - "total": 7.747372977435589, - "queued": 1.05809, - "clean_up": 0.001848604530096054, - "create_cpp": 0.04929644614458084, - "file_setup": 0.22854838147759438, - "compile_cpp": 4.640512635931373, - "create_r1cs": 0.015147404745221138, - "save_results": 0.005650337785482407, - "get_r1cs_info": 0.0006706751883029938, - "groth16_setup": 1.3484645150601864, - "export_verification_key": 1.4543015789240599, - "download_trusted_setup_file": 0.002453230321407318 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, + "compute_times": { + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7a70a5ab-e8ed-4f4b-86e7-6b4fee6732b5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T21:59:59.139Z", - "proving_scheme": "groth16", + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.120Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.396312S", - "compute_times": { - "total": 7.46887100674212, - "queued": 18.652859, - "clean_up": 0.0016880836337804794, - "create_cpp": 0.042848482728004456, - "file_setup": 0.22210602462291718, - "compile_cpp": 4.473998909816146, - "create_r1cs": 0.018347671255469322, - "save_results": 0.005641408264636993, - "get_r1cs_info": 0.0005728006362915039, - "groth16_setup": 1.427965046837926, - "export_verification_key": 1.2737494725733995, - "download_trusted_setup_file": 0.0014454666525125504 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, + "compute_times": { + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1d2b65a6-0b62-46f1-8552-e5d306b8e5a9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:18.351Z", - "proving_scheme": "groth16", + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.062Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.072504S", - "compute_times": { - "total": 8.165413077920675, - "queued": 1.073288, - "clean_up": 0.001566711813211441, - "create_cpp": 0.04813777469098568, - "file_setup": 0.273874131962657, - "compile_cpp": 4.797466650605202, - "create_r1cs": 0.012367704883217812, - "save_results": 0.005589749664068222, - "get_r1cs_info": 0.0007054843008518219, - "groth16_setup": 1.6635373625904322, - "export_verification_key": 1.359395258128643, - "download_trusted_setup_file": 0.0024296436458826065 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, + "compute_times": { + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6c8880ec-74b0-4668-a577-bf49ab082ee6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:17.471Z", - "proving_scheme": "groth16", + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.027Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.660558S", - "compute_times": { - "total": 8.733056403696537, - "queued": 1.092197, - "clean_up": 0.0028520766645669937, - "create_cpp": 0.052579380571842194, - "file_setup": 0.23965846560895443, - "compile_cpp": 5.635051192715764, - "create_r1cs": 0.019429346546530724, - "save_results": 0.005396207794547081, - "get_r1cs_info": 0.0007434431463479996, - "groth16_setup": 1.4462960939854383, - "export_verification_key": 1.3281519785523415, - "download_trusted_setup_file": 0.0024572182446718216 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, + "compute_times": { + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3b4060a2-6272-49df-a5f5-2d848ea3568d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:17.080Z", - "proving_scheme": "groth16", + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.006Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.963489S", - "compute_times": { - "total": 8.049663323909044, - "queued": 1.109603, - "clean_up": 0.0019163694232702255, - "create_cpp": 0.05177045613527298, - "file_setup": 0.2615332882851362, - "compile_cpp": 4.643600087612867, - "create_r1cs": 0.016842812299728394, - "save_results": 0.006387719884514809, - "get_r1cs_info": 0.0007886830717325211, - "groth16_setup": 1.5305246319621801, - "export_verification_key": 1.5330269560217857, - "download_trusted_setup_file": 0.0027020927518606186 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, + "compute_times": { + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "e9738cfe-e43f-47eb-bf7e-1aee7eda254d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:46:17.031Z", - "proving_scheme": "groth16", + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.963Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.752852S", - "compute_times": { - "total": 7.833738502115011, - "queued": 1.103525, - "clean_up": 0.0007738582789897919, - "create_cpp": 0.04726468026638031, - "file_setup": 0.2604553271085024, - "compile_cpp": 4.593758463859558, - "create_r1cs": 0.017804840579628944, - "save_results": 0.005725737661123276, - "get_r1cs_info": 0.0007703714072704315, - "groth16_setup": 1.4161110799759626, - "export_verification_key": 1.4887929297983646, - "download_trusted_setup_file": 0.001879064366221428 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, + "compute_times": { + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "42288e72-32af-4d49-a000-0c4106d72b1a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:50.525Z", - "proving_scheme": "groth16", + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.909Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.721066S", - "compute_times": { - "total": 7.797398852184415, - "queued": 29.569685, - "clean_up": 0.00167049840092659, - "create_cpp": 0.05636698007583618, - "file_setup": 0.2505635917186737, - "compile_cpp": 4.744883842766285, - "create_r1cs": 0.009372701868414879, - "save_results": 0.0053126197308301926, - "get_r1cs_info": 0.0004866402596235275, - "groth16_setup": 1.37183235026896, - "export_verification_key": 1.3548658676445484, - "download_trusted_setup_file": 0.0013033263385295868 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, + "compute_times": { + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fbaee0ab-13a1-4548-9434-7f31a9db8909", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:50.133Z", - "proving_scheme": "groth16", + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.896Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.576409S", - "compute_times": { - "total": 7.656400920823216, - "queued": 27.995471, - "clean_up": 0.0009287483990192413, - "create_cpp": 0.05411672405898571, - "file_setup": 0.26574583910405636, - "compile_cpp": 4.590775987133384, - "create_r1cs": 0.01676061749458313, - "save_results": 0.00399848073720932, - "get_r1cs_info": 0.000689459964632988, - "groth16_setup": 1.3729439843446016, - "export_verification_key": 1.3473240491002798, - "download_trusted_setup_file": 0.0025283172726631165 - }, - "file_sizes": { - "total": 225426, - "circuit": 213240, - "total_gb": 0.000225426, - "total_mb": 0.225426, - "circuit.dat": 6176, - "code.tar.gz": 505, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, + "compute_times": { + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "033af40b-8898-431b-a0e9-67c0d4a8d482", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:49.642Z", - "proving_scheme": "groth16", + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.873Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.669965S", - "compute_times": { - "total": 7.7474795281887054, - "queued": 25.186763, - "clean_up": 0.0007379837334156036, - "create_cpp": 0.05420535057783127, - "file_setup": 0.2591994274407625, - "compile_cpp": 4.683894477784634, - "create_r1cs": 0.01852503977715969, - "save_results": 0.004642404615879059, - "get_r1cs_info": 0.0008469689637422562, - "groth16_setup": 1.3640733323991299, - "export_verification_key": 1.3582920264452696, - "download_trusted_setup_file": 0.0026291999965906143 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, + "compute_times": { + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c3770fbd-f11b-4b49-90d3-cfad9feb3fd9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:44:49.597Z", - "proving_scheme": "groth16", + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.817Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.666218S", - "compute_times": { - "total": 7.743923228234053, - "queued": 16.244985, - "clean_up": 0.0016544517129659653, - "create_cpp": 0.04558009281754494, - "file_setup": 0.24755106307566166, - "compile_cpp": 4.744448408484459, - "create_r1cs": 0.01863648183643818, - "save_results": 0.005422661080956459, - "get_r1cs_info": 0.0007555857300758362, - "groth16_setup": 1.3294172957539558, - "export_verification_key": 1.347303519025445, - "download_trusted_setup_file": 0.002494456246495247 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, + "compute_times": { + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ace357b8-01b9-4f55-9d17-a2ca4bc4d638", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:05.843Z", - "proving_scheme": "groth16", + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.806Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.484466S", - "compute_times": { - "total": 7.562151093035936, - "queued": 20.625634, - "clean_up": 0.0017509087920188904, - "create_cpp": 0.04661180265247822, - "file_setup": 0.24942035041749477, - "compile_cpp": 4.542725313454866, - "create_r1cs": 0.019399696961045265, - "save_results": 0.007124448195099831, - "get_r1cs_info": 0.0007141679525375366, - "groth16_setup": 1.3570096530020237, - "export_verification_key": 1.3343026712536812, - "download_trusted_setup_file": 0.0024999063462018967 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, + "compute_times": { + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a69bedc7-a23a-48c0-9a6d-d7257cd0ee07", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:04.740Z", - "proving_scheme": "groth16", + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.774Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.611924S", - "compute_times": { - "total": 7.688939314335585, - "queued": 18.98661, - "clean_up": 0.0007829554378986359, - "create_cpp": 0.05032696574926376, - "file_setup": 0.2520132940262556, - "compile_cpp": 4.722641088068485, - "create_r1cs": 0.0107505451887846, - "save_results": 0.005139663815498352, - "get_r1cs_info": 0.0006618890911340714, - "groth16_setup": 1.3368865679949522, - "export_verification_key": 1.3068783804774284, - "download_trusted_setup_file": 0.0024257171899080276 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, + "compute_times": { + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2806fe3b-b959-40b4-b68a-6a48a4730339", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:04.538Z", - "proving_scheme": "groth16", + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.671080S", - "compute_times": { - "total": 7.7527586203068495, - "queued": 10.266939, - "clean_up": 0.0017596669495105743, - "create_cpp": 0.05662725120782852, - "file_setup": 0.24927497655153275, - "compile_cpp": 4.834171952679753, - "create_r1cs": 0.015801193192601204, - "save_results": 0.005597377195954323, - "get_r1cs_info": 0.0006633754819631577, - "groth16_setup": 1.285094628110528, - "export_verification_key": 1.3006944358348846, - "download_trusted_setup_file": 0.002444768324494362 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, + "compute_times": { + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "14806e82-8e0e-42f4-921c-aba1914cc309", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:24:04.382Z", - "proving_scheme": "groth16", + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.909717S", - "compute_times": { - "total": 7.9800247810781, - "queued": 1.219168, - "clean_up": 0.0017995405942201614, - "create_cpp": 0.04708561487495899, - "file_setup": 0.2477656602859497, - "compile_cpp": 4.89770944416523, - "create_r1cs": 0.01611543633043766, - "save_results": 0.005786914378404617, - "get_r1cs_info": 0.0007048510015010834, - "groth16_setup": 1.3873562160879374, - "export_verification_key": 1.3729455471038818, - "download_trusted_setup_file": 0.002437746152281761 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, + "compute_times": { + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6ed31334-d260-4652-ad11-fce789b04ad2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:09.984Z", - "proving_scheme": "groth16", + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.597495S", - "compute_times": { - "total": 7.674594018608332, - "queued": 8.634986, - "clean_up": 0.0016419794410467148, - "create_cpp": 0.047586649656295776, - "file_setup": 0.2436046116054058, - "compile_cpp": 4.683977667242289, - "create_r1cs": 0.017859995365142822, - "save_results": 0.00542888417840004, - "get_r1cs_info": 0.0007064882665872574, - "groth16_setup": 1.3227286096662283, - "export_verification_key": 1.3475021123886108, - "download_trusted_setup_file": 0.00292983278632164 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, + "compute_times": { + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "adb0b7b7-c2cd-4260-8369-e0f2d400a104", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:09.000Z", - "proving_scheme": "groth16", + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.020968S", - "compute_times": { - "total": 8.11050195991993, - "queued": 1.106339, - "clean_up": 0.0017776619642972946, - "create_cpp": 0.042624855414032936, - "file_setup": 0.29933272302150726, - "compile_cpp": 4.833516420796514, - "create_r1cs": 0.01687009632587433, - "save_results": 0.006504466757178307, - "get_r1cs_info": 0.00066353939473629, - "groth16_setup": 1.4784862399101257, - "export_verification_key": 1.427861487492919, - "download_trusted_setup_file": 0.002409808337688446 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, + "compute_times": { + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "22d70ee8-f3df-4941-b399-07d13f78abe9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:08.494Z", - "proving_scheme": "groth16", + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.691111S", - "compute_times": { - "total": 7.771573496982455, - "queued": 1.17, - "clean_up": 0.0016926135867834091, - "create_cpp": 0.05935652367770672, - "file_setup": 0.2620077710598707, - "compile_cpp": 4.75682108476758, - "create_r1cs": 0.014452280476689339, - "save_results": 0.005480160936713219, - "get_r1cs_info": 0.0006888676434755325, - "groth16_setup": 1.3388383872807026, - "export_verification_key": 1.32946134544909, - "download_trusted_setup_file": 0.0022690370678901672 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, + "compute_times": { + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "737f5589-b161-48c1-8afb-3c24a136a6c1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:17:08.468Z", - "proving_scheme": "groth16", + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.291924S", - "compute_times": { - "total": 8.365394989028573, - "queued": 1.157799, - "clean_up": 0.0015689730644226074, - "create_cpp": 0.04686474800109863, - "file_setup": 0.24952785670757294, - "compile_cpp": 5.094061799347401, - "create_r1cs": 0.019047506153583527, - "save_results": 0.0056635066866874695, - "get_r1cs_info": 0.0004320461302995682, - "groth16_setup": 1.5466318130493164, - "export_verification_key": 1.39987507276237, - "download_trusted_setup_file": 0.0013030990958213806 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, + "compute_times": { + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "00baff55-6d30-4365-9727-806c227187ec", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:15:35.627Z", - "proving_scheme": "groth16", + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.619282S", - "compute_times": { - "total": 7.691293215379119, - "queued": 19.200144, - "clean_up": 0.0017832368612289429, - "create_cpp": 0.04681010544300079, - "file_setup": 0.24938089400529861, - "compile_cpp": 4.651383237913251, - "create_r1cs": 0.016947990283370018, - "save_results": 0.0064728278666734695, - "get_r1cs_info": 0.0008025597780942917, - "groth16_setup": 1.3398670889437199, - "export_verification_key": 1.37474081851542, - "download_trusted_setup_file": 0.002573670819401741 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, + "compute_times": { + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "83b80a52-0af7-4ce3-971e-f271e4657643", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:15:35.129Z", - "proving_scheme": "groth16", + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.374925S", - "compute_times": { - "total": 7.4528124667704105, - "queued": 16.312228, - "clean_up": 0.0017383582890033722, - "create_cpp": 0.05669763870537281, - "file_setup": 0.2676529083400965, - "compile_cpp": 4.4346959348768, - "create_r1cs": 0.017131024971604347, - "save_results": 0.0058726053684949875, - "get_r1cs_info": 0.00045347586274147034, - "groth16_setup": 1.302895437926054, - "export_verification_key": 1.3638175278902054, - "download_trusted_setup_file": 0.001258334144949913 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, + "compute_times": { + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5db66e21-93fa-4cfd-9b54-eba6cc5f0b5d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:15:35.089Z", - "proving_scheme": "groth16", + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.658449S", - "compute_times": { - "total": 7.735888196155429, - "queued": 15.077966, - "clean_up": 0.0016767363995313644, - "create_cpp": 0.047638872638344765, - "file_setup": 0.2675781920552254, - "compile_cpp": 4.7792276702821255, - "create_r1cs": 0.018472682684659958, - "save_results": 0.00616835243999958, - "get_r1cs_info": 0.0007582195103168488, - "groth16_setup": 1.3009603060781956, - "export_verification_key": 1.3102184478193521, - "download_trusted_setup_file": 0.002536667510867119 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, + "compute_times": { + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5665be07-b604-414b-b6a1-9f87a21cab12", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:01:33.996Z", - "proving_scheme": "groth16", + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.358621S", - "compute_times": { - "total": 7.430434772744775, - "queued": 1.067157, - "clean_up": 0.0017831884324550629, - "create_cpp": 0.04887022823095322, - "file_setup": 0.24746119230985641, - "compile_cpp": 4.42920583859086, - "create_r1cs": 0.015806885436177254, - "save_results": 0.005989404395222664, - "get_r1cs_info": 0.000494047999382019, - "groth16_setup": 1.2992996741086245, - "export_verification_key": 1.3796110693365335, - "download_trusted_setup_file": 0.0014664717018604279 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, + "compute_times": { + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3bc09c20-22e4-443a-b3c1-55ddb5488ed4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:53.344Z", - "proving_scheme": "groth16", + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.484230S", - "compute_times": { - "total": 7.559012655168772, - "queued": 24.038113, - "clean_up": 0.001834215596318245, - "create_cpp": 0.047222478315234184, - "file_setup": 0.2665374279022217, - "compile_cpp": 4.527841242030263, - "create_r1cs": 0.010656235739588737, - "save_results": 0.005962014198303223, - "get_r1cs_info": 0.0007966365665197372, - "groth16_setup": 1.3851932883262634, - "export_verification_key": 1.3095076736062765, - "download_trusted_setup_file": 0.0028558634221553802 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, + "compute_times": { + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b16923be-f1f5-4721-b1fe-e77e60c5075c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:52.361Z", - "proving_scheme": "groth16", + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.613447S", - "compute_times": { - "total": 7.678777739405632, - "queued": 18.390724, - "clean_up": 0.0018066484481096268, - "create_cpp": 0.046223074197769165, - "file_setup": 0.2186940722167492, - "compile_cpp": 4.732459098100662, - "create_r1cs": 0.016505463048815727, - "save_results": 0.005674159154295921, - "get_r1cs_info": 0.0008121822029352188, - "groth16_setup": 1.3473218008875847, - "export_verification_key": 1.3064227681607008, - "download_trusted_setup_file": 0.0024397335946559906 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, + "compute_times": { + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "85cadabf-0e5d-41ba-8414-9b85a788205a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:52.036Z", - "proving_scheme": "groth16", + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.728439S", - "compute_times": { - "total": 7.805055180564523, - "queued": 9.804823, - "clean_up": 0.001579929143190384, - "create_cpp": 0.04664304107427597, - "file_setup": 0.2456628568470478, - "compile_cpp": 4.755457693710923, - "create_r1cs": 0.01651918888092041, - "save_results": 0.005783999338746071, - "get_r1cs_info": 0.0008587650954723358, - "groth16_setup": 1.394832018762827, - "export_verification_key": 1.3348707742989063, - "download_trusted_setup_file": 0.0024223458021879196 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, + "compute_times": { + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "00cf3999-3779-4e65-bd0e-61d6f2fa12c5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:51.993Z", - "proving_scheme": "groth16", + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.467315S", - "compute_times": { - "total": 7.544081119820476, - "queued": 1.176942, - "clean_up": 0.0019962936639785767, - "create_cpp": 0.05820799432694912, - "file_setup": 0.23373237252235413, - "compile_cpp": 4.640454025939107, - "create_r1cs": 0.010518679395318031, - "save_results": 0.005797773599624634, - "get_r1cs_info": 0.0006531458348035812, - "groth16_setup": 1.3033402767032385, - "export_verification_key": 1.2865915279835463, - "download_trusted_setup_file": 0.0024898946285247803 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, + "compute_times": { + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "91708ea2-6a57-4d0f-b439-e615c869eb0c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:00:12.640Z", - "proving_scheme": "groth16", + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.566330S", - "compute_times": { - "total": 7.638872114941478, - "queued": 1.083533, - "clean_up": 0.0016686953604221344, - "create_cpp": 0.05361836962401867, - "file_setup": 0.22490951046347618, - "compile_cpp": 4.661991640925407, - "create_r1cs": 0.011098312214016914, - "save_results": 0.005372248589992523, - "get_r1cs_info": 0.0006810426712036133, - "groth16_setup": 1.2943047359585762, - "export_verification_key": 1.3822605535387993, - "download_trusted_setup_file": 0.002469819039106369 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, + "compute_times": { + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "80695249-80cb-4b30-a607-9a08ce4088aa", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:58:37.170Z", - "proving_scheme": "groth16", + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.588053S", - "compute_times": { - "total": 7.659883642569184, - "queued": 1.115212, - "clean_up": 0.0017240364104509354, - "create_cpp": 0.05423728749155998, - "file_setup": 0.22653288766741753, - "compile_cpp": 4.715006854385138, - "create_r1cs": 0.01801958493888378, - "save_results": 0.005619559437036514, - "get_r1cs_info": 0.0006584189832210541, - "groth16_setup": 1.3719583936035633, - "export_verification_key": 1.2632665000855923, - "download_trusted_setup_file": 0.0024633388966321945 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, + "compute_times": { + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3e14f13a-54bd-4442-b5b7-96e5317e52ed", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:57:16.314Z", - "proving_scheme": "groth16", + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.363533S", - "compute_times": { - "total": 7.428888592869043, - "queued": 1.09539, - "clean_up": 0.0010978449136018753, - "create_cpp": 0.05030778981745243, - "file_setup": 0.220810754224658, - "compile_cpp": 4.5690462831407785, - "create_r1cs": 0.017519544810056686, - "save_results": 0.0052297115325927734, - "get_r1cs_info": 0.000794650986790657, - "groth16_setup": 1.3148892186582088, - "export_verification_key": 1.246385119855404, - "download_trusted_setup_file": 0.002508854493498802 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, + "compute_times": { + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f049037e-e519-40da-a915-67be08cbb857", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:56:20.673Z", - "proving_scheme": "groth16", + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.554562S", - "compute_times": { - "total": 7.62885358184576, - "queued": 1.122774, - "clean_up": 0.0015935692936182022, - "create_cpp": 0.038827916607260704, - "file_setup": 0.2388095259666443, - "compile_cpp": 4.741127427667379, - "create_r1cs": 0.017170095816254616, - "save_results": 0.005732323974370956, - "get_r1cs_info": 0.0008209142833948135, - "groth16_setup": 1.341518772765994, - "export_verification_key": 1.2402091566473246, - "download_trusted_setup_file": 0.0024810880422592163 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, + "compute_times": { + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c6b7c7c4-a68c-4c52-a44d-c430303e9c83", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:56:06.666Z", - "proving_scheme": "groth16", + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.640262S", - "compute_times": { - "total": 7.717317624017596, - "queued": 1.153472, - "clean_up": 0.001708121970295906, - "create_cpp": 0.055834874510765076, - "file_setup": 0.26282420568168163, - "compile_cpp": 4.616852128878236, - "create_r1cs": 0.01816796325147152, - "save_results": 0.005182689055800438, - "get_r1cs_info": 0.0008097067475318909, - "groth16_setup": 1.4200150053948164, - "export_verification_key": 1.3325735349208117, - "download_trusted_setup_file": 0.0028655603528022766 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, + "compute_times": { + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7ce11338-e787-4c30-872e-4994cf25cd21", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:55:47.449Z", - "proving_scheme": "groth16", + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.649332S", - "compute_times": { - "total": 7.72703692317009, - "queued": 1.083808, - "clean_up": 0.0017609763890504837, - "create_cpp": 0.055810270830988884, - "file_setup": 0.23338888958096504, - "compile_cpp": 4.682565299794078, - "create_r1cs": 0.017131242901086807, - "save_results": 0.005780013278126717, - "get_r1cs_info": 0.0008372049778699875, - "groth16_setup": 1.321879891678691, - "export_verification_key": 1.4050091002136469, - "download_trusted_setup_file": 0.0024436842650175095 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, + "compute_times": { + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "21b7b98f-ac89-4036-984a-9b7d76c8246e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:54:57.998Z", - "proving_scheme": "groth16", + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.709162S", - "compute_times": { - "total": 7.77805152349174, - "queued": 1.14492, - "clean_up": 0.0016839038580656052, - "create_cpp": 0.04769276827573776, - "file_setup": 0.24134804122149944, - "compile_cpp": 4.741177011281252, - "create_r1cs": 0.01839756965637207, - "save_results": 0.00636446475982666, - "get_r1cs_info": 0.0007227305322885513, - "groth16_setup": 1.3326963353902102, - "export_verification_key": 1.3850416559726, - "download_trusted_setup_file": 0.0024724528193473816 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, + "compute_times": { + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1ea845af-4477-4887-b4c9-1fc60922c64a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:54:16.166Z", - "proving_scheme": "groth16", + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.418977S", - "compute_times": { - "total": 7.494983484968543, - "queued": 1.149669, - "clean_up": 0.0016745738685131073, - "create_cpp": 0.05047656036913395, - "file_setup": 0.2317434661090374, - "compile_cpp": 4.548192359507084, - "create_r1cs": 0.01588592678308487, - "save_results": 0.0058114491403102875, - "get_r1cs_info": 0.0006539300084114075, - "groth16_setup": 1.359997482970357, - "export_verification_key": 1.2780188340693712, - "download_trusted_setup_file": 0.0020805764943361282 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, + "compute_times": { + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ae8e8612-b57b-484a-992b-a2e9077ded25", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:53:57.024Z", - "proving_scheme": "groth16", + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.568414S", - "compute_times": { - "total": 7.645044168457389, - "queued": 1.146369, - "clean_up": 0.0016998127102851868, - "create_cpp": 0.051619796082377434, - "file_setup": 0.24771465547382832, - "compile_cpp": 4.563909590244293, - "create_r1cs": 0.017467238008975983, - "save_results": 0.0046049561351537704, - "get_r1cs_info": 0.0007205326110124588, - "groth16_setup": 1.392288465052843, - "export_verification_key": 1.3620477262884378, - "download_trusted_setup_file": 0.0024884194135665894 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, + "compute_times": { + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f2be0b1e-405f-4793-82eb-31ae4233e9b6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:48:07.274Z", - "proving_scheme": "groth16", + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.634375S", - "compute_times": { - "total": 7.711648900061846, - "queued": 1.151518, - "clean_up": 0.0016132276505231857, - "create_cpp": 0.051139988005161285, - "file_setup": 0.23978900723159313, - "compile_cpp": 4.6589622385799885, - "create_r1cs": 0.010407604277133942, - "save_results": 0.0053712837398052216, - "get_r1cs_info": 0.0006775856018066406, - "groth16_setup": 1.376387370750308, - "export_verification_key": 1.364480024203658, - "download_trusted_setup_file": 0.0024138204753398895 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, + "compute_times": { + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "65318a49-b41d-4ff8-897a-1cdebf6379cd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:46:27.705Z", - "proving_scheme": "groth16", + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.794943S", - "compute_times": { - "total": 7.869940539821982, - "queued": 1.12935, - "clean_up": 0.001537129282951355, - "create_cpp": 0.046995386481285095, - "file_setup": 0.24573437683284283, - "compile_cpp": 4.844812747091055, - "create_r1cs": 0.010960787534713745, - "save_results": 0.00475454144179821, - "get_r1cs_info": 0.0004996396601200104, - "groth16_setup": 1.4448041189461946, - "export_verification_key": 1.2678779624402523, - "download_trusted_setup_file": 0.0016316790133714676 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, + "compute_times": { + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2c7b1bf7-070e-4c11-a948-0f02bf06248a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:40:38.978Z", - "proving_scheme": "groth16", + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.664033S", - "compute_times": { - "total": 7.736426949501038, - "queued": 1.136515, - "clean_up": 0.001613633707165718, - "create_cpp": 0.04840335436165333, - "file_setup": 0.22559695690870285, - "compile_cpp": 4.761518849059939, - "create_r1cs": 0.01633301004767418, - "save_results": 0.0055974628776311874, - "get_r1cs_info": 0.0007108338177204132, - "groth16_setup": 1.3652087282389402, - "export_verification_key": 1.308535685762763, - "download_trusted_setup_file": 0.0024619195610284805 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, + "compute_times": { + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "87fdc20a-7e4b-4244-931d-ab5548da9644", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:40:08.434Z", - "proving_scheme": "groth16", + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.326295S", - "compute_times": { - "total": 7.400858150795102, - "queued": 1.118441, - "clean_up": 0.0016694236546754837, - "create_cpp": 0.04726249352097511, - "file_setup": 0.22566148824989796, - "compile_cpp": 4.567545756697655, - "create_r1cs": 0.01814442314207554, - "save_results": 0.005112992599606514, - "get_r1cs_info": 0.0006955582648515701, - "groth16_setup": 1.211182564496994, - "export_verification_key": 1.3208420500159264, - "download_trusted_setup_file": 0.002416292205452919 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, + "compute_times": { + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "48fa4f1d-8be2-4377-b0a3-e847a4c9d0b4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T17:39:39.153Z", - "proving_scheme": "groth16", + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.594315S", - "compute_times": { - "total": 7.668981021270156, - "queued": 14.286631, - "clean_up": 0.001645909622311592, - "create_cpp": 0.04893757589161396, - "file_setup": 0.2278295625001192, - "compile_cpp": 4.749169761314988, - "create_r1cs": 0.018283158540725708, - "save_results": 0.00601276196539402, - "get_r1cs_info": 0.0007984023541212082, - "groth16_setup": 1.3189964778721333, - "export_verification_key": 1.2939927615225315, - "download_trusted_setup_file": 0.0029653161764144897 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, + "compute_times": { + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3719aee6-7aa8-443b-9ccd-c6dd06bc0947", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:38.604Z", - "proving_scheme": "groth16", + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.549Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.483459S", - "compute_times": { - "total": 7.563022721558809, - "queued": 17.659509, - "clean_up": 0.0018138419836759567, - "create_cpp": 0.04657592810690403, - "file_setup": 0.25030036829411983, - "compile_cpp": 4.458605896681547, - "create_r1cs": 0.010267989709973335, - "save_results": 0.006375599652528763, - "get_r1cs_info": 0.0003939960151910782, - "groth16_setup": 1.3946119882166386, - "export_verification_key": 1.3923067282885313, - "download_trusted_setup_file": 0.0011770892888307571 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, + "compute_times": { + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fdaa2dd0-a1ed-4313-ad5b-bd23d130fb47", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:37.752Z", - "proving_scheme": "groth16", + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.576781S", - "compute_times": { - "total": 7.655046196654439, - "queued": 18.143709, - "clean_up": 0.0016271453350782394, - "create_cpp": 0.052942270413041115, - "file_setup": 0.23309797048568726, - "compile_cpp": 4.72314483858645, - "create_r1cs": 0.01772555708885193, - "save_results": 0.00583222322165966, - "get_r1cs_info": 0.0007539559155702591, - "groth16_setup": 1.292042575776577, - "export_verification_key": 1.3249626532196999, - "download_trusted_setup_file": 0.002419590950012207 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, + "compute_times": { + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3f8e4d03-69b6-43c8-93c1-d447edf67b35", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:37.266Z", - "proving_scheme": "groth16", + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.236164S", - "compute_times": { - "total": 7.311267904937267, - "queued": 1.155332, - "clean_up": 0.0008716173470020294, - "create_cpp": 0.05489862523972988, - "file_setup": 0.2424852568656206, - "compile_cpp": 4.473982494324446, - "create_r1cs": 0.01902007684111595, - "save_results": 0.005060611292719841, - "get_r1cs_info": 0.00068698450922966, - "groth16_setup": 1.2233653031289577, - "export_verification_key": 1.2878586202859879, - "download_trusted_setup_file": 0.002506690099835396 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, + "compute_times": { + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c55e85d0-37b5-4821-b205-f033b2bb85a9", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:57:37.258Z", - "proving_scheme": "groth16", + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.909980S", - "compute_times": { - "total": 7.98988794349134, - "queued": 9.595895, - "clean_up": 0.0014979057013988495, - "create_cpp": 0.056887710466980934, - "file_setup": 0.2363742906600237, - "compile_cpp": 4.887871127575636, - "create_r1cs": 0.016758300364017487, - "save_results": 0.00578792579472065, - "get_r1cs_info": 0.000655466690659523, - "groth16_setup": 1.3654928021132946, - "export_verification_key": 1.4161598179489374, - "download_trusted_setup_file": 0.00191524438560009 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, + "compute_times": { + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6a61d82c-84e8-4c6b-9cbc-afa59a3dd297", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:50:20.025Z", - "proving_scheme": "groth16", + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.851374S", - "compute_times": { - "total": 7.936480965465307, - "queued": 1.058339, - "clean_up": 0.001843426376581192, - "create_cpp": 0.04711670242249966, - "file_setup": 0.2590673416852951, - "compile_cpp": 4.6749470960348845, - "create_r1cs": 0.011059625074267387, - "save_results": 0.006622841581702232, - "get_r1cs_info": 0.0006548557430505753, - "groth16_setup": 1.4773112516850233, - "export_verification_key": 1.4550056345760822, - "download_trusted_setup_file": 0.002507215365767479 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, + "compute_times": { + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f076d1e9-1221-4e4f-b93a-5d1a65e70f91", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:50:18.711Z", - "proving_scheme": "groth16", + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.671909S", - "compute_times": { - "total": 7.752114692702889, - "queued": 1.120105, - "clean_up": 0.0017052926123142242, - "create_cpp": 0.0554554108530283, - "file_setup": 0.254299521446228, - "compile_cpp": 4.53538416698575, - "create_r1cs": 0.019296107813715935, - "save_results": 0.005684012547135353, - "get_r1cs_info": 0.000739341601729393, - "groth16_setup": 1.4482497554272413, - "export_verification_key": 1.4276448003947735, - "download_trusted_setup_file": 0.0031732507050037384 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, + "compute_times": { + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3ac018ab-21c3-4149-9bec-ae77a8fb49ab", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:50:18.680Z", - "proving_scheme": "groth16", + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.682966S", - "compute_times": { - "total": 7.775568487122655, - "queued": 1.374417, - "clean_up": 0.0017570890486240387, - "create_cpp": 0.04991978965699673, - "file_setup": 0.2661570589989424, - "compile_cpp": 4.481879696249962, - "create_r1cs": 0.017130015417933464, - "save_results": 0.005561588332056999, - "get_r1cs_info": 0.0007625855505466461, - "groth16_setup": 1.442964818328619, - "export_verification_key": 1.5065135695040226, - "download_trusted_setup_file": 0.00246431864798069 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, + "compute_times": { + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ce96ccac-95af-43a0-a81e-cd23e9068d37", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:50:18.623Z", - "proving_scheme": "groth16", + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.668288S", - "compute_times": { - "total": 7.74694580771029, - "queued": 1.160826, - "clean_up": 0.0016458947211503983, - "create_cpp": 0.05009524151682854, - "file_setup": 0.27001221664249897, - "compile_cpp": 4.7398079466074705, - "create_r1cs": 0.01706443540751934, - "save_results": 0.0056135449558496475, - "get_r1cs_info": 0.0006729774177074432, - "groth16_setup": 1.340934656560421, - "export_verification_key": 1.3180796634405851, - "download_trusted_setup_file": 0.002530023455619812 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, + "compute_times": { + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d2151d0c-5dcb-49ae-b451-f763b9fb0830", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:49:27.765Z", - "proving_scheme": "groth16", + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.710537S", - "compute_times": { - "total": 7.809466190636158, - "queued": 1.098008, - "clean_up": 0.001737702637910843, - "create_cpp": 0.048770468682050705, - "file_setup": 0.2964275795966387, - "compile_cpp": 4.62178766913712, - "create_r1cs": 0.016994547098875046, - "save_results": 0.005755074322223663, - "get_r1cs_info": 0.000483684241771698, - "groth16_setup": 1.4868505895137787, - "export_verification_key": 1.328504517674446, - "download_trusted_setup_file": 0.001583334058523178 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, + "compute_times": { + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4b8bd698-0ec8-4a3c-b054-dc94702908b8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:49:26.693Z", - "proving_scheme": "groth16", + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.874326S", - "compute_times": { - "total": 7.964226454496384, - "queued": 1.179343, - "clean_up": 0.0016873739659786224, - "create_cpp": 0.049062516540288925, - "file_setup": 0.26052811928093433, - "compile_cpp": 4.61213406175375, - "create_r1cs": 0.018942877650260925, - "save_results": 0.006677566096186638, - "get_r1cs_info": 0.0005794204771518707, - "groth16_setup": 1.48171117156744, - "export_verification_key": 1.5311051458120346, - "download_trusted_setup_file": 0.0014842581003904343 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, + "compute_times": { + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "155b4b85-b7ae-4f95-a4ed-4147a7de7fe6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:49:26.383Z", - "proving_scheme": "groth16", + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.749949S", - "compute_times": { - "total": 7.829013995826244, - "queued": 1.142999, - "clean_up": 0.0008353088051080704, - "create_cpp": 0.053893035277724266, - "file_setup": 0.24244733341038227, - "compile_cpp": 4.61862338334322, - "create_r1cs": 0.015483187511563301, - "save_results": 0.004380660131573677, - "get_r1cs_info": 0.0006992518901824951, - "groth16_setup": 1.4251426942646503, - "export_verification_key": 1.4645712282508612, - "download_trusted_setup_file": 0.0024489928036928177 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, + "compute_times": { + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "413361ac-bcaa-4057-85e6-479dc0e9deba", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:49:26.324Z", - "proving_scheme": "groth16", + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.642788S", - "compute_times": { - "total": 7.720644621178508, - "queued": 1.162661, - "clean_up": 0.0008935760706663132, - "create_cpp": 0.05431099981069565, - "file_setup": 0.2567560989409685, - "compile_cpp": 4.618247997015715, - "create_r1cs": 0.01814628764986992, - "save_results": 0.0049981530755758286, - "get_r1cs_info": 0.0009683482348918915, - "groth16_setup": 1.4208254627883434, - "export_verification_key": 1.342044984921813, - "download_trusted_setup_file": 0.002907775342464447 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, + "compute_times": { + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f6721499-2c00-429c-9215-306562087f3c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:59.864Z", - "proving_scheme": "groth16", + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.476797S", - "compute_times": { - "total": 7.554694190621376, - "queued": 8.490739, - "clean_up": 0.001280084252357483, - "create_cpp": 0.04679052531719208, - "file_setup": 0.2480800412595272, - "compile_cpp": 4.608315961435437, - "create_r1cs": 0.010296281427145004, - "save_results": 0.005138525739312172, - "get_r1cs_info": 0.0006614606827497482, - "groth16_setup": 1.2760554868727922, - "export_verification_key": 1.3551383931189775, - "download_trusted_setup_file": 0.002459688112139702 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, + "compute_times": { + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c64d50b6-82b2-488e-b16a-d8579f7164b2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:58.842Z", - "proving_scheme": "groth16", + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.682333S", - "compute_times": { - "total": 7.775689832866192, - "queued": 1.146722, - "clean_up": 0.0018197707831859589, - "create_cpp": 0.045808885246515274, - "file_setup": 0.2579942364245653, - "compile_cpp": 4.6305790320038795, - "create_r1cs": 0.0165061317384243, - "save_results": 0.006031488999724388, - "get_r1cs_info": 0.0005368776619434357, - "groth16_setup": 1.4302892293781042, - "export_verification_key": 1.3840640261769295, - "download_trusted_setup_file": 0.001457681879401207 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, + "compute_times": { + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fd68ec95-cb88-4944-a62e-d762e4d6e851", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:58.484Z", - "proving_scheme": "groth16", + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.845773S", - "compute_times": { - "total": 7.921329101547599, - "queued": 1.401368, - "clean_up": 0.0007218196988105774, - "create_cpp": 0.05786048248410225, - "file_setup": 0.303074324503541, - "compile_cpp": 4.705286420881748, - "create_r1cs": 0.0170378927141428, - "save_results": 0.005208676680922508, - "get_r1cs_info": 0.0006915386766195297, - "groth16_setup": 1.3473380841314793, - "export_verification_key": 1.4811212103813887, - "download_trusted_setup_file": 0.0025439634919166565 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, + "compute_times": { + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "150e09f9-0ad0-4b12-9afa-1c95076c1ad2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:58.436Z", - "proving_scheme": "groth16", + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.537626S", - "compute_times": { - "total": 7.609223047271371, - "queued": 1.174004, - "clean_up": 0.0018986072391271591, - "create_cpp": 0.04804324172437191, - "file_setup": 0.23359503969550133, - "compile_cpp": 4.719695445150137, - "create_r1cs": 0.017463305965065956, - "save_results": 0.005400665104389191, - "get_r1cs_info": 0.0008178930729627609, - "groth16_setup": 1.291828017681837, - "export_verification_key": 1.2875860054045916, - "download_trusted_setup_file": 0.002461083233356476 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, + "compute_times": { + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8697f2af-8ae6-406c-a49a-032242345f4c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:08.500Z", - "proving_scheme": "groth16", + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.786954S", - "compute_times": { - "total": 7.866660824045539, - "queued": 26.529028, - "clean_up": 0.001429310068488121, - "create_cpp": 0.05666426755487919, - "file_setup": 0.24920494854450226, - "compile_cpp": 4.811976304277778, - "create_r1cs": 0.009921343997120857, - "save_results": 0.005788298323750496, - "get_r1cs_info": 0.000774867832660675, - "groth16_setup": 1.3699789196252823, - "export_verification_key": 1.3578939326107502, - "download_trusted_setup_file": 0.0025129076093435287 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, + "compute_times": { + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1d8ed536-7799-4104-9829-aab438b46c50", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:07.542Z", - "proving_scheme": "groth16", + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.742077S", - "compute_times": { - "total": 7.817316031083465, - "queued": 18.599385, - "clean_up": 0.0018254183232784271, - "create_cpp": 0.046345429494977, - "file_setup": 0.2319784890860319, - "compile_cpp": 4.7667300291359425, - "create_r1cs": 0.028794724494218826, - "save_results": 0.00572955422103405, - "get_r1cs_info": 0.0007030870765447617, - "groth16_setup": 1.3311582524329424, - "export_verification_key": 1.4022186826914549, - "download_trusted_setup_file": 0.0013777166604995728 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, + "compute_times": { + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "31036229-08f3-46ef-8764-d07d8457ae98", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:07.152Z", - "proving_scheme": "groth16", + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.755260S", - "compute_times": { - "total": 7.827754411846399, - "queued": 1.187311, - "clean_up": 0.0015825219452381134, - "create_cpp": 0.055841829627752304, - "file_setup": 0.24094245955348015, - "compile_cpp": 4.727515337988734, - "create_r1cs": 0.01797172799706459, - "save_results": 0.00582987442612648, - "get_r1cs_info": 0.0007000844925642014, - "groth16_setup": 1.3169381711632013, - "export_verification_key": 1.457504654303193, - "download_trusted_setup_file": 0.0024551209062337875 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, + "compute_times": { + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5903cf7f-4216-4310-9b75-38372f8c388c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:48:07.102Z", - "proving_scheme": "groth16", + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.629072S", - "compute_times": { - "total": 7.706731498241425, - "queued": 10.220574, - "clean_up": 0.0017311125993728638, - "create_cpp": 0.04118148237466812, - "file_setup": 0.24070367217063904, - "compile_cpp": 4.700527288019657, - "create_r1cs": 0.018805818632245064, - "save_results": 0.00452309288084507, - "get_r1cs_info": 0.0006768498569726944, - "groth16_setup": 1.3046912178397179, - "export_verification_key": 1.3908804636448622, - "download_trusted_setup_file": 0.002524895593523979 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, + "compute_times": { + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b0c793e4-b515-45ac-8a72-cfae0ac922dc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:44:24.312Z", - "proving_scheme": "groth16", + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.482628S", - "compute_times": { - "total": 7.561975220218301, - "queued": 1.222391, - "clean_up": 0.0017055310308933258, - "create_cpp": 0.05199330858886242, - "file_setup": 0.2374334391206503, - "compile_cpp": 4.667886773124337, - "create_r1cs": 0.01656530611217022, - "save_results": 0.006572069600224495, - "get_r1cs_info": 0.000768609344959259, - "groth16_setup": 1.3185450080782175, - "export_verification_key": 1.257138391956687, - "download_trusted_setup_file": 0.002875484526157379 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, + "compute_times": { + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8233556a-9137-4b8f-87d6-5bef601f558e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:43:35.089Z", - "proving_scheme": "groth16", + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.884736S", - "compute_times": { - "total": 7.959419224411249, - "queued": 1.229535, - "clean_up": 0.0019381027668714523, - "create_cpp": 0.05442995950579643, - "file_setup": 0.24910731054842472, - "compile_cpp": 4.846454568207264, - "create_r1cs": 0.017506379634141922, - "save_results": 0.006044380366802216, - "get_r1cs_info": 0.0007475633174180984, - "groth16_setup": 1.4534037355333567, - "export_verification_key": 1.326861247420311, - "download_trusted_setup_file": 0.0024160724133253098 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, + "compute_times": { + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "33b156af-e90c-45b9-8443-ef17bd8f6d97", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:42:30.035Z", - "proving_scheme": "groth16", + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.407008S", - "compute_times": { - "total": 7.483849035575986, - "queued": 1.19642, - "clean_up": 0.0023624245077371597, - "create_cpp": 0.04774354584515095, - "file_setup": 0.2423761673271656, - "compile_cpp": 4.617915507405996, - "create_r1cs": 0.010918818414211273, - "save_results": 0.005705619230866432, - "get_r1cs_info": 0.0007171276956796646, - "groth16_setup": 1.274269174784422, - "export_verification_key": 1.2790968604385853, - "download_trusted_setup_file": 0.0024453066289424896 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, + "compute_times": { + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fdfc7247-b167-4abd-91b0-6371c1577350", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:41:31.147Z", - "proving_scheme": "groth16", + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.445445S", - "compute_times": { - "total": 7.523868313059211, - "queued": 1.124406, - "clean_up": 0.0018163751810789108, - "create_cpp": 0.05418575927615166, - "file_setup": 0.2429647035896778, - "compile_cpp": 4.620327420532703, - "create_r1cs": 0.009532531723380089, - "save_results": 0.005571851506829262, - "get_r1cs_info": 0.0006300453096628189, - "groth16_setup": 1.2738962657749653, - "export_verification_key": 1.312037419527769, - "download_trusted_setup_file": 0.0024276338517665863 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, + "compute_times": { + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "42522dc2-f82b-4520-967a-55e3e5dabc3c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:41:15.809Z", - "proving_scheme": "groth16", + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.571921S", - "compute_times": { - "total": 7.650477720424533, - "queued": 1.111976, - "clean_up": 0.0017036069184541702, - "create_cpp": 0.05775970779359341, - "file_setup": 0.24369817227125168, - "compile_cpp": 4.567208100110292, - "create_r1cs": 0.010626023635268211, - "save_results": 0.005508618429303169, - "get_r1cs_info": 0.0007592644542455673, - "groth16_setup": 1.325358035042882, - "export_verification_key": 1.434918174520135, - "download_trusted_setup_file": 0.002489684149622917 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, + "compute_times": { + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ccb365dd-aaa7-4135-8451-8109549d2425", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:40:40.350Z", - "proving_scheme": "groth16", + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.478422S", - "compute_times": { - "total": 7.552844997495413, - "queued": 1.131376, - "clean_up": 0.0011975225061178207, - "create_cpp": 0.04975225776433945, - "file_setup": 0.23737302795052528, - "compile_cpp": 4.705687249079347, - "create_r1cs": 0.010492220520973206, - "save_results": 0.005188409239053726, - "get_r1cs_info": 0.000648990273475647, - "groth16_setup": 1.239344047382474, - "export_verification_key": 1.3002808820456266, - "download_trusted_setup_file": 0.0024506710469722748 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, + "compute_times": { + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cb341471-b6e3-493d-b1e8-b53ce3cd6a5b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:39:10.262Z", - "proving_scheme": "groth16", + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.538228S", - "compute_times": { - "total": 7.6150872856378555, - "queued": 1.141062, - "clean_up": 0.0008311737328767776, - "create_cpp": 0.049604376778006554, - "file_setup": 0.2431975770741701, - "compile_cpp": 4.613074295222759, - "create_r1cs": 0.010859638452529907, - "save_results": 0.0043745823204517365, - "get_r1cs_info": 0.0006608162075281143, - "groth16_setup": 1.3494537398219109, - "export_verification_key": 1.3401750400662422, - "download_trusted_setup_file": 0.0024873558431863785 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, + "compute_times": { + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "0dc923b0-4401-4293-a34b-d6c5580a0645", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:38:13.292Z", - "proving_scheme": "groth16", + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.395198S", - "compute_times": { - "total": 7.466056250035763, - "queued": 1.163961, - "clean_up": 0.0011384561657905579, - "create_cpp": 0.04686044529080391, - "file_setup": 0.24102316424250603, - "compile_cpp": 4.544771498069167, - "create_r1cs": 0.024224452674388885, - "save_results": 0.003494899719953537, - "get_r1cs_info": 0.0006983857601881027, - "groth16_setup": 1.3162990398705006, - "export_verification_key": 1.2855232805013657, - "download_trusted_setup_file": 0.0015111621469259262 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, + "compute_times": { + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "326d7770-6645-42f7-8e1f-4bbf78603c2d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:36:59.942Z", - "proving_scheme": "groth16", + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.493549S", - "compute_times": { - "total": 7.5688981637358665, - "queued": 1.122729, - "clean_up": 0.0016787368804216385, - "create_cpp": 0.04684302769601345, - "file_setup": 0.24815072491765022, - "compile_cpp": 4.597322579473257, - "create_r1cs": 0.01063484326004982, - "save_results": 0.006045779213309288, - "get_r1cs_info": 0.0006333775818347931, - "groth16_setup": 1.3306193556636572, - "export_verification_key": 1.3240374308079481, - "download_trusted_setup_file": 0.0024573486298322678 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, + "compute_times": { + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2e5c81e7-f594-4e07-b4f7-1886781181b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:36:29.172Z", - "proving_scheme": "groth16", + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.746103S", - "compute_times": { - "total": 7.818564524874091, - "queued": 1.135853, - "clean_up": 0.0016661174595355988, - "create_cpp": 0.04841892793774605, - "file_setup": 0.247941792011261, - "compile_cpp": 4.713706800714135, - "create_r1cs": 0.01695185899734497, - "save_results": 0.006999487057328224, - "get_r1cs_info": 0.0007085073739290237, - "groth16_setup": 1.3950544595718384, - "export_verification_key": 1.3842929042875767, - "download_trusted_setup_file": 0.0024377331137657166 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, + "compute_times": { + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4a85b21e-2567-4d75-8cf7-f7879d832acf", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:33:59.993Z", - "proving_scheme": "groth16", + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.627692S", - "compute_times": { - "total": 7.703156094998121, - "queued": 1.154377, - "clean_up": 0.0018535908311605453, - "create_cpp": 0.047643400728702545, - "file_setup": 0.2447856217622757, - "compile_cpp": 4.74752707220614, - "create_r1cs": 0.015797777101397514, - "save_results": 0.005216935649514198, - "get_r1cs_info": 0.0007510744035243988, - "groth16_setup": 1.3178835678845644, - "export_verification_key": 1.3187684249132872, - "download_trusted_setup_file": 0.002450980246067047 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, + "compute_times": { + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "49969f00-5b6b-4e1b-ae54-3ebb821dde8b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:33:38.587Z", - "proving_scheme": "groth16", + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.552651S", - "compute_times": { - "total": 7.624790228903294, - "queued": 1.115758, - "clean_up": 0.0017047524452209473, - "create_cpp": 0.04909936711192131, - "file_setup": 0.24133107624948025, - "compile_cpp": 4.7210179921239614, - "create_r1cs": 0.011723736301064491, - "save_results": 0.005721684545278549, - "get_r1cs_info": 0.00038177333772182465, - "groth16_setup": 1.2864660620689392, - "export_verification_key": 1.3059150949120522, - "download_trusted_setup_file": 0.0009307935833930969 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, + "compute_times": { + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4e1013e6-c530-4e8d-9755-f26a64b2d572", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:33:08.324Z", - "proving_scheme": "groth16", + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.724889S", - "compute_times": { - "total": 7.7971851993352175, - "queued": 1.116063, - "clean_up": 0.0017428696155548096, - "create_cpp": 0.05533359386026859, - "file_setup": 0.23893662728369236, - "compile_cpp": 4.91211068071425, - "create_r1cs": 0.017335472628474236, - "save_results": 0.005370132625102997, - "get_r1cs_info": 0.0007455870509147644, - "groth16_setup": 1.2513550594449043, - "export_verification_key": 1.3113222550600767, - "download_trusted_setup_file": 0.0024493057280778885 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, + "compute_times": { + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a2b170e4-edf9-4798-bb85-35245768207d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:09:57.696Z", - "proving_scheme": "groth16", + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.679682S", - "compute_times": { - "total": 7.756731368601322, - "queued": 1.193863, - "clean_up": 0.0013168156147003174, - "create_cpp": 0.04220888577401638, - "file_setup": 0.24753136932849884, - "compile_cpp": 4.787212835624814, - "create_r1cs": 0.017687704414129257, - "save_results": 0.007237255573272705, - "get_r1cs_info": 0.000683177262544632, - "groth16_setup": 1.3392270132899284, - "export_verification_key": 1.3106779605150223, - "download_trusted_setup_file": 0.002470754086971283 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, + "compute_times": { + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4fba5244-d526-41a5-bf36-a34c17c25f9b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:55:58.030Z", - "proving_scheme": "groth16", + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.665572S", - "compute_times": { - "total": 7.745568448677659, - "queued": 1.257926, - "clean_up": 0.0018980763852596283, - "create_cpp": 0.055884186178445816, - "file_setup": 0.26442782394587994, - "compile_cpp": 4.797283286228776, - "create_r1cs": 0.01778632216155529, - "save_results": 0.005175711587071419, - "get_r1cs_info": 0.0007982272654771805, - "groth16_setup": 1.322161003947258, - "export_verification_key": 1.2772313170135021, - "download_trusted_setup_file": 0.0024321619421243668 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, + "compute_times": { + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "60ad4516-8a32-43e1-916b-ab2680b0224a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:52:58.481Z", - "proving_scheme": "groth16", + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.728836S", - "compute_times": { - "total": 7.801407495513558, - "queued": 1.158764, - "clean_up": 0.0015893597155809402, - "create_cpp": 0.05614244565367699, - "file_setup": 0.25334477610886097, - "compile_cpp": 4.813857762143016, - "create_r1cs": 0.012846684083342552, - "save_results": 0.004946554079651833, - "get_r1cs_info": 0.000693419948220253, - "groth16_setup": 1.3405254911631346, - "export_verification_key": 1.3146384991705418, - "download_trusted_setup_file": 0.0024357400834560394 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, + "compute_times": { + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7b802406-de93-4b76-8a09-11511e22bfa4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:49:20.630Z", - "proving_scheme": "groth16", + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.696878S", - "compute_times": { - "total": 7.7695643454790115, - "queued": 1.208482, - "clean_up": 0.001626061275601387, - "create_cpp": 0.047227565199136734, - "file_setup": 0.26737155206501484, - "compile_cpp": 4.872535202652216, - "create_r1cs": 0.01879102736711502, - "save_results": 0.005725011229515076, - "get_r1cs_info": 0.0006924495100975037, - "groth16_setup": 1.232976334169507, - "export_verification_key": 1.3196605183184147, - "download_trusted_setup_file": 0.0024542957544326782 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, + "compute_times": { + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ff3d54cb-7235-405e-a9e3-be957dc4c587", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:49:00.734Z", - "proving_scheme": "groth16", + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.630205S", - "compute_times": { - "total": 7.71001566760242, - "queued": 1.114729, - "clean_up": 0.0020035244524478912, - "create_cpp": 0.053196635097265244, - "file_setup": 0.2405914142727852, - "compile_cpp": 4.621033746749163, - "create_r1cs": 0.03503704071044922, - "save_results": 0.005230717360973358, - "get_r1cs_info": 0.0007014013826847076, - "groth16_setup": 1.402680803090334, - "export_verification_key": 1.3465964272618294, - "download_trusted_setup_file": 0.0024281106889247894 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, + "compute_times": { + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "90f970fc-7021-49fe-80eb-4aaae78d684e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:47:58.175Z", - "proving_scheme": "groth16", + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.246888S", - "compute_times": { - "total": 7.320567287504673, - "queued": 1.199892, - "clean_up": 0.0018009450286626816, - "create_cpp": 0.046688828617334366, - "file_setup": 0.23241388611495495, - "compile_cpp": 4.509111732244492, - "create_r1cs": 0.010652711614966393, - "save_results": 0.0053970906883478165, - "get_r1cs_info": 0.0007533896714448929, - "groth16_setup": 1.233302304521203, - "export_verification_key": 1.2775605637580156, - "download_trusted_setup_file": 0.002413202077150345 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, + "compute_times": { + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "925640ea-fa79-4730-ae82-8add47e913cb", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:47:41.292Z", - "proving_scheme": "groth16", + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.486909S", - "compute_times": { - "total": 7.5634617283940315, - "queued": 1.050597, - "clean_up": 0.0016485508531332016, - "create_cpp": 0.05515584722161293, - "file_setup": 0.23679853416979313, - "compile_cpp": 4.659947486594319, - "create_r1cs": 0.017400609329342842, - "save_results": 0.005805689841508865, - "get_r1cs_info": 0.0006781201809644699, - "groth16_setup": 1.2767266910523176, - "export_verification_key": 1.306356867775321, - "download_trusted_setup_file": 0.0024945326149463654 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, + "compute_times": { + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a5b16192-6898-41e6-bfb5-b73a50b8ebbe", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:45:51.911Z", - "proving_scheme": "groth16", + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.977553S", - "compute_times": { - "total": 8.051811749115586, - "queued": 1.228243, - "clean_up": 0.0016383752226829529, - "create_cpp": 0.04780636169016361, - "file_setup": 0.23954333923757076, - "compile_cpp": 5.166752548888326, - "create_r1cs": 0.018863901495933533, - "save_results": 0.00531991571187973, - "get_r1cs_info": 0.0004027280956506729, - "groth16_setup": 1.2763246074318886, - "export_verification_key": 1.293736344203353, - "download_trusted_setup_file": 0.0010492932051420212 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, + "compute_times": { + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "68adc5ea-f06c-4d28-ac34-b3077b759a9c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:43:16.141Z", - "proving_scheme": "groth16", + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.564382S", - "compute_times": { - "total": 7.62931395880878, - "queued": 1.225967, - "clean_up": 0.0016656853258609772, - "create_cpp": 0.04816170781850815, - "file_setup": 0.22820086777210236, - "compile_cpp": 4.6605421509593725, - "create_r1cs": 0.018833832815289497, - "save_results": 0.006733657792210579, - "get_r1cs_info": 0.0006740186363458633, - "groth16_setup": 1.2996833566576242, - "export_verification_key": 1.3620503433048725, - "download_trusted_setup_file": 0.002435106784105301 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, + "compute_times": { + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6f3bad22-1634-46d7-886e-832cba917fec", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:39:36.584Z", - "proving_scheme": "groth16", + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.664941S", - "compute_times": { - "total": 7.740619659423828, - "queued": 1.1192, - "clean_up": 0.0017648059874773026, - "create_cpp": 0.04447110556066036, - "file_setup": 0.24230228178203106, - "compile_cpp": 4.694819539785385, - "create_r1cs": 0.016316721215844154, - "save_results": 0.005714010447263718, - "get_r1cs_info": 0.0007064640522003174, - "groth16_setup": 1.4219826646149158, - "export_verification_key": 1.309614883735776, - "download_trusted_setup_file": 0.002441825345158577 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, + "compute_times": { + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d26ab648-29b6-43e8-aacf-40e14dfa4ed1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:39:12.911Z", - "proving_scheme": "groth16", + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.596027S", - "compute_times": { - "total": 7.671294875442982, - "queued": 1.147463, - "clean_up": 0.0013887789100408554, - "create_cpp": 0.05159107968211174, - "file_setup": 0.23307767510414124, - "compile_cpp": 4.7507233787328005, - "create_r1cs": 0.01823563687503338, - "save_results": 0.005490930750966072, - "get_r1cs_info": 0.0010182727128267288, - "groth16_setup": 1.3135271780192852, - "export_verification_key": 1.2921632956713438, - "download_trusted_setup_file": 0.003589954227209091 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, + "compute_times": { + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d3a3e7a5-5b0b-459c-81cf-ae43938aa3c3", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:38:01.245Z", - "proving_scheme": "groth16", + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.820008S", - "compute_times": { - "total": 7.897290702909231, - "queued": 1.170189, - "clean_up": 0.0018852725625038147, - "create_cpp": 0.053761351853609085, - "file_setup": 0.24285616353154182, - "compile_cpp": 4.875218540430069, - "create_r1cs": 0.017158547416329384, - "save_results": 0.006690884009003639, - "get_r1cs_info": 0.0008476302027702332, - "groth16_setup": 1.337174404412508, - "export_verification_key": 1.3581416513770819, - "download_trusted_setup_file": 0.00307416170835495 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, + "compute_times": { + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "327c28d6-d905-40a9-aa5e-910432b8c457", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:36:34.772Z", - "proving_scheme": "groth16", + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.386210S", - "compute_times": { - "total": 7.46240858733654, - "queued": 20.421796, - "clean_up": 0.0016153063625097275, - "create_cpp": 0.05553690902888775, - "file_setup": 0.2416877392679453, - "compile_cpp": 4.540888287127018, - "create_r1cs": 0.017148081213235855, - "save_results": 0.005492938682436943, - "get_r1cs_info": 0.0007535982877016068, - "groth16_setup": 1.2554643210023642, - "export_verification_key": 1.3404564801603556, - "download_trusted_setup_file": 0.002688312903046608 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, + "compute_times": { + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "52a77185-bd08-4e1d-a040-068a7be5a72b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:24:06.062Z", - "proving_scheme": "groth16", + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.640178S", - "compute_times": { - "total": 7.714155467227101, - "queued": 1.185042, - "clean_up": 0.0016178041696548462, - "create_cpp": 0.04732489213347435, - "file_setup": 0.24032527580857277, - "compile_cpp": 4.717082438990474, - "create_r1cs": 0.016816765069961548, - "save_results": 0.0056424327194690704, - "get_r1cs_info": 0.0007807277143001556, - "groth16_setup": 1.3203076552599669, - "export_verification_key": 1.36131626740098, - "download_trusted_setup_file": 0.00248648039996624 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, + "compute_times": { + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "92b6ffef-2d23-4ea4-9c17-25449acf9f6d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:12:25.903Z", - "proving_scheme": "groth16", + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.459452S", - "compute_times": { - "total": 7.538122421130538, - "queued": 3.182029, - "clean_up": 0.0019169263541698456, - "create_cpp": 0.05147097259759903, - "file_setup": 0.23234434984624386, - "compile_cpp": 4.633158722892404, - "create_r1cs": 0.015974245965480804, - "save_results": 0.0055649615824222565, - "get_r1cs_info": 0.0007752608507871628, - "groth16_setup": 1.2927527874708176, - "export_verification_key": 1.3012404087930918, - "download_trusted_setup_file": 0.002442318946123123 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, + "compute_times": { + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f5bf0783-4e8e-4d3a-8afb-3756d6630ed6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T02:17:06.356Z", - "proving_scheme": "groth16", + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.767214S", - "compute_times": { - "total": 7.844439402222633, - "queued": 22.255549, - "clean_up": 0.001671966165304184, - "create_cpp": 0.04819011874496937, - "file_setup": 0.23547505028545856, - "compile_cpp": 4.71245345659554, - "create_r1cs": 0.017498936504125595, - "save_results": 0.005684111267328262, - "get_r1cs_info": 0.00042267516255378723, - "groth16_setup": 1.3792817536741495, - "export_verification_key": 1.4420029371976852, - "download_trusted_setup_file": 0.001202734187245369 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, + "compute_times": { + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "895316d4-2a3d-4418-bb02-4d247bb31f42", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T02:17:06.305Z", - "proving_scheme": "groth16", + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.367716S", - "compute_times": { - "total": 7.445993509143591, - "queued": 19.4902, - "clean_up": 0.001679038628935814, - "create_cpp": 0.04941392503678799, - "file_setup": 0.2603658549487591, - "compile_cpp": 4.4457344226539135, - "create_r1cs": 0.015564171597361565, - "save_results": 0.005699107423424721, - "get_r1cs_info": 0.00044892914593219757, - "groth16_setup": 1.3399745263159275, - "export_verification_key": 1.3249822482466698, - "download_trusted_setup_file": 0.0015281010419130325 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, + "compute_times": { + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "be9aeee2-67a1-40cc-b2a9-31c749baa91a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T02:17:06.264Z", - "proving_scheme": "groth16", + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:14.150Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.440114S", - "compute_times": { - "total": 7.517095539718866, - "queued": 17.354408, - "clean_up": 0.0018942803144454956, - "create_cpp": 0.055966123938560486, - "file_setup": 0.23165968619287014, - "compile_cpp": 4.604835856705904, - "create_r1cs": 0.016073141247034073, - "save_results": 0.005840808153152466, - "get_r1cs_info": 0.0005646403878927231, - "groth16_setup": 1.3124119993299246, - "export_verification_key": 1.2851601000875235, - "download_trusted_setup_file": 0.002033783122897148 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, + "compute_times": { + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "65fe2793-9973-4c6e-8802-d0788c536501", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T01:35:42.731Z", - "proving_scheme": "groth16", + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:12.520Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.704094S", - "compute_times": { - "total": 7.780933722853661, - "queued": 1.20041, - "clean_up": 0.0017544794827699661, - "create_cpp": 0.047739313915371895, - "file_setup": 0.25539655797183514, - "compile_cpp": 4.67063057795167, - "create_r1cs": 0.01837228797376156, - "save_results": 0.005115482956171036, - "get_r1cs_info": 0.0008046850562095642, - "groth16_setup": 1.3312513139098883, - "export_verification_key": 1.4467235822230577, - "download_trusted_setup_file": 0.0026854518800973892 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, + "compute_times": { + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ec20c2f1-63b4-453b-b631-042f1dace286", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T01:35:42.477Z", - "proving_scheme": "groth16", + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:10.959Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.539209S", - "compute_times": { - "total": 7.630237089470029, - "queued": 1.20364, - "clean_up": 0.0018465593457221985, - "create_cpp": 0.048426778987050056, - "file_setup": 0.28575040958821774, - "compile_cpp": 4.522350315004587, - "create_r1cs": 0.010585671290755272, - "save_results": 0.00592038594186306, - "get_r1cs_info": 0.000683952122926712, - "groth16_setup": 1.3668177835643291, - "export_verification_key": 1.3847495634108782, - "download_trusted_setup_file": 0.0025108084082603455 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, + "compute_times": { + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f550240d-ab41-46fc-8349-ef5dd2b6ae72", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T01:35:42.441Z", - "proving_scheme": "groth16", + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:09.368Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.547238S", - "compute_times": { - "total": 7.629827946424484, - "queued": 1.057625, - "clean_up": 0.0015633665025234222, - "create_cpp": 0.056376999244093895, - "file_setup": 0.2554791755974293, - "compile_cpp": 4.59183656424284, - "create_r1cs": 0.014426013454794884, - "save_results": 0.005605714395642281, - "get_r1cs_info": 0.0006720162928104401, - "groth16_setup": 1.3423564583063126, - "export_verification_key": 1.3587531484663486, - "download_trusted_setup_file": 0.002422267571091652 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, + "compute_times": { + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "e385fc9a-6678-4436-a4d9-7b6207cdec1e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T01:34:48.278Z", - "proving_scheme": "groth16", + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:07.782Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.602105S", - "compute_times": { - "total": 7.6787131037563086, - "queued": 28.269221, - "clean_up": 0.0008335374295711517, - "create_cpp": 0.05295123904943466, - "file_setup": 0.24620787054300308, - "compile_cpp": 4.666990481317043, - "create_r1cs": 0.017643820494413376, - "save_results": 0.006149968132376671, - "get_r1cs_info": 0.0006770137697458267, - "groth16_setup": 1.286754585802555, - "export_verification_key": 1.3974271193146706, - "download_trusted_setup_file": 0.0024820510298013687 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, + "compute_times": { + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c0a257a6-6595-4d8f-af76-3c72ccb8124c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T01:34:47.881Z", - "proving_scheme": "groth16", + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:06.214Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.648258S", - "compute_times": { - "total": 7.727745875716209, - "queued": 23.412292, - "clean_up": 0.0017776917666196823, - "create_cpp": 0.0479858573526144, - "file_setup": 0.2476426586508751, - "compile_cpp": 4.7762017995119095, - "create_r1cs": 0.015666168183088303, - "save_results": 0.005719615146517754, - "get_r1cs_info": 0.0005191490054130554, - "groth16_setup": 1.3373233694583178, - "export_verification_key": 1.2932734712958336, - "download_trusted_setup_file": 0.0012765545397996902 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, + "compute_times": { + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "17179e01-d7c4-4aea-aa1a-992f916bdee2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T01:34:47.812Z", - "proving_scheme": "groth16", + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:04.623Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.917575S", - "compute_times": { - "total": 7.996331673115492, - "queued": 14.301244, - "clean_up": 0.001385565847158432, - "create_cpp": 0.05693238601088524, - "file_setup": 0.24305696785449982, - "compile_cpp": 4.886592995375395, - "create_r1cs": 0.016436800360679626, - "save_results": 0.0048583559691905975, - "get_r1cs_info": 0.0007434748113155365, - "groth16_setup": 1.4628947488963604, - "export_verification_key": 1.320095032453537, - "download_trusted_setup_file": 0.002690603956580162 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, + "compute_times": { + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "97c1188b-940e-495c-b19a-95136ca94651", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T22:14:07.689Z", - "proving_scheme": "groth16", + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:03.050Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.579924S", - "compute_times": { - "total": 7.688783111050725, - "queued": 19.081671, - "clean_up": 0.0016204454004764557, - "create_cpp": 0.04679172858595848, - "file_setup": 0.29103851318359375, - "compile_cpp": 4.59976408816874, - "create_r1cs": 0.01832420565187931, - "save_results": 0.0057008713483810425, - "get_r1cs_info": 0.0007570423185825348, - "groth16_setup": 1.3156583420932293, - "export_verification_key": 1.4062066301703453, - "download_trusted_setup_file": 0.0025102216750383377 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, + "compute_times": { + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f171ba6b-3c6e-45ab-8978-cc81b2591fe2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:56:00.914Z", - "proving_scheme": "groth16", + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:01.474Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.636625S", - "compute_times": { - "total": 7.707771621644497, - "queued": 18.700163, - "clean_up": 0.0018135719001293182, - "create_cpp": 0.04718630388379097, - "file_setup": 0.24202751740813255, - "compile_cpp": 4.60657000541687, - "create_r1cs": 0.01767110638320446, - "save_results": 0.006701948121190071, - "get_r1cs_info": 0.0008154623210430145, - "groth16_setup": 1.4166238810867071, - "export_verification_key": 1.3650648556649685, - "download_trusted_setup_file": 0.0026601888239383698 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, + "compute_times": { + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c5e01da7-48f8-41cc-b451-e3dadd91082f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:56:00.471Z", - "proving_scheme": "groth16", + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:59.935Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.594002S", - "compute_times": { - "total": 7.674397809430957, - "queued": 17.546896, - "clean_up": 0.0017005838453769684, - "create_cpp": 0.04909280128777027, - "file_setup": 0.2650355380028486, - "compile_cpp": 4.535461347550154, - "create_r1cs": 0.01683916337788105, - "save_results": 0.005601212382316589, - "get_r1cs_info": 0.0004042927175760269, - "groth16_setup": 1.4130164682865143, - "export_verification_key": 1.3854157458990812, - "download_trusted_setup_file": 0.0012020468711853027 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, + "compute_times": { + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7b4d64f7-9eb1-43ea-88da-ee0c30a30dc0", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:56:00.454Z", - "proving_scheme": "groth16", + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:58.407Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.596317S", - "compute_times": { - "total": 7.6730455961078405, - "queued": 15.290082, - "clean_up": 0.001669473946094513, - "create_cpp": 0.05485839210450649, - "file_setup": 0.26459758542478085, - "compile_cpp": 4.7679917477071285, - "create_r1cs": 0.011294171214103699, - "save_results": 0.005053173750638962, - "get_r1cs_info": 0.000985546037554741, - "groth16_setup": 1.249212957918644, - "export_verification_key": 1.313942413777113, - "download_trusted_setup_file": 0.0028024110943078995 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, + "compute_times": { + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cdd9f705-bc15-43bb-949e-3717f72d942b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:38:26.210Z", - "proving_scheme": "groth16", + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:56.860Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.677959S", - "compute_times": { - "total": 7.7533275205641985, - "queued": 18.19898, - "clean_up": 0.0016758590936660767, - "create_cpp": 0.04743916355073452, - "file_setup": 0.22825423069298267, - "compile_cpp": 4.849137723445892, - "create_r1cs": 0.017714163288474083, - "save_results": 0.005707431584596634, - "get_r1cs_info": 0.0005600731819868088, - "groth16_setup": 1.2724982649087906, - "export_verification_key": 1.3279783483594656, - "download_trusted_setup_file": 0.001912679523229599 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, + "compute_times": { + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4500e242-4807-4e58-8c61-51890f37a199", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:38:25.812Z", - "proving_scheme": "groth16", + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:55.316Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.569673S", - "compute_times": { - "total": 7.647986855357885, - "queued": 9.85944, - "clean_up": 0.0016725938767194748, - "create_cpp": 0.052060317248106, - "file_setup": 0.2424705233424902, - "compile_cpp": 4.573579087853432, - "create_r1cs": 0.016123183071613312, - "save_results": 0.005695518106222153, - "get_r1cs_info": 0.0006785281002521515, - "groth16_setup": 1.393597211688757, - "export_verification_key": 1.3591100927442312, - "download_trusted_setup_file": 0.002507256343960762 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, + "compute_times": { + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "fcc7ffbc-e73d-442d-b2d7-d668f4ddb8f8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:38:25.748Z", - "proving_scheme": "groth16", + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:53.766Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.519034S", - "compute_times": { - "total": 7.592722037807107, - "queued": 1.189058, - "clean_up": 0.0011803433299064636, - "create_cpp": 0.04865703918039799, - "file_setup": 0.23373384028673172, - "compile_cpp": 4.677073501050472, - "create_r1cs": 0.017674315720796585, - "save_results": 0.006435971707105637, - "get_r1cs_info": 0.0009603966027498245, - "groth16_setup": 1.317440578714013, - "export_verification_key": 1.2857090160250664, - "download_trusted_setup_file": 0.003442632034420967 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, + "compute_times": { + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "148d24da-5577-4b99-829e-7a37ba6e1ce5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:36:51.312Z", - "proving_scheme": "groth16", + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:52.213Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.909233S", - "compute_times": { - "total": 7.984679609537125, - "queued": 1.116588, - "clean_up": 0.0015947632491588593, - "create_cpp": 0.04699246771633625, - "file_setup": 0.2352718897163868, - "compile_cpp": 4.984196016564965, - "create_r1cs": 0.01876012235879898, - "save_results": 0.006016256287693977, - "get_r1cs_info": 0.0008815042674541473, - "groth16_setup": 1.314208835363388, - "export_verification_key": 1.37380082719028, - "download_trusted_setup_file": 0.00247078575193882 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, + "compute_times": { + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "27f2cb36-588e-4279-a7db-f71bce8fd3ea", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:36:25.925Z", - "proving_scheme": "groth16", + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:50.640Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.632335S", - "compute_times": { - "total": 7.709978420287371, - "queued": 1.211208, - "clean_up": 0.0013846959918737411, - "create_cpp": 0.05810563452541828, - "file_setup": 0.24006458930671215, - "compile_cpp": 4.666282197460532, - "create_r1cs": 0.017120130360126495, - "save_results": 0.005914704874157906, - "get_r1cs_info": 0.000698436051607132, - "groth16_setup": 1.4062776304781437, - "export_verification_key": 1.3112494498491287, - "download_trusted_setup_file": 0.0024253148585557938 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, + "compute_times": { + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4b6bf726-5d2f-4e08-b9a6-fcd3ed910235", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:33:40.483Z", - "proving_scheme": "groth16", + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:49.058Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.706300S", - "compute_times": { - "total": 7.782388724386692, - "queued": 1.17897, - "clean_up": 0.0017512757331132889, - "create_cpp": 0.05008737929165363, - "file_setup": 0.2461202573031187, - "compile_cpp": 4.85274338722229, - "create_r1cs": 0.016811428591609, - "save_results": 0.00556546077132225, - "get_r1cs_info": 0.0006687957793474197, - "groth16_setup": 1.2804529499262571, - "export_verification_key": 1.3252677004784346, - "download_trusted_setup_file": 0.0024891532957553864 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, + "compute_times": { + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a2d7e23a-f3c6-49fa-8a02-e26e57348317", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:32:49.211Z", - "proving_scheme": "groth16", + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:47.479Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.470841S", - "compute_times": { - "total": 7.549792183563113, - "queued": 1.20048, - "clean_up": 0.0015842076390981674, - "create_cpp": 0.054698651656508446, - "file_setup": 0.24776330403983593, - "compile_cpp": 4.5193129144608974, - "create_r1cs": 0.010665420442819595, - "save_results": 0.005249980837106705, - "get_r1cs_info": 0.0006738137453794479, - "groth16_setup": 1.3397254347801208, - "export_verification_key": 1.3671844005584717, - "download_trusted_setup_file": 0.0024946723133325577 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, + "compute_times": { + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "686340bc-d045-4229-ba44-87f651888ea1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:31:13.485Z", - "proving_scheme": "groth16", + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:45.920Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.760798S", - "compute_times": { - "total": 7.836315272375941, - "queued": 1.203562, - "clean_up": 0.0016642827540636063, - "create_cpp": 0.05337905138731003, - "file_setup": 0.23328274302184582, - "compile_cpp": 4.752988923341036, - "create_r1cs": 0.010774670168757439, - "save_results": 0.0066010840237140656, - "get_r1cs_info": 0.0005256552249193192, - "groth16_setup": 1.285637954249978, - "export_verification_key": 1.489252969622612, - "download_trusted_setup_file": 0.0017739832401275635 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, + "compute_times": { + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "218bfbe6-9e50-4702-a1e5-77a1c8f3d8ed", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:30:35.803Z", - "proving_scheme": "groth16", + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:44.421Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.456547S", - "compute_times": { - "total": 7.544302523136139, - "queued": 1.161186, - "clean_up": 0.0016966871917247772, - "create_cpp": 0.055683160200715065, - "file_setup": 0.2663968615233898, - "compile_cpp": 4.470876835286617, - "create_r1cs": 0.016854027286171913, - "save_results": 0.0059831272810697556, - "get_r1cs_info": 0.0006471928209066391, - "groth16_setup": 1.381587591022253, - "export_verification_key": 1.3415857050567865, - "download_trusted_setup_file": 0.0023956000804901123 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, + "compute_times": { + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "17b13d5a-87b1-4923-a41b-8dfac41598e6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:26:12.192Z", - "proving_scheme": "groth16", + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:42.838Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.534251S", - "compute_times": { - "total": 7.610159991309047, - "queued": 1.074114, - "clean_up": 0.0017370078712701797, - "create_cpp": 0.048391491174697876, - "file_setup": 0.29270106740295887, - "compile_cpp": 4.538070844486356, - "create_r1cs": 0.01847922056913376, - "save_results": 0.005488520488142967, - "get_r1cs_info": 0.000662611797451973, - "groth16_setup": 1.36158980242908, - "export_verification_key": 1.3403133414685726, - "download_trusted_setup_file": 0.0024301279336214066 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, + "compute_times": { + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "f31735ba-10be-4e12-982d-4fef1e1ce0dd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:45.617Z", - "proving_scheme": "groth16", + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:41.260Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.752871S", - "compute_times": { - "total": 7.832450011745095, - "queued": 8.522851, - "clean_up": 0.001605834811925888, - "create_cpp": 0.055504463613033295, - "file_setup": 0.26607356034219265, - "compile_cpp": 4.702925104647875, - "create_r1cs": 0.01827242784202099, - "save_results": 0.005086880177259445, - "get_r1cs_info": 0.0006781108677387238, - "groth16_setup": 1.3349650297313929, - "export_verification_key": 1.4444408621639013, - "download_trusted_setup_file": 0.0024520885199308395 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, + "compute_times": { + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "aaf4017c-ab46-4f93-bf28-2e56f01dc1fc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:44.641Z", - "proving_scheme": "groth16", + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:39.684Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.753917S", - "compute_times": { - "total": 7.827567195519805, - "queued": 1.101088, - "clean_up": 0.0016659628599882126, - "create_cpp": 0.05382388457655907, - "file_setup": 0.2323012426495552, - "compile_cpp": 4.666489981114864, - "create_r1cs": 0.011194108054041862, - "save_results": 0.006574276834726334, - "get_r1cs_info": 0.0007063709199428558, - "groth16_setup": 1.4113504774868488, - "export_verification_key": 1.440731318667531, - "download_trusted_setup_file": 0.0024564042687416077 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, + "compute_times": { + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "db84e100-4f7c-48f6-9f4c-da94fb521ba4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:44.325Z", - "proving_scheme": "groth16", + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:38.137Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.506195S", - "compute_times": { - "total": 7.577193319797516, - "queued": 1.126466, - "clean_up": 0.0016360525041818619, - "create_cpp": 0.050101183354854584, - "file_setup": 0.2603087369352579, - "compile_cpp": 4.455103283748031, - "create_r1cs": 0.0183374285697937, - "save_results": 0.0060533396899700165, - "get_r1cs_info": 0.0006764288991689682, - "groth16_setup": 1.3401963710784912, - "export_verification_key": 1.4419056754559278, - "download_trusted_setup_file": 0.002419356256723404 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, + "compute_times": { + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "daa936a6-b70a-485a-bcd2-3225daac7ce4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:44.263Z", - "proving_scheme": "groth16", + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:36.609Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.369064S", - "compute_times": { - "total": 7.462511362507939, - "queued": 1.390478, - "clean_up": 0.001627311110496521, - "create_cpp": 0.04592450521886349, - "file_setup": 0.2660178393125534, - "compile_cpp": 4.419640392065048, - "create_r1cs": 0.01586141064763069, - "save_results": 0.005797659978270531, - "get_r1cs_info": 0.0007299073040485382, - "groth16_setup": 1.3323616590350866, - "export_verification_key": 1.3716226406395435, - "download_trusted_setup_file": 0.0024577025324106216 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, + "compute_times": { + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "d983ae2d-6e7f-4b0b-a504-1b0e78c4d685", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:09.525Z", - "proving_scheme": "groth16", + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:35.023Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.427022S", - "compute_times": { - "total": 7.503694657236338, - "queued": 8.80287, - "clean_up": 0.001652505248785019, - "create_cpp": 0.04614919610321522, - "file_setup": 0.24367324821650982, - "compile_cpp": 4.46963276527822, - "create_r1cs": 0.018824949860572815, - "save_results": 0.006128018721938133, - "get_r1cs_info": 0.0006784088909626007, - "groth16_setup": 1.3777296636253595, - "export_verification_key": 1.3364742659032345, - "download_trusted_setup_file": 0.0024303756654262543 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, + "compute_times": { + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "14b9b4bd-be26-4a4d-8ad6-2a64b22551b2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:08.674Z", - "proving_scheme": "groth16", + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:33.480Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.675444S", - "compute_times": { - "total": 7.7506245244294405, - "queued": 1.154247, - "clean_up": 0.0018263813108205795, - "create_cpp": 0.04755707457661629, - "file_setup": 0.23483316786587238, - "compile_cpp": 4.8177584912627935, - "create_r1cs": 0.016598980873823166, - "save_results": 0.005438234657049179, - "get_r1cs_info": 0.0006564464420080185, - "groth16_setup": 1.3556398712098598, - "export_verification_key": 1.2685111500322819, - "download_trusted_setup_file": 0.001376638188958168 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, + "compute_times": { + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8cb0a806-6e22-42a3-8938-9c5e4d43c494", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:08.288Z", - "proving_scheme": "groth16", + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:31.932Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.622437S", - "compute_times": { - "total": 7.712840095162392, - "queued": 1.352504, - "clean_up": 0.0015625767409801483, - "create_cpp": 0.0473609771579504, - "file_setup": 0.274502482265234, - "compile_cpp": 4.538209417834878, - "create_r1cs": 0.01853426732122898, - "save_results": 0.005721943452954292, - "get_r1cs_info": 0.0008788108825683594, - "groth16_setup": 1.478102458640933, - "export_verification_key": 1.3446549959480762, - "download_trusted_setup_file": 0.002755912020802498 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, + "compute_times": { + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "28b80e00-ee5e-4fca-b8a2-a4c587a5b1a8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:25:08.247Z", - "proving_scheme": "groth16", + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:30.405Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.776828S", - "compute_times": { - "total": 7.85468071885407, - "queued": 1.134198, - "clean_up": 0.0016253981739282608, - "create_cpp": 0.04779060371220112, - "file_setup": 0.25725592114031315, - "compile_cpp": 4.527051644399762, - "create_r1cs": 0.013751301914453506, - "save_results": 0.005713514983654022, - "get_r1cs_info": 0.0006611738353967667, - "groth16_setup": 1.5295016206800938, - "export_verification_key": 1.4682168513536453, - "download_trusted_setup_file": 0.0024928878992795944 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, + "compute_times": { + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1f3e9013-4907-423f-96a1-544e04d1e8fd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:23:07.754Z", - "proving_scheme": "groth16", + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:28.882Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.641417S", - "compute_times": { - "total": 7.71757803671062, - "queued": 1.220704, - "clean_up": 0.0018078796565532684, - "create_cpp": 0.045883724465966225, - "file_setup": 0.2438215035945177, - "compile_cpp": 4.7984380554407835, - "create_r1cs": 0.01085478626191616, - "save_results": 0.005862860009074211, - "get_r1cs_info": 0.0006757788360118866, - "groth16_setup": 1.3325737826526165, - "export_verification_key": 1.2749093975871801, - "download_trusted_setup_file": 0.0024107228964567184 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, + "compute_times": { + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8c2be303-4dbb-4e08-8c83-9544d3a62005", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:22:21.392Z", - "proving_scheme": "groth16", + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:27.303Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.608258S", - "compute_times": { - "total": 7.6810623444616795, - "queued": 26.433306, - "clean_up": 0.0016187690198421478, - "create_cpp": 0.05313163995742798, - "file_setup": 0.22949195466935635, - "compile_cpp": 4.770350804552436, - "create_r1cs": 0.018276238813996315, - "save_results": 0.005552975460886955, - "get_r1cs_info": 0.0006811916828155518, - "groth16_setup": 1.3329863864928484, - "export_verification_key": 1.2661008946597576, - "download_trusted_setup_file": 0.002443268895149231 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, + "compute_times": { + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "50efafde-7ee8-4af2-89ce-4d04fff606e7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:22:20.790Z", - "proving_scheme": "groth16", + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:25.623Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.733827S", - "compute_times": { - "total": 7.811790093779564, - "queued": 18.099938, - "clean_up": 0.0017698965966701508, - "create_cpp": 0.04756795987486839, - "file_setup": 0.26168153434991837, - "compile_cpp": 4.9301884565502405, - "create_r1cs": 0.018425103276968002, - "save_results": 0.005480572581291199, - "get_r1cs_info": 0.0007110685110092163, - "groth16_setup": 1.26290631480515, - "export_verification_key": 1.2801700197160244, - "download_trusted_setup_file": 0.0024473965167999268 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, + "compute_times": { + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b32c29df-aed4-460d-a55b-c69b3fd14c79", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:22:20.127Z", - "proving_scheme": "groth16", + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:24.063Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.516072S", - "compute_times": { - "total": 7.594199365004897, - "queued": 1.179891, - "clean_up": 0.0016085132956504822, - "create_cpp": 0.047564439475536346, - "file_setup": 0.24740388244390488, - "compile_cpp": 4.707322858273983, - "create_r1cs": 0.01673438772559166, - "save_results": 0.005771454423666, - "get_r1cs_info": 0.0006707236170768738, - "groth16_setup": 1.2979658357799053, - "export_verification_key": 1.2663146257400513, - "download_trusted_setup_file": 0.0023819822818040848 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, + "compute_times": { + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "27853e5c-3d53-406d-90ba-bee337369510", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:22:20.118Z", - "proving_scheme": "groth16", + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:22.482Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.691865S", - "compute_times": { - "total": 7.768615400418639, - "queued": 9.916591, - "clean_up": 0.0023098569363355637, - "create_cpp": 0.05343518406152725, - "file_setup": 0.23305759578943253, - "compile_cpp": 4.7266155276447535, - "create_r1cs": 0.016702940687537193, - "save_results": 0.006057048216462135, - "get_r1cs_info": 0.0006873272359371185, - "groth16_setup": 1.3462165966629982, - "export_verification_key": 1.3805092219263315, - "download_trusted_setup_file": 0.0025850217789411545 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, + "compute_times": { + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5beab6fd-e879-420a-afa8-3de72e1a55f7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:19:46.504Z", - "proving_scheme": "groth16", + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:20.927Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.515950S", - "compute_times": { - "total": 7.589921785518527, - "queued": 10.157228, - "clean_up": 0.0007169600576162338, - "create_cpp": 0.046469248831272125, - "file_setup": 0.2272897120565176, - "compile_cpp": 4.710785340517759, - "create_r1cs": 0.011910352855920792, - "save_results": 0.004649905487895012, - "get_r1cs_info": 0.0008330028504133224, - "groth16_setup": 1.2739597726613283, - "export_verification_key": 1.3097787145525217, - "download_trusted_setup_file": 0.003099275752902031 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, + "compute_times": { + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "3614ff84-c93d-4e30-b8b9-ec24358b42c0", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:19:45.239Z", - "proving_scheme": "groth16", + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:19.297Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.594156S", - "compute_times": { - "total": 7.672163272276521, - "queued": 2.675083, - "clean_up": 0.001137731596827507, - "create_cpp": 0.05406654439866543, - "file_setup": 0.24084424786269665, - "compile_cpp": 4.693928143009543, - "create_r1cs": 0.01765979267656803, - "save_results": 0.0036431998014450073, - "get_r1cs_info": 0.0006935875862836838, - "groth16_setup": 1.344341717660427, - "export_verification_key": 1.3129563517868519, - "download_trusted_setup_file": 0.0024511590600013733 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, + "compute_times": { + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "152636dc-fa99-421f-9111-2da84bf32acc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:18:51.613Z", - "proving_scheme": "groth16", + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:17.717Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.504325S", - "compute_times": { - "total": 7.582463687285781, - "queued": 8.941439, - "clean_up": 0.0015817917883396149, - "create_cpp": 0.04805071838200092, - "file_setup": 0.24654102325439453, - "compile_cpp": 4.683576079085469, - "create_r1cs": 0.018908562138676643, - "save_results": 0.005744511261582375, - "get_r1cs_info": 0.0006975065916776657, - "groth16_setup": 1.3209072556346655, - "export_verification_key": 1.253587955608964, - "download_trusted_setup_file": 0.0025104787200689316 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, + "compute_times": { + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a4dcc99e-8071-4ea2-a849-d81bca825ede", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:18:50.708Z", - "proving_scheme": "groth16", + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:16.204Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.463569S", - "compute_times": { - "total": 7.540723716840148, - "queued": 1.171693, - "clean_up": 0.0016952920705080032, - "create_cpp": 0.05335593223571777, - "file_setup": 0.23299168795347214, - "compile_cpp": 4.694493172690272, - "create_r1cs": 0.015898721292614937, - "save_results": 0.004501448944211006, - "get_r1cs_info": 0.0006934106349945068, - "groth16_setup": 1.2703441120684147, - "export_verification_key": 1.263868784531951, - "download_trusted_setup_file": 0.002431286498904228 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, + "compute_times": { + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "7257082b-8a36-4532-adab-5c561cde2a29", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:12:32.316Z", - "proving_scheme": "groth16", + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:14.654Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.729830S", - "compute_times": { - "total": 7.805140299722552, - "queued": 1.094657, - "clean_up": 0.0016505271196365356, - "create_cpp": 0.05546964891254902, - "file_setup": 0.2259269542992115, - "compile_cpp": 4.886959254741669, - "create_r1cs": 0.016729675233364105, - "save_results": 0.005791829898953438, - "get_r1cs_info": 0.0006887372583150864, - "groth16_setup": 1.357726663351059, - "export_verification_key": 1.2512025628238916, - "download_trusted_setup_file": 0.0025302208960056305 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, + "compute_times": { + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b6cda26c-e9ae-481f-a455-c1905782cc5a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:12:30.890Z", - "proving_scheme": "groth16", + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:13.059Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.515835S", - "compute_times": { - "total": 7.597714696079493, - "queued": 1.112794, - "clean_up": 0.0016388893127441406, - "create_cpp": 0.055322440341115, - "file_setup": 0.2542826198041439, - "compile_cpp": 4.492570606991649, - "create_r1cs": 0.018006742000579834, - "save_results": 0.005599640309810638, - "get_r1cs_info": 0.0007673837244510651, - "groth16_setup": 1.3414161559194326, - "export_verification_key": 1.4249787032604218, - "download_trusted_setup_file": 0.0025149118155241013 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, + "compute_times": { + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a39533e5-976d-4b15-86fa-fa2572212c6a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:11:43.620Z", - "proving_scheme": "groth16", + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:11.558Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.525638S", - "compute_times": { - "total": 7.6020667646080256, - "queued": 1.096438, - "clean_up": 0.0021714698523283005, - "create_cpp": 0.04854712076485157, - "file_setup": 0.24291070736944675, - "compile_cpp": 4.659763751551509, - "create_r1cs": 0.010860981419682503, - "save_results": 0.006801890209317207, - "get_r1cs_info": 0.0006881803274154663, - "groth16_setup": 1.3576972987502813, - "export_verification_key": 1.2697169426828623, - "download_trusted_setup_file": 0.0024792905896902084 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, + "compute_times": { + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "67af6d38-e3dd-41f9-a73c-2a8cffeb60f3", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:11:17.808Z", - "proving_scheme": "groth16", + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:10.032Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.696916S", - "compute_times": { - "total": 7.800829553976655, - "queued": 8.900049, - "clean_up": 0.0017651356756687164, - "create_cpp": 0.048156820237636566, - "file_setup": 0.26956662349402905, - "compile_cpp": 4.73041276447475, - "create_r1cs": 0.01830790378153324, - "save_results": 0.0053640734404325485, - "get_r1cs_info": 0.0007263273000717163, - "groth16_setup": 1.3079448156058788, - "export_verification_key": 1.4156472980976105, - "download_trusted_setup_file": 0.0024303123354911804 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, + "compute_times": { + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "29482186-ed38-40a1-8f41-396e46cbe2af", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:11:16.527Z", - "proving_scheme": "groth16", + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:08.462Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.843573S", - "compute_times": { - "total": 7.918207410722971, - "queued": 1.1316, - "clean_up": 0.001619592308998108, - "create_cpp": 0.05113654024899006, - "file_setup": 0.22972466051578522, - "compile_cpp": 4.823534423485398, - "create_r1cs": 0.012231025844812393, - "save_results": 0.005758641287684441, - "get_r1cs_info": 0.0007135551422834396, - "groth16_setup": 1.2769745737314224, - "export_verification_key": 1.5135366152971983, - "download_trusted_setup_file": 0.002458721399307251 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, + "compute_times": { + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "12e11f6e-15fe-48a5-a4ff-5691bda05b5d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:05:59.342Z", - "proving_scheme": "groth16", + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:06.935Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.733115S", - "compute_times": { - "total": 7.8099565505981445, - "queued": 1.165322, - "clean_up": 0.0017883870750665665, - "create_cpp": 0.04638352990150452, - "file_setup": 0.23020289093255997, - "compile_cpp": 4.791501699015498, - "create_r1cs": 0.018074993044137955, - "save_results": 0.005634209141135216, - "get_r1cs_info": 0.0005376394838094711, - "groth16_setup": 1.3833652567118406, - "export_verification_key": 1.3307239394634962, - "download_trusted_setup_file": 0.001316094771027565 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, + "compute_times": { + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "57750805-da3a-4aed-8713-fca8c8217d85", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:05:58.051Z", - "proving_scheme": "groth16", + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:05.334Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.523016S", - "compute_times": { - "total": 7.615536188706756, - "queued": 1.111699, - "clean_up": 0.0017289314419031143, - "create_cpp": 0.048704590648412704, - "file_setup": 0.30340966396033764, - "compile_cpp": 4.493021473288536, - "create_r1cs": 0.01810857281088829, - "save_results": 0.005765935406088829, - "get_r1cs_info": 0.0006618835031986237, - "groth16_setup": 1.3754791505634785, - "export_verification_key": 1.3655782397836447, - "download_trusted_setup_file": 0.002464406192302704 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, + "compute_times": { + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ae9ee957-3550-4e73-b85c-67d2d105059e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:05:37.596Z", - "proving_scheme": "groth16", + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:03.737Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.637196S", - "compute_times": { - "total": 7.714641183614731, - "queued": 1.118562, - "clean_up": 0.0010698717087507248, - "create_cpp": 0.04957794025540352, - "file_setup": 0.27610501274466515, - "compile_cpp": 4.523411748930812, - "create_r1cs": 0.01730293408036232, - "save_results": 0.005932852625846863, - "get_r1cs_info": 0.0006670821458101273, - "groth16_setup": 1.4076793268322945, - "export_verification_key": 1.4298051688820124, - "download_trusted_setup_file": 0.0024724751710891724 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, + "compute_times": { + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a87238f3-8b90-4023-9dea-0e882b7981ba", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:05:36.364Z", - "proving_scheme": "groth16", + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:02.220Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.776732S", - "compute_times": { - "total": 7.861673956736922, - "queued": 1.17302, - "clean_up": 0.001835215836763382, - "create_cpp": 0.05279397964477539, - "file_setup": 0.24823277816176414, - "compile_cpp": 4.638548230752349, - "create_r1cs": 0.01119343563914299, - "save_results": 0.00524553656578064, - "get_r1cs_info": 0.000684596598148346, - "groth16_setup": 1.4201921876519918, - "export_verification_key": 1.4799509402364492, - "download_trusted_setup_file": 0.002554507926106453 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, + "compute_times": { + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "75c7a835-d810-4e78-a21e-f44ea2cb04e3", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:03:42.166Z", - "proving_scheme": "groth16", + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:00.620Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.967605S", - "compute_times": { - "total": 8.046053376048803, - "queued": 26.21097, - "clean_up": 0.0018648356199264526, - "create_cpp": 0.05596049129962921, - "file_setup": 0.24261613935232162, - "compile_cpp": 4.93765183351934, - "create_r1cs": 0.017572950571775436, - "save_results": 0.0059426408261060715, - "get_r1cs_info": 0.0006746537983417511, - "groth16_setup": 1.2796957772225142, - "export_verification_key": 1.5012296475470066, - "download_trusted_setup_file": 0.002398606389760971 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, + "compute_times": { + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "6fa42f17-7d1f-4dee-9909-2bf61f577c5f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:03:41.592Z", - "proving_scheme": "groth16", + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:59.069Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.580787S", - "compute_times": { - "total": 7.655207581818104, - "queued": 17.985551, - "clean_up": 0.002056419849395752, - "create_cpp": 0.052002936601638794, - "file_setup": 0.2451938558369875, - "compile_cpp": 4.685491403564811, - "create_r1cs": 0.010299311950802803, - "save_results": 0.006189430132508278, - "get_r1cs_info": 0.0008878409862518311, - "groth16_setup": 1.272452101111412, - "export_verification_key": 1.3772340640425682, - "download_trusted_setup_file": 0.0030425861477851868 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, + "compute_times": { + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "9f6ab24a-2672-4c5a-931c-3582ddee3be3", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:03:41.189Z", - "proving_scheme": "groth16", + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:57.502Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.415751S", - "compute_times": { - "total": 7.493710907176137, - "queued": 9.715005, - "clean_up": 0.0016273707151412964, - "create_cpp": 0.05303688161075115, - "file_setup": 0.2430403921753168, - "compile_cpp": 4.668433295562863, - "create_r1cs": 0.012174364179372787, - "save_results": 0.005725568160414696, - "get_r1cs_info": 0.0008735992014408112, - "groth16_setup": 1.244223466143012, - "export_verification_key": 1.2610872369259596, - "download_trusted_setup_file": 0.0030381176620721817 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, + "compute_times": { + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cea5b4b2-5dd4-4d24-a879-60b84d523800", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T21:03:40.905Z", - "proving_scheme": "groth16", + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:55.884Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.587273S", - "compute_times": { - "total": 7.663808356970549, - "queued": 1.158335, - "clean_up": 0.0018277596682310104, - "create_cpp": 0.05417764373123646, - "file_setup": 0.24907702021300793, - "compile_cpp": 4.704896626994014, - "create_r1cs": 0.010135684162378311, - "save_results": 0.0060002803802490234, - "get_r1cs_info": 0.0007133446633815765, - "groth16_setup": 1.3235171046108007, - "export_verification_key": 1.3105034790933132, - "download_trusted_setup_file": 0.0025282446295022964 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, + "compute_times": { + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "be85789b-7d19-4fd2-8ab6-79f116e99018", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:58:42.298Z", - "proving_scheme": "groth16", + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:54.264Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.612119S", - "compute_times": { - "total": 7.685093659907579, - "queued": 1.14216, - "clean_up": 0.002341996878385544, - "create_cpp": 0.05459519848227501, - "file_setup": 0.23490560427308083, - "compile_cpp": 4.658818148076534, - "create_r1cs": 0.016625098884105682, - "save_results": 0.00551554374396801, - "get_r1cs_info": 0.0008137207478284836, - "groth16_setup": 1.3161104060709476, - "export_verification_key": 1.3924682848155499, - "download_trusted_setup_file": 0.0024645328521728516 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, + "compute_times": { + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "1a8a8918-7317-4e2e-a1ef-b66915916586", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:53:09.229Z", - "proving_scheme": "groth16", + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:52.472Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.762289S", - "compute_times": { - "total": 7.838186884298921, - "queued": 1.165658, - "clean_up": 0.0008691418915987015, - "create_cpp": 0.05640839971601963, - "file_setup": 0.25557226315140724, - "compile_cpp": 4.874635396525264, - "create_r1cs": 0.01985102891921997, - "save_results": 0.004785357043147087, - "get_r1cs_info": 0.000703742727637291, - "groth16_setup": 1.3269466310739517, - "export_verification_key": 1.2955008279532194, - "download_trusted_setup_file": 0.002431994304060936 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, + "compute_times": { + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "11e941af-d1c5-4b5c-90d4-7779d3afbb3e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:52:11.769Z", - "proving_scheme": "groth16", + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:50.941Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.415274S", - "compute_times": { - "total": 7.493496775627136, - "queued": 8.869445, - "clean_up": 0.0016371160745620728, - "create_cpp": 0.04689290374517441, - "file_setup": 0.2514117080718279, - "compile_cpp": 4.450153106823564, - "create_r1cs": 0.017276693135499954, - "save_results": 0.0053817834705114365, - "get_r1cs_info": 0.0006324015557765961, - "groth16_setup": 1.4012358412146568, - "export_verification_key": 1.3159835990518332, - "download_trusted_setup_file": 0.002422098070383072 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, + "compute_times": { + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "40567a0b-db53-42b6-9faf-645b7d2b01d4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:52:10.857Z", - "proving_scheme": "groth16", + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:49.312Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.844716S", - "compute_times": { - "total": 7.935871887952089, - "queued": 1.174927, - "clean_up": 0.0017419569194316864, - "create_cpp": 0.04830462113022804, - "file_setup": 0.2918488848954439, - "compile_cpp": 4.551170919090509, - "create_r1cs": 0.011252205818891525, - "save_results": 0.006273416802287102, - "get_r1cs_info": 0.000791722908616066, - "groth16_setup": 1.4771566465497017, - "export_verification_key": 1.544492220506072, - "download_trusted_setup_file": 0.002414800226688385 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, + "compute_times": { + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "e8a3b8c4-a204-4377-aa16-6693ec6a47fe", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:52:10.473Z", - "proving_scheme": "groth16", + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:47.661Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.761080S", - "compute_times": { - "total": 7.84102806635201, - "queued": 1.191136, - "clean_up": 0.0016466900706291199, - "create_cpp": 0.050837548449635506, - "file_setup": 0.305857976898551, - "compile_cpp": 4.831999080255628, - "create_r1cs": 0.016980327665805817, - "save_results": 0.004616068676114082, - "get_r1cs_info": 0.0007538795471191406, - "groth16_setup": 1.377663504332304, - "export_verification_key": 1.2477229591459036, - "download_trusted_setup_file": 0.0024341512471437454 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, + "compute_times": { + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "b45a2f28-629c-4b26-9d0f-74e89e9aa4a1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:52:10.459Z", - "proving_scheme": "groth16", + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:46.099Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.772072S", - "compute_times": { - "total": 7.85684909299016, - "queued": 1.168927, - "clean_up": 0.001656675711274147, - "create_cpp": 0.046758586540818214, - "file_setup": 0.356998885050416, - "compile_cpp": 4.629376698285341, - "create_r1cs": 0.016368335112929344, - "save_results": 0.005804345011711121, - "get_r1cs_info": 0.0006794314831495285, - "groth16_setup": 1.4081361554563046, - "export_verification_key": 1.3879967276006937, - "download_trusted_setup_file": 0.002491012215614319 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, + "compute_times": { + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "48abbf24-259f-449a-be8a-b38889c54d91", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:47:36.791Z", - "proving_scheme": "groth16", + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:44.552Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.699616S", - "compute_times": { - "total": 7.776923732832074, - "queued": 1.114412, - "clean_up": 0.0017519760876893997, - "create_cpp": 0.04844082519412041, - "file_setup": 0.2680229563266039, - "compile_cpp": 4.7926163002848625, - "create_r1cs": 0.01559528149664402, - "save_results": 0.005934497341513634, - "get_r1cs_info": 0.0007298476994037628, - "groth16_setup": 1.3021647650748491, - "export_verification_key": 1.3384632784873247, - "download_trusted_setup_file": 0.002724595367908478 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, + "compute_times": { + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "c8cffa90-0d2d-49d1-bbdb-dfa109aa13a4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:46:45.727Z", - "proving_scheme": "groth16", + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:42.989Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.613741S", - "compute_times": { - "total": 7.690422313287854, - "queued": 33.822267, - "clean_up": 0.0018018875271081924, - "create_cpp": 0.05492768436670303, - "file_setup": 0.2554306983947754, - "compile_cpp": 4.600179400295019, - "create_r1cs": 0.008259830996394157, - "save_results": 0.00659073144197464, - "get_r1cs_info": 0.0003707129508256912, - "groth16_setup": 1.3555676974356174, - "export_verification_key": 1.4054905492812395, - "download_trusted_setup_file": 0.0011803917586803436 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, + "compute_times": { + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "552a7b11-54dd-4bcd-a182-b761b094ec0b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:46:44.803Z", - "proving_scheme": "groth16", + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:41.451Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.515952S", - "compute_times": { - "total": 7.5932529624551535, - "queued": 32.746434, - "clean_up": 0.0010620690882205963, - "create_cpp": 0.04890178702771664, - "file_setup": 0.25152294524013996, - "compile_cpp": 4.557625237852335, - "create_r1cs": 0.016739951446652412, - "save_results": 0.004754070192575455, - "get_r1cs_info": 0.0006603635847568512, - "groth16_setup": 1.3873532582074404, - "export_verification_key": 1.3215058222413063, - "download_trusted_setup_file": 0.002488488331437111 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, + "compute_times": { + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "2ca76e72-5afc-45a0-9b97-9238d19743d0", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:46:44.487Z", - "proving_scheme": "groth16", + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:39.456Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.590935S", - "compute_times": { - "total": 7.668134920299053, - "queued": 27.894738, - "clean_up": 0.0018086303025484085, - "create_cpp": 0.047053029760718346, - "file_setup": 0.23089499771595, - "compile_cpp": 4.629393395036459, - "create_r1cs": 0.011073233559727669, - "save_results": 0.005805622786283493, - "get_r1cs_info": 0.0006980784237384796, - "groth16_setup": 1.3557848315685987, - "export_verification_key": 1.3827202580869198, - "download_trusted_setup_file": 0.002456182613968849 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, + "compute_times": { + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "a0bdedb8-7a09-4052-abcb-9ed696c686b5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T20:46:44.476Z", - "proving_scheme": "groth16", + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:37.847Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.705396S", - "compute_times": { - "total": 7.776749765500426, - "queued": 19.04132, - "clean_up": 0.0012914035469293594, - "create_cpp": 0.05671204254031181, - "file_setup": 0.2300866860896349, - "compile_cpp": 4.876820022240281, - "create_r1cs": 0.013439206406474113, - "save_results": 0.005176816135644913, - "get_r1cs_info": 0.0005762949585914612, - "groth16_setup": 1.2933933082967997, - "export_verification_key": 1.2968760952353477, - "download_trusted_setup_file": 0.0018088724464178085 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, + "compute_times": { + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "190315c4-b855-4630-88bd-ee26cd7d1d01", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:52:33.385Z", - "proving_scheme": "groth16", + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:36.258Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.572978S", - "compute_times": { - "total": 7.647768121212721, - "queued": 1.189038, - "clean_up": 0.0017464309930801392, - "create_cpp": 0.05523469112813473, - "file_setup": 0.2625980079174042, - "compile_cpp": 4.723205912858248, - "create_r1cs": 0.01834150403738022, - "save_results": 0.005839653313159943, - "get_r1cs_info": 0.0006966739892959595, - "groth16_setup": 1.2872309237718582, - "export_verification_key": 1.2899665106087923, - "download_trusted_setup_file": 0.002456560730934143 - }, - "file_sizes": { - "total": 225417, - "circuit": 213240, - "total_gb": 0.000225417, - "total_mb": 0.225417, - "circuit.dat": 6176, - "code.tar.gz": 496, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, + "compute_times": { + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "efd39298-db6a-42ec-8c5c-70624d6b4d20", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:49:50.186Z", - "proving_scheme": "groth16", + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:34.681Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.544503S", - "compute_times": { - "total": 7.621049035340548, - "queued": 1.213655, - "clean_up": 0.0007674247026443481, - "create_cpp": 0.04509667679667473, - "file_setup": 0.25903115049004555, - "compile_cpp": 4.652491440996528, - "create_r1cs": 0.011222857981920242, - "save_results": 0.004881551489233971, - "get_r1cs_info": 0.0006925370544195175, - "groth16_setup": 1.3327859863638878, - "export_verification_key": 1.3111931774765253, - "download_trusted_setup_file": 0.0024320408701896667 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, + "compute_times": { + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "ba2f5cd1-96b1-4d9c-b722-5ac460fea6e6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:49:05.977Z", - "proving_scheme": "groth16", + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:33.146Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.662052S", - "compute_times": { - "total": 7.7336688078939915, - "queued": 1.123447, - "clean_up": 0.0017930883914232254, - "create_cpp": 0.0463506244122982, - "file_setup": 0.2377893142402172, - "compile_cpp": 4.749906187877059, - "create_r1cs": 0.010152315720915794, - "save_results": 0.0053513552993535995, - "get_r1cs_info": 0.0008222367614507675, - "groth16_setup": 1.3547440730035305, - "export_verification_key": 1.3238158524036407, - "download_trusted_setup_file": 0.002467406913638115 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, + "compute_times": { + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "8c057b7d-c64d-4059-ab29-9298ad6a2a53", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:48:26.875Z", - "proving_scheme": "groth16", + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:31.611Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.377793S", - "compute_times": { - "total": 7.45503032207489, - "queued": 1.110193, - "clean_up": 0.0017393846064805984, - "create_cpp": 0.05383708514273167, - "file_setup": 0.24573651514947414, - "compile_cpp": 4.488782860338688, - "create_r1cs": 0.017437485978007317, - "save_results": 0.005972316488623619, - "get_r1cs_info": 0.0006892457604408264, - "groth16_setup": 1.324556514620781, - "export_verification_key": 1.3133248090744019, - "download_trusted_setup_file": 0.002494256943464279 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, + "compute_times": { + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "4c600cdd-f1f9-495d-b445-2221f0a89f46", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:47:38.396Z", - "proving_scheme": "groth16", + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:30.068Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.635626S", - "compute_times": { - "total": 7.712093740701675, - "queued": 1.199349, - "clean_up": 0.0017684157937765121, - "create_cpp": 0.05451502092182636, - "file_setup": 0.258465563878417, - "compile_cpp": 4.719343299046159, - "create_r1cs": 0.010251201689243317, - "save_results": 0.004460163414478302, - "get_r1cs_info": 0.0008540749549865723, - "groth16_setup": 1.2751929629594088, - "export_verification_key": 1.3843229338526726, - "download_trusted_setup_file": 0.0024193767458200455 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, + "compute_times": { + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "07f165fe-658f-4f60-9724-e13641c3dc6d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:46:38.223Z", - "proving_scheme": "groth16", + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:28.546Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.167119S", - "compute_times": { - "total": 8.251142678782344, - "queued": 1.115337, - "clean_up": 0.0016193389892578125, - "create_cpp": 0.054599540308117867, - "file_setup": 0.25351906940340996, - "compile_cpp": 4.904584679752588, - "create_r1cs": 0.01984476111829281, - "save_results": 0.005771957337856293, - "get_r1cs_info": 0.0008576847612857819, - "groth16_setup": 1.522850263863802, - "export_verification_key": 1.4845417588949203, - "download_trusted_setup_file": 0.002574380487203598 - }, - "file_sizes": { - "total": 225420, - "circuit": 213240, - "total_gb": 0.00022542, - "total_mb": 0.22542, - "circuit.dat": 6176, - "code.tar.gz": 499, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, + "compute_times": { + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "5184ccc9-d9df-4f4c-85b5-dcc372be2b4b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:46:37.738Z", - "proving_scheme": "groth16", + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:27.002Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.800540S", - "compute_times": { - "total": 7.890723425894976, - "queued": 1.168498, - "clean_up": 0.001091672107577324, - "create_cpp": 0.04187995567917824, - "file_setup": 0.27721855975687504, - "compile_cpp": 4.727179424837232, - "create_r1cs": 0.016916383057832718, - "save_results": 0.004303250461816788, - "get_r1cs_info": 0.0007656924426555634, - "groth16_setup": 1.459752507507801, - "export_verification_key": 1.3583893701434135, - "download_trusted_setup_file": 0.002651471644639969 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, + "compute_times": { + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "cd1787b3-9b68-4c98-b749-10675b93a02d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:46:37.375Z", - "proving_scheme": "groth16", + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:25.415Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.090137S", - "compute_times": { - "total": 8.167806182056665, - "queued": 1.338794, - "clean_up": 0.0015265382826328278, - "create_cpp": 0.06242942810058594, - "file_setup": 0.2405807003378868, - "compile_cpp": 5.083120491355658, - "create_r1cs": 0.01758597418665886, - "save_results": 0.004459673538804054, - "get_r1cs_info": 0.0007193218916654587, - "groth16_setup": 1.37510397285223, - "export_verification_key": 1.3791209738701582, - "download_trusted_setup_file": 0.0024771448224782944 - }, - "file_sizes": { - "total": 225424, - "circuit": 213240, - "total_gb": 0.000225424, - "total_mb": 0.225424, - "circuit.dat": 6176, - "code.tar.gz": 503, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, + "compute_times": { + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "92fce1d2-a24f-436c-8dcb-70128fef75ad", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:46:37.319Z", - "proving_scheme": "groth16", + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:23.831Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.515638S", - "compute_times": { - "total": 7.592755535617471, - "queued": 1.122921, - "clean_up": 0.0016377829015254974, - "create_cpp": 0.03891022130846977, - "file_setup": 0.24091425351798534, - "compile_cpp": 4.7493694350123405, - "create_r1cs": 0.017042923718690872, - "save_results": 0.005464419722557068, - "get_r1cs_info": 0.0006883256137371063, - "groth16_setup": 1.28771460801363, - "export_verification_key": 1.247961588203907, - "download_trusted_setup_file": 0.0025581959635019302 - }, - "file_sizes": { - "total": 225419, - "circuit": 213240, - "total_gb": 0.000225419, - "total_mb": 0.225419, - "circuit.dat": 6176, - "code.tar.gz": 498, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, + "compute_times": { + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "49d24c38-3549-4b6f-a0d0-121d79a9e042", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:43:21.432Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.180365S", + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:22.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, "compute_times": { - "total": 0.2551115155220032, - "queued": 22.187026, - "create_cpp": 0.011886032298207283, - "file_setup": 0.24275113083422184 + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 }, - "file_sizes": { - "total": 422, - "total_gb": 4.22e-7, - "total_mb": 0.000422, - "code.tar.gz": 422 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519 --c /tmp/sindri/circuits/49d24c38-3549-4b6f-a0d0-121d79a9e042_1705175023619519/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "be8d26a4-0c1f-4ed8-a9c1-92d821a1023f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:43:20.830Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.206542S", + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:20.735Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, "compute_times": { - "total": 0.2807184997946024, - "queued": 21.29796, - "create_cpp": 0.01408509910106659, - "file_setup": 0.26632064767181873 - }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513 --c /tmp/sindri/circuits/be8d26a4-0c1f-4ed8-a9c1-92d821a1023f_1705175022128513/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "829c7fb3-407a-4acb-9048-7052edeaef17", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:43:20.550Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.201628S", + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:19.166Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, "compute_times": { - "total": 0.2771782800555229, - "queued": 20.013791, - "create_cpp": 0.01300826482474804, - "file_setup": 0.26369262114167213 + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 }, - "file_sizes": { - "total": 433, - "total_gb": 4.33e-7, - "total_mb": 0.000433, - "code.tar.gz": 433 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282 --c /tmp/sindri/circuits/829c7fb3-407a-4acb-9048-7052edeaef17_1705175020564282/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "21254406-f848-4a42-96b1-50ae1a8a70f6", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:43:20.457Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.210927S", + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:17.494Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, "compute_times": { - "total": 0.28701494075357914, - "queued": 18.586688, - "create_cpp": 0.01276908814907074, - "file_setup": 0.273587292060256 - }, - "file_sizes": { - "total": 423, - "total_gb": 4.23e-7, - "total_mb": 0.000423, - "code.tar.gz": 423 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217 --c /tmp/sindri/circuits/21254406-f848-4a42-96b1-50ae1a8a70f6_1705175019044217/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "86b85f20-069f-4b05-bc19-7dcc45d62d4d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:03:40.161Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.165028S", + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:15.887Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, "compute_times": { - "total": 0.23983060009777546, - "queued": 19.426277, - "create_cpp": 0.012881102040410042, - "file_setup": 0.22659419663250446 + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 }, - "file_sizes": { - "total": 425, - "total_gb": 4.25e-7, - "total_mb": 0.000425, - "code.tar.gz": 425 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962 --c /tmp/sindri/circuits/86b85f20-069f-4b05-bc19-7dcc45d62d4d_1705172639587962/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "911d63d1-2d4a-4f13-8ea6-bae46ca597f1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:03:39.891Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.170545S", + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:14.188Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, "compute_times": { - "total": 0.24807762540876865, - "queued": 18.378215, - "create_cpp": 0.012938465923070908, - "file_setup": 0.23475164733827114 - }, - "file_sizes": { - "total": 433, - "total_gb": 4.33e-7, - "total_mb": 0.000433, - "code.tar.gz": 433 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260 --c /tmp/sindri/circuits/911d63d1-2d4a-4f13-8ea6-bae46ca597f1_1705172638269260/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "f56ce37c-23ce-4125-ad52-57ccc6feca54", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T19:03:39.814Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.186595S", + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:12.610Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, "compute_times": { - "total": 0.26397472620010376, - "queued": 17.084112, - "create_cpp": 0.010645480826497078, - "file_setup": 0.2526652980595827 + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:11.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, + "compute_times": { + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:09.525Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, + "compute_times": { + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067 --c /tmp/sindri/circuits/f56ce37c-23ce-4125-ad52-57ccc6feca54_1705172636898067/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "593763cb-5ee6-4f17-86f0-92e33db49ebc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:50:50.705Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.198660S", + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:07.842Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, "compute_times": { - "total": 0.2762124240398407, - "queued": 2.350508, - "create_cpp": 0.013621769845485687, - "file_setup": 0.26214288361370564 + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 }, - "file_sizes": { - "total": 425, - "total_gb": 4.25e-7, - "total_mb": 0.000425, - "code.tar.gz": 425 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:06.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, + "compute_times": { + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:04.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, + "compute_times": { + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248 --c /tmp/sindri/circuits/593763cb-5ee6-4f17-86f0-92e33db49ebc_1705171853056248/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "616d59a2-ede9-4aa2-b309-dceaad83f85c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:50:50.409Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.202851S", + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:03.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, "compute_times": { - "total": 0.27938831970095634, - "queued": 1.181081, - "create_cpp": 0.020855069160461426, - "file_setup": 0.25791895017027855 + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:01.643Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, + "compute_times": { + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:59.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, + "compute_times": { + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200 --c /tmp/sindri/circuits/616d59a2-ede9-4aa2-b309-dceaad83f85c_1705171851590200/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "3edc6e19-5c08-43d0-b4cd-1effce92610f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:50:50.347Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.203065S", + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:58.419Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, "compute_times": { - "total": 0.2812246270477772, - "queued": 1.181141, - "create_cpp": 0.013465851545333862, - "file_setup": 0.26729494892060757 + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 }, - "file_sizes": { - "total": 433, - "total_gb": 4.33e-7, - "total_mb": 0.000433, - "code.tar.gz": 433 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:56.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, + "compute_times": { + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:55.300Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, + "compute_times": { + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535 --c /tmp/sindri/circuits/3edc6e19-5c08-43d0-b4cd-1effce92610f_1705171851528535/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "04ee9cfb-e70c-4f63-980f-1a3e93548c00", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:48:36.434Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.201733S", + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:53.639Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, "compute_times": { - "total": 0.27434095926582813, - "queued": 18.015267, - "create_cpp": 0.012987535446882248, - "file_setup": 0.26098530925810337 + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 }, - "file_sizes": { - "total": 424, - "total_gb": 4.24e-7, - "total_mb": 0.000424, - "code.tar.gz": 424 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.345Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, + "compute_times": { + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.240Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, + "compute_times": { + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938 --c /tmp/sindri/circuits/04ee9cfb-e70c-4f63-980f-1a3e93548c00_1705171734449938/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "7bec40b6-96f9-4297-8387-28b69e6eb9f2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-13T18:48:36.388Z", - "proving_scheme": "groth16", - "status": "Failed", - "compute_time": "P0DT00H00M00.202297S", + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, "compute_times": { - "total": 0.277168694883585, - "queued": 16.341514, - "create_cpp": 0.013526827096939087, - "file_setup": 0.2629995346069336 + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 }, - "file_sizes": { - "total": 454, - "total_gb": 4.54e-7, - "total_mb": 0.000454, - "code.tar.gz": 454 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, + "compute_times": { + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.112Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, + "compute_times": { + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882 --c /tmp/sindri/circuits/7bec40b6-96f9-4297-8387-28b69e6eb9f2_1705171732729882/code/circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, { - "circuit_id": "bd2a2cab-9b46-4d8f-abe7-c70543cb3c05", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-13T18:10:06.690Z", - "proving_scheme": "groth16", + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:39.613Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M08.109980S", - "compute_times": { - "total": 8.184498570859432, - "queued": 15.479573, - "clean_up": 0.011767888441681862, - "create_cpp": 0.07400684803724289, - "file_setup": 0.291596170514822, - "compile_cpp": 5.010360641404986, - "create_r1cs": 0.03274575620889664, - "save_results": 0.005458444356918335, - "get_r1cs_info": 0.0007813666015863419, - "groth16_setup": 1.3319661114364862, - "export_verification_key": 1.4227301441133022, - "download_trusted_setup_file": 0.0024998728185892105 - }, - "file_sizes": { - "total": 1719978, - "circuit": 221992, - "total_gb": 0.001719978, - "total_mb": 1.719978, - "circuit.dat": 6264, - "code.tar.gz": 1485241, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,18,20,22,24,26,28,30,32-48,66,68,70,72,74,76,78,80-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "1-17,19,21,23,25,27,29,31,49-65,67,69,71,73,75,77,79", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, + "compute_times": { + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "error": null }, { - "circuit_id": "36d8c583-a7a7-409f-802f-9e2176488114", - "circuit_name": "circom", - "circuit_type": "circom", - "date_created": "2024-01-12T20:17:55.601Z", - "proving_scheme": "groth16", + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:38.083Z", + "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M07.845599S", - "compute_times": { - "total": 7.926630346104503, - "queued": 21.751844, - "clean_up": 0.009552665054798126, - "create_cpp": 0.06667437590658665, - "file_setup": 0.3097714204341173, - "compile_cpp": 4.566421199589968, - "create_r1cs": 0.03019201196730137, - "save_results": 0.0054127369076013565, - "get_r1cs_info": 0.0007427893579006195, - "groth16_setup": 1.4206766039133072, - "export_verification_key": 1.5140666011720896, - "download_trusted_setup_file": 0.00251016765832901 - }, - "file_sizes": { - "total": 1719951, - "circuit": 221992, - "total_gb": 0.001719951, - "total_mb": 1.719951, - "circuit.dat": 6264, - "code.tar.gz": 1485214, - "circuit.zkey": 3376, - "verification_key": 3105 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, + "compute_times": { + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 1, - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1, - "num_wires": 5, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" - } - ], - "rawHeaders": [ - "Content-Length", - "1188827", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:19 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 529, - "total": 529, - "total_mb": 0.000529, - "total_gb": 5.29e-7 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:19 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 497, - "total": 497, - "total_mb": 0.000497, - "total_gb": 4.97e-7 + { + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:36.595Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, + "compute_times": { + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:35.046Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, + "compute_times": { + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 529, - "total": 529, - "total_mb": 0.000529, - "total_gb": 5.29e-7 + { + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:33.547Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, + "compute_times": { + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:40.710Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, + "compute_times": { + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/7206a741-eb14-4b4d-9df8-34d4573a671c/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "7206a741-eb14-4b4d-9df8-34d4573a671c", - "circuit_name": "circom", - "circuit_id": "14b414dd-f07b-4ba7-8a14-532653833af8", - "circuit_type": "circom", - "date_created": "2024-01-16T20:50:03.892Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M07.157652S", - "compute_times": { - "prove": 6.974535636603832, - "total": 7.280014621093869, - "queued": 0.699272, - "clean_up": 0.0002770274877548218, - "file_setup": 0.29124958999454975, - "save_results": 0.0023470818996429443, - "generate_witness_c": 0.011234406381845474 - }, - "file_sizes": { - "proof": 709, - "total": 718, - "public": 9, - "total_gb": 7.18e-7, - "total_mb": 0.000718 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:39.000Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, + "compute_times": { + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "proof_input": { - "X": 1, - "Y": 1 + { + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:37.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, + "compute_times": { + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "proof": { - "pi_a": [ - "2207063161123321672315293695555204568332773987687326774610992998918697616999", - "9378689615945565595544610601636412539782629996985316435417919138459280340762", - "1" - ], - "pi_b": [ - [ - "10190336592438480583804612785494600792382485751203284338552921779453992985258", - "20446982779262933890029336407876973128828645516644745168518940763590442300323" - ], - [ - "20655754054270546200591335706622521698389283810001017000354930274582929078770", - "20404214007159496515896759370164990425681626933397490887169000799902132422291" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "21458825969862082745968530499651054837150935400643877244439288291516716035861", - "20579053204717472531997782852344919399884172919978257974395542556766015071320", - "1" - ], - "protocol": "groth16" + { + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:35.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, + "compute_times": { + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false + { + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:34.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, + "compute_times": { + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "public": [ - "1", - "1" - ], - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 + { + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:32.679Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, + "compute_times": { + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 2, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "8730022663636478395875193122617326879937238221063249151534446790148472013425", - "11334276671345291957926027542189078543582133290479552018335938047376153562309", - "1" - ], - [ - "5805122324364949964217197833749490235941814633922129721750683970607503958245", - "9872725283256828335323531825525214004638956944986769896909638442373636094929", - "1" - ], - [ - "5965984761837059522598477963926636008539398000326611706501700041118398309075", - "987034796951392775354586470684197458011430956168601634143158925917302107696", - "1" - ] - ] + { + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:31.191Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, + "compute_times": { + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:29.642Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, + "compute_times": { + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:27.981Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, + "compute_times": { + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:26.328Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, + "compute_times": { + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:54.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, + "compute_times": { + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:52.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, + "compute_times": { + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:49.557Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, + "compute_times": { + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:47.111Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, + "compute_times": { + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:44.587Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, + "compute_times": { + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:32.787Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, + "compute_times": { + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:29.506Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, + "compute_times": { + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:26.174Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, + "compute_times": { + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:10:50.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, + "compute_times": { + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:47.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, + "compute_times": { + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 + }, + "file_size": 451, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:39.474Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, + "compute_times": { + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 â‹… 1 != 2\",\"message\":\"Prove failed\"}\n" + }, + { + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, + "compute_times": { + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, + "compute_times": { + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, + "compute_times": { + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, + "compute_times": { + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, + "compute_times": { + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 + }, + "file_size": 789, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, + "compute_times": { + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" + }, + { + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, + "compute_times": { + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, + "compute_times": { + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, + "compute_times": { + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, + "compute_times": { + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, + "compute_times": { + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, + "compute_times": { + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, + "compute_times": { + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, + "compute_times": { + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, + "compute_times": { + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, + "compute_times": { + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, + "compute_times": { + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, + "compute_times": { + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, + "compute_times": { + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, + "compute_times": { + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, + "compute_times": { + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, + "compute_times": { + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, + "compute_times": { + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, + "compute_times": { + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, + "compute_times": { + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 + }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, + "compute_times": { + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, + "compute_times": { + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, + "compute_times": { + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "187148", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Tue, 12 Mar 2024 00:28:56 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, + "compute_times": { + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, + "compute_times": { + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.018Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, + "compute_times": { + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.932Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, + "compute_times": { + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.924Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, + "compute_times": { + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.909Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, + "compute_times": { + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.810Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, + "compute_times": { + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.800Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, + "compute_times": { + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.792Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, + "compute_times": { + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.637Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, + "compute_times": { + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.620Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, + "compute_times": { + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.593Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, + "compute_times": { + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.516Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, + "compute_times": { + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.491Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, + "compute_times": { + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.478Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, + "compute_times": { + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.414Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, + "compute_times": { + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.362Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, + "compute_times": { + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.356Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, + "compute_times": { + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.294Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, + "compute_times": { + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.184Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, + "compute_times": { + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.144Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, + "compute_times": { + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.120Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, + "compute_times": { + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, + "compute_times": { + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.027Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, + "compute_times": { + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.006Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, + "compute_times": { + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.963Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, + "compute_times": { + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.909Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, + "compute_times": { + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.896Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, + "compute_times": { + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.873Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, + "compute_times": { + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.817Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, + "compute_times": { + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.806Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, + "compute_times": { + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.774Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, + "compute_times": { + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, + "compute_times": { + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, + "compute_times": { + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, + "compute_times": { + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, + "compute_times": { + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, + "compute_times": { + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, + "compute_times": { + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, + "compute_times": { + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, + "compute_times": { + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, + "compute_times": { + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, + "compute_times": { + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, + "compute_times": { + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, + "compute_times": { + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, + "compute_times": { + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, + "compute_times": { + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, + "compute_times": { + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, + "compute_times": { + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, + "compute_times": { + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, + "compute_times": { + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, + "compute_times": { + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, + "compute_times": { + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, + "compute_times": { + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, + "compute_times": { + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, + "compute_times": { + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, + "compute_times": { + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, + "compute_times": { + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, + "compute_times": { + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, + "compute_times": { + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, + "compute_times": { + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.549Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, + "compute_times": { + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, + "compute_times": { + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, + "compute_times": { + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, + "compute_times": { + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, + "compute_times": { + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, + "compute_times": { + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, + "compute_times": { + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, + "compute_times": { + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, + "compute_times": { + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, + "compute_times": { + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, + "compute_times": { + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, + "compute_times": { + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, + "compute_times": { + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, + "compute_times": { + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, + "compute_times": { + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, + "compute_times": { + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, + "compute_times": { + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, + "compute_times": { + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, + "compute_times": { + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, + "compute_times": { + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, + "compute_times": { + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, + "compute_times": { + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, + "compute_times": { + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, + "compute_times": { + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, + "compute_times": { + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, + "compute_times": { + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, + "compute_times": { + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, + "compute_times": { + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, + "compute_times": { + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, + "compute_times": { + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, + "compute_times": { + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, + "compute_times": { + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, + "compute_times": { + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, + "compute_times": { + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, + "compute_times": { + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, + "compute_times": { + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, + "compute_times": { + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, + "compute_times": { + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, + "compute_times": { + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, + "compute_times": { + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, + "compute_times": { + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, + "compute_times": { + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "7281", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 529, - "total": 529, - "total_mb": 0.000529, - "total_gb": 5.29e-7 + { + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, + "compute_times": { + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, + "compute_times": { + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, + "compute_times": { + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, + "compute_times": { + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, + "compute_times": { + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, + "compute_times": { + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, + "compute_times": { + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, + "compute_times": { + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:14.150Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, + "compute_times": { + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:12.520Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, + "compute_times": { + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:10.959Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, + "compute_times": { + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:09.368Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, + "compute_times": { + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:07.782Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, + "compute_times": { + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:06.214Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, + "compute_times": { + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:04.623Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, + "compute_times": { + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:03.050Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, + "compute_times": { + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:01.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, + "compute_times": { + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:59.935Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, + "compute_times": { + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:58.407Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, + "compute_times": { + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:56.860Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, + "compute_times": { + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:55.316Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, + "compute_times": { + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/d817920a-7d2c-4f58-af49-2ed7ee8655b1/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004401206970214844, - "queued": 1.179371 + { + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:53.766Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, + "compute_times": { + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 493, - "total_gb": 4.93e-7, - "total_mb": 0.000493, - "code.tar.gz": 493 + { + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:52.213Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, + "compute_times": { + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:50.640Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, + "compute_times": { + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:49.058Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, + "compute_times": { + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:47.479Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, + "compute_times": { + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:45.920Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, + "compute_times": { + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "code.tar.gz": 529, - "total": 529, - "total_mb": 0.000529, - "total_gb": 5.29e-7 + { + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:44.421Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, + "compute_times": { + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:42.838Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, + "compute_times": { + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:20 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:41.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, + "compute_times": { + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:39.684Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, + "compute_times": { + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:38.137Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, + "compute_times": { + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:36.609Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, + "compute_times": { + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:35.023Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, + "compute_times": { + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:33.480Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, + "compute_times": { + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:31.932Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, + "compute_times": { + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:30.405Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, + "compute_times": { + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:28.882Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, + "compute_times": { + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:22 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/d817920a-7d2c-4f58-af49-2ed7ee8655b1/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004401206970214844, - "queued": 1.179371 + { + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:27.303Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, + "compute_times": { + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 493, - "total_gb": 4.93e-7, - "total_mb": 0.000493, - "code.tar.gz": 493 + { + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:25.623Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, + "compute_times": { + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:24.063Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, + "compute_times": { + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:22.482Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, + "compute_times": { + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:23 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:20.927Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, + "compute_times": { + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:19.297Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, + "compute_times": { + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:23 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:17.717Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, + "compute_times": { + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:16.204Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, + "compute_times": { + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:24 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:14.654Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, + "compute_times": { + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:13.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, + "compute_times": { + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:24 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:11.558Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, + "compute_times": { + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:10.032Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, + "compute_times": { + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:24 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:08.462Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, + "compute_times": { + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:06.935Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, + "compute_times": { + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:24 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:05.334Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, + "compute_times": { + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:03.737Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, + "compute_times": { + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:24 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/d817920a-7d2c-4f58-af49-2ed7ee8655b1/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004401206970214844, - "queued": 1.179371 + { + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:02.220Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, + "compute_times": { + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 493, - "total_gb": 4.93e-7, - "total_mb": 0.000493, - "code.tar.gz": 493 + { + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:00.620Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, + "compute_times": { + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:59.069Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, + "compute_times": { + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:57.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, + "compute_times": { + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:24 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:55.884Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, + "compute_times": { + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:54.264Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, + "compute_times": { + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:52.472Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, + "compute_times": { + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:50.941Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, + "compute_times": { + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:49.312Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, + "compute_times": { + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:47.661Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, + "compute_times": { + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:46.099Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, + "compute_times": { + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:44.552Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, + "compute_times": { + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:42.989Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, + "compute_times": { + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:41.451Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, + "compute_times": { + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:39.456Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, + "compute_times": { + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/d817920a-7d2c-4f58-af49-2ed7ee8655b1/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004401206970214844, - "queued": 1.179371 + { + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:37.847Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, + "compute_times": { + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 493, - "total_gb": 4.93e-7, - "total_mb": 0.000493, - "code.tar.gz": 493 + { + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:36.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, + "compute_times": { + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:34.681Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, + "compute_times": { + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:33.146Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, + "compute_times": { + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3858", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:26 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:31.611Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, + "compute_times": { + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:30.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, + "compute_times": { + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:27 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:28.546Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, + "compute_times": { + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:27.002Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, + "compute_times": { + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:27 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:25.415Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, + "compute_times": { + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:23.831Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, + "compute_times": { + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:27 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:22.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, + "compute_times": { + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:20.735Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, + "compute_times": { + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:19.166Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, + "compute_times": { + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:17.494Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, + "compute_times": { + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:15.887Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, + "compute_times": { + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/d817920a-7d2c-4f58-af49-2ed7ee8655b1/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "d817920a-7d2c-4f58-af49-2ed7ee8655b1", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:18.637Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.473188S", - "compute_times": { - "total": 7.554633064195514, - "queued": 1.179371, - "clean_up": 0.0017707552760839462, - "create_cpp": 0.05490063317120075, - "file_setup": 0.25309748761355877, - "compile_cpp": 4.501677669584751, - "create_r1cs": 0.016785187646746635, - "save_results": 0.006152670830488205, - "get_r1cs_info": 0.000651361420750618, - "groth16_setup": 1.3840984795242548, - "export_verification_key": 1.33261807449162, - "download_trusted_setup_file": 0.002440623939037323 - }, - "file_sizes": { - "total": 225414, - "circuit": 213240, - "total_gb": 0.000225414, - "total_mb": 0.225414, - "circuit.dat": 6176, - "code.tar.gz": 493, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:14.188Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, + "compute_times": { + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:12.610Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, + "compute_times": { + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "4361", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:11.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, + "compute_times": { + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:09.525Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, + "compute_times": { + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:07.842Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, + "compute_times": { + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:06.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, + "compute_times": { + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:04.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, + "compute_times": { + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:03.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, + "compute_times": { + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004485398530960083, - "queued": 9.476755 + { + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:01.643Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, + "compute_times": { + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:59.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, + "compute_times": { + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:58.419Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, + "compute_times": { + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:56.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, + "compute_times": { + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3855", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:55.300Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, + "compute_times": { + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:53.639Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, + "compute_times": { + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:29 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.345Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, + "compute_times": { + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.240Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, + "compute_times": { + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:30 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, + "compute_times": { + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, + "compute_times": { + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:30 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.112Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, + "compute_times": { + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:39.613Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, + "compute_times": { + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:30 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004485398530960083, - "queued": 9.476755 + { + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:38.083Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, + "compute_times": { + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:36.595Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, + "compute_times": { + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:35.046Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, + "compute_times": { + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:33.547Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, + "compute_times": { + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3855", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:30 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:40.710Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, + "compute_times": { + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:39.000Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, + "compute_times": { + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:30 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:37.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, + "compute_times": { + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:35.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, + "compute_times": { + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:34.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, + "compute_times": { + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:32.679Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, + "compute_times": { + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:31.191Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, + "compute_times": { + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:29.642Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, + "compute_times": { + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:31 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004485398530960083, - "queued": 9.476755 + { + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:27.981Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, + "compute_times": { + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:26.328Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, + "compute_times": { + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:54.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, + "compute_times": { + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:52.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, + "compute_times": { + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3855", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:32 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:49.557Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, + "compute_times": { + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:47.111Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, + "compute_times": { + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:32 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:44.587Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, + "compute_times": { + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:32.787Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, + "compute_times": { + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:33 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:29.506Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, + "compute_times": { + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:26.174Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, + "compute_times": { + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:33 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:10:50.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, + "compute_times": { + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:47.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, + "compute_times": { + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 + }, + "file_size": 451, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:33 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004485398530960083, - "queued": 9.476755 + { + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:39.474Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, + "compute_times": { + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 â‹… 1 != 2\",\"message\":\"Prove failed\"}\n" }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, + "compute_times": { + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, + "compute_times": { + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, + "compute_times": { + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3855", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:33 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, + "compute_times": { + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, + "compute_times": { + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 + }, + "file_size": 789, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:33 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, + "compute_times": { + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, + "compute_times": { + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, + "compute_times": { + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, + "compute_times": { + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, + "compute_times": { + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, + "compute_times": { + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:34 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", - "proving_scheme": "groth16", - "status": "In Progress", - "compute_time": null, - "compute_times": { - "total": 0.0004485398530960083, - "queued": 9.476755 + { + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, + "compute_times": { + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, + "compute_times": { + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, + "compute_times": { + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + { + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, + "compute_times": { + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3855", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:35 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, + "compute_times": { + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, + "compute_times": { + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:35 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, + "compute_times": { + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, + "compute_times": { + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:36 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 + { + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, + "compute_times": { + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, + "compute_times": { + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, + "compute_times": { + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "750", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:36 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + { + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, + "compute_times": { + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + { + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, + "compute_times": { + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, + { + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, + "compute_times": { + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 + }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, + "compute_times": { + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, + "compute_times": { + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, + "compute_times": { + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + } + ], "rawHeaders": [ "Content-Length", - "747", + "187148", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:36 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -38718,113 +18665,39 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/14ded9ae-515c-4499-8180-1aba82c34509/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed534d6fe23010cdd9bf6284f600b4c48e494082e5d4bdf6d4fe0163dc64ba891dd90ed5aaea7f5f39095f62575d090eab8a77713c2f33e3b1df9368a5a92655537aac4b549653895636e863d952d1e5608ccdd21422c69279c6c2ca184fbb3570f32944499a659c4d793a4b2396cc67f30c227685de9fa2715ed8885ddcab9b05f6eb7f80c39d6627f77b8cda8abc12d0bd35f098c56c49081d93e7021df45200afaaba145e812c94fce9c017c283040c5f0a76e291c2a3d1605e4080d01b58c7e4c934562a183e0a2b0b48f83d70c6a7a30590c2fbda2d28dd18e97aa9c56868aebc479d4fc2ab78b5a16f16db7d7f1247ff35519aaac6f234754c0108d90ff378103d0c47f01e4800a0147e28590abb1fc761ae45e96280c0773b405d371ec4f20fc1f569d0343e44e5f2d0e0c168e7ad40ed7755257c5fad40c0b8cbfe20244c60b4d21e2a811a56c7e71d8e96e42a1a91e7fe77a83716e35767f4555a7ce6ff29e767fee76c76f3ffa538bed3bff9ff9d000cbe3959a84a0c1630d8b9ab1781a86b2a6aa4dba48f4c2aa1f145393fe9725a990cee43152d2a154a9c4baae37b1f3effaa8f7eeba9c66edbe05af32ced62b5355bd4f95368d372b935be48661dfb865e2be71e5a972bdb16bcbb1b908febd8e2861b6eb8e1cbe33733e7a60f000c00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "14ded9ae-515c-4499-8180-1aba82c34509", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.049Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.531303S", - "compute_times": { - "total": 7.608175175264478, - "queued": 9.476755, - "clean_up": 0.0016899947077035904, - "create_cpp": 0.04659100063145161, - "file_setup": 0.2594480477273464, - "compile_cpp": 4.6310822404921055, - "create_r1cs": 0.017583873122930527, - "save_results": 0.005414187908172607, - "get_r1cs_info": 0.000683613121509552, - "groth16_setup": 1.3292772620916367, - "export_verification_key": 1.3135217893868685, - "download_trusted_setup_file": 0.0024346262216567993 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 495, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4359", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:36 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -38842,50 +18715,39 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:36 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -38903,50 +18765,39 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -38964,99 +18815,39 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0004519559442996979, - "queued": 17.811268 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39075,49 +18866,50 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/proof/d571dee9-1a2b-4549-9bfd-5f639823dd8a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", - "proving_scheme": "groth16", - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, + "compute_times": { + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 + }, + "file_size": 532, + "proof_input": { + "PreImage": "297262668938251460872476410954775437897592223497" }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "proof": { + "proof": "H7CYWYy5fapXQZFqhqYODOt/MnOtsN89v86s/Q+PQ6oG3lWG0iy1CSLIEhoFBX6wdQAoYdjiejspuxoTRy5lvQAcU6QNmIVumomuSb4UlNRK+kfWyCMHMjSAGK3SSQl8E3TkYs+VMPdfwQ9ukDuMb8/WFg2sqPEblIbsaROuRf4csW1sgjIC5VE2vCGvio5Xgg1wyAyoM0oN5wCFfopC4xZB78LE+AbmszSsz+RjFwRiE7pnKZ0E+fPvLbT9P3BcDIJprcSIgqD913l7RgNfcoAa4tyPxGEt5B6898oxp34J5Veq1n7uZF9Y7oy4JdlX/m2X7aMoTFPzW5jdQWQ2pgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": null, - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "public": { + "Hash": "21099541378821686330832093407308585959971016892597585818017774528142419287929" + }, + "verification_key": { + "verifying_key": "AZuKAsBYS9XUoUekCdnwUdpv66Ydjvc+THgzZ1bEjDECKWQSDajIzlLNtTC8e98dCZP+BDWR+8kLYBdFeyA7CSuDePqNEV3a2tuIJt0BPb8KanU9U27h+k0q3NWp10wpIpGYH1zUvZ1n4UNnZRkZ9QGsvqnFMCSLdbvRzWATaHQGoYj4Mb/pICxPN7hpzb1oP9G265bukuJd2J5IyosRgCISjzx8DpwO+uPTpah+/qnzBgpcsgVx6dBuP2/tyyMXBAiaJrnU0f4W4e84R9ZN4WLcAb98ZfwBV9FI0HZhIV4CvBzV8q2OgKXsymQhs9N+ssmAV7B9zz92r9BF1p0q3i54Z4to9mI9g9kdbjc7lAuKR2Td9bDdgYll5VSQ5V8gJY84yUagA++d5ZqAZkcNw980TBsJIMzTctGRH9AkReYkGFNW2h+HmzpGfz3ILeyQZEe3YhFAePv0em5iGMIt/hNPoZt3tcdqFLTjqxb2YZxEJka25BOsG9DoUIGOG/AGJ8c/ekNbrmgmABdMWduVLqiMNVHSgHbS/nitebSDTVkSuz2FFU2Pl9z0hiKQxB1x8O9KBHLJyJNjNd4q0e92QiMsRz6ZGJCZjWyRuipTAJJ91f2xcUuq7H5bSxPw5eQsCctSpzeCkfid0bExrasUYKD9IKG3KUPhLd+tJQrppq0hg70mG5hWDeb56u87wi4bCiMpjPLft0yxzxcEdLuyoCsaqQusl4faufJfaBlQnLfeICOkAVF1WFdi+DY+e34xAAAAAgnpuIbOMgN7mEntfuHbhUsvzOBPMfz+Iz2QNqvZ1EtGAYrAMDgOjShXid1AiYWe2fVauLRx66IE71umcRIgaGgjGeoJYf8qz7NuHYtuGHJ6hYf9PfmFEOUvoVuB/qUY+As3OhG2Yk6Cs6eaLSJk7VqO2Isl6q8w2420rG4EoeRSAAAAAA8JQCqWantqQEe3L6ctcwNmXSDpD/BUNh+XS5VUcVbBFU9OU6X1vMwfkRD5Xwf55xpkb5Zwk4IhhGr0jRgdtp4QUlk1INxSbo3Y+wawJOkOHPf0h4K4jTYrDVYTJslzgy8aujsa0C3SRYToyPGwJJlmQCpONjzVszK2PxRd0GIQAXDTddlQk/cPvqkCp8b1GCTTJowDZ3DWWa764NWTH+Ef5GXTg7RyjDqlzs7LwJnHYOPz/OuedGDP7MQM0fr+VhtIEuHGqFsviWa+M2Zaa1aWcQHjIr+kpQqciJaayZKMKVEcJBO92pUgIf1q684Pas0AwyiJoBQQjsfYs+DzmcI=" + }, + "error": null }, "rawHeaders": [ "Content-Length", - "747", + "2557", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:37 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39135,50 +18927,39 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:38 GMT", + "Tue, 12 Mar 2024 00:28:56 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39196,50 +18977,39 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:39 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39258,98 +19028,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0004519559442996979, - "queued": 17.811268 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 495, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:39 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39368,49 +19078,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:39 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39429,49 +19128,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:39 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39490,49 +19178,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39551,98 +19228,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0004519559442996979, - "queued": 17.811268 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39661,49 +19278,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:40 GMT", + "Tue, 12 Mar 2024 00:28:57 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39722,49 +19328,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "compute_time_sec": null, + "compute_times": { + "total": 0.00038475729525089264, + "queued": 0.480293 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 495, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:41 GMT", + "Tue, 12 Mar 2024 00:28:58 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39783,49 +19381,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", + "Tue, 12 Mar 2024 00:28:58 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39844,98 +19431,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0004519559442996979, - "queued": 17.811268 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.0004733838140964508, + "queued": 0.748407 }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", + "Tue, 12 Mar 2024 00:28:58 GMT", "Referrer-Policy", "same-origin", "Server", @@ -39954,49 +19484,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", + "Tue, 12 Mar 2024 00:28:58 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40015,49 +19534,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:42 GMT", + "Tue, 12 Mar 2024 00:28:58 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40076,49 +19584,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:44 GMT", + "Tue, 12 Mar 2024 00:28:58 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40137,98 +19634,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0004519559442996979, - "queued": 17.811268 - }, - "file_sizes": { - "total": 497, - "total_gb": 4.97e-7, - "total_mb": 0.000497, - "code.tar.gz": 497 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.00038475729525089264, + "queued": 0.480293 }, + "file_size": 495, "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3859", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:44 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40247,49 +19687,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "compute_time_sec": null, + "compute_times": { + "total": 0.0004733838140964508, + "queued": 0.748407 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:44 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40308,49 +19740,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:44 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40369,173 +19790,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "747", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "16a4d970-9bd0-43b9-b17d-0f7ef4e4c75c", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.515Z", - "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.513274S", - "compute_times": { - "total": 7.591458907350898, - "queued": 17.811268, - "clean_up": 0.0016223490238189697, - "create_cpp": 0.04698212444782257, - "file_setup": 0.2895131055265665, - "compile_cpp": 4.567326873540878, - "create_r1cs": 0.017099613323807716, - "save_results": 0.005481356754899025, - "get_r1cs_info": 0.0006878171116113663, - "groth16_setup": 1.3349038530141115, - "export_verification_key": 1.324938554316759, - "download_trusted_setup_file": 0.0024513043463230133 - }, - "file_sizes": { - "total": 225418, - "circuit": 213240, - "total_gb": 0.000225418, - "total_mb": 0.225418, - "circuit.dat": 6176, - "code.tar.gz": 497, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null, - "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4364", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40554,49 +19840,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40615,49 +19890,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:45 GMT", + "Tue, 12 Mar 2024 00:28:59 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40676,49 +19940,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "compute_time_sec": null, + "compute_times": { + "total": 0.00038475729525089264, + "queued": 0.480293 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 495, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:47 GMT", + "Tue, 12 Mar 2024 00:29:00 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40737,49 +19993,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:47 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40798,98 +20043,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0004687998443841934, - "queued": 26.489615 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004733838140964508, + "queued": 0.748407 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3856", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:47 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40908,49 +20096,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -40969,49 +20146,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41030,98 +20196,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0004687998443841934, - "queued": 26.489615 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3856", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:48 GMT", + "Tue, 12 Mar 2024 00:29:01 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41140,49 +20246,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "compute_time_sec": null, + "compute_times": { + "total": 0.00038475729525089264, + "queued": 0.480293 }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 495, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:50 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41201,98 +20299,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000579051673412323, - "queued": 29.71443 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3854", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:50 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41311,98 +20349,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0004687998443841934, - "queued": 26.489615 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004733838140964508, + "queued": 0.748407 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3856", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:50 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41421,49 +20402,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "747", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41482,98 +20452,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000579051673412323, - "queued": 29.71443 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3854", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41592,98 +20502,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0004687998443841934, - "queued": 26.489615 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3856", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:51 GMT", + "Tue, 12 Mar 2024 00:29:02 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41702,98 +20552,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.000610698014497757, - "queued": 31.830187 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.00038475729525089264, + "queued": 0.480293 }, + "file_size": 495, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3855", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:52 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41812,98 +20605,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.000579051673412323, - "queued": 29.71443 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004733838140964508, + "queued": 0.748407 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3854", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:53 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -41922,98 +20658,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0004687998443841934, - "queued": 26.489615 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3856", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:53 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42032,98 +20708,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000610698014497757, - "queued": 31.830187 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 497, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3855", + "554", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42142,98 +20758,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000579051673412323, - "queued": 29.71443 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3854", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42252,112 +20808,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=false", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.534313S", - "compute_times": { - "total": 7.604177489876747, - "queued": 26.489615, - "clean_up": 0.0016786381602287292, - "create_cpp": 0.058510806411504745, - "file_setup": 0.25986699387431145, - "compile_cpp": 4.6301627568900585, - "create_r1cs": 0.009878763929009438, - "save_results": 0.01132495142519474, - "get_r1cs_info": 0.0007110238075256348, - "groth16_setup": 1.3059263043105602, - "export_verification_key": 1.3232482597231865, - "download_trusted_setup_file": 0.0024001915007829666 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4362", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:54 GMT", + "Tue, 12 Mar 2024 00:29:03 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42376,205 +20858,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6463d2fb-d20b-4a2d-9b8d-59b823e8514d/detail?include_verification_key=true", + "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6463d2fb-d20b-4a2d-9b8d-59b823e8514d", + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.557Z", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.534313S", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.784180S", + "compute_time_sec": 6.78418, "compute_times": { - "total": 7.604177489876747, - "queued": 26.489615, - "clean_up": 0.0016786381602287292, - "create_cpp": 0.058510806411504745, - "file_setup": 0.25986699387431145, - "compile_cpp": 4.6301627568900585, - "create_r1cs": 0.009878763929009438, - "save_results": 0.01132495142519474, - "get_r1cs_info": 0.0007110238075256348, - "groth16_setup": 1.3059263043105602, - "export_verification_key": 1.3232482597231865, - "download_trusted_setup_file": 0.0024001915007829666 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, + "total": 6.789581563323736, + "queued": 0.480293, + "clean_up": 0.008159313350915909, + "create_cpp": 0.04301437921822071, + "file_setup": 0.03162584872916341, + "compile_cpp": 4.316627806052566, + "create_r1cs": 0.01355265872552991, + "save_results": 0.006111504044383764, + "get_r1cs_info": 0.00033407704904675484, + "groth16_setup": 1.2013251609168947, + "export_verification_key": 1.1670180107466877, + "download_trusted_setup_file": 0.0014280471950769424 + }, + "file_size": 225416, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, "num_constraints": 1, "num_outputs": 1, "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "7002", + "1000", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:55 GMT", + "Tue, 12 Mar 2024 00:29:04 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42593,98 +20921,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000610698014497757, - "queued": 31.830187 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3855", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:55 GMT", + "Tue, 12 Mar 2024 00:29:04 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42703,98 +20971,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000579051673412323, - "queued": 29.71443 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3854", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:56 GMT", + "Tue, 12 Mar 2024 00:29:04 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42813,98 +21021,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.000610698014497757, - "queued": 31.830187 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004815077409148216, + "queued": 8.196652 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3855", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:57 GMT", + "Tue, 12 Mar 2024 00:29:05 GMT", "Referrer-Policy", "same-origin", "Server", @@ -42923,112 +21074,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/detail?include_verification_key=false", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:19.921Z", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.787707S", - "compute_times": { - "total": 7.863467486575246, - "queued": 29.71443, - "clean_up": 0.0016481913626194, - "create_cpp": 0.04791431687772274, - "file_setup": 0.2674948163330555, - "compile_cpp": 4.794877739623189, - "create_r1cs": 0.016735833138227463, - "save_results": 0.005454791709780693, - "get_r1cs_info": 0.0008744020015001297, - "groth16_setup": 1.3679648041725159, - "export_verification_key": 1.3566717375069857, - "download_trusted_setup_file": 0.0032518021762371063 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4356", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:58 GMT", + "Tue, 12 Mar 2024 00:29:05 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43047,149 +21124,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.000610698014497757, - "queued": 31.830187 - }, - "file_sizes": { - "total": 529, - "total_gb": 5.29e-7, - "total_mb": 0.000529, - "code.tar.gz": 529 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004815077409148216, + "queued": 8.196652 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": null, "num_constraints": null, "num_outputs": null, "num_private_inputs": null, - "num_public_inputs": null, - "num_wires": null, - "trusted_setup_file": "", - "witness_compiler": "c++" - }, - "rawHeaders": [ - "Content-Length", - "3855", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, - "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", - "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", - "perform_verify": false, - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, - "verification_key": null, - "error": null + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "547", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", + "Tue, 12 Mar 2024 00:29:07 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43208,42 +21177,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6f502df7-ec3c-47a3-8d66-20058f53be1a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", - "perform_verify": false, - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:53:59 GMT", + "Tue, 12 Mar 2024 00:29:07 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43262,112 +21227,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/detail?include_verification_key=false", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:20.404Z", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, "proving_scheme": "groth16", - "status": "Ready", - "compute_time": "P0DT00H00M07.891991S", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 7.968972038477659, - "queued": 31.830187, - "clean_up": 0.0016649086028337479, - "create_cpp": 0.05558864399790764, - "file_setup": 0.3072127681225538, - "compile_cpp": 4.800463767722249, - "create_r1cs": 0.010572437196969986, - "save_results": 0.004721015691757202, - "get_r1cs_info": 0.0008967835456132889, - "groth16_setup": 1.4486067201942205, - "export_verification_key": 1.3356455322355032, - "download_trusted_setup_file": 0.002988763153553009 - }, - "file_sizes": { - "total": 225450, - "circuit": 213240, - "total_gb": 0.00022545, - "total_mb": 0.22545, - "circuit.dat": 6176, - "code.tar.gz": 529, - "circuit.zkey": 2580, - "verification_key": 2925 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004815077409148216, + "queued": 8.196652 }, + "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single pti intel_ppin ssbd mba ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke md_clear flush_l1d arch_capabilities", - "Model:": "85", - "CPU(s):": "96", - "BogoMIPS:": "5400.00", - "L2 cache:": "48 MiB (48 instances)", - "L3 cache:": "66 MiB (2 instances)", - "Stepping:": "4", - "L1d cache:": "1.5 MiB (48 instances)", - "L1i cache:": "1.5 MiB (48 instances)", - "Socket(s):": "2", - "Vendor ID:": "GenuineIntel", - "Byte Order:": "Little Endian", - "CPU family:": "6", - "Model name:": "Intel(R) Xeon(R) Platinum 8168 CPU @ 2.70GHz", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "46 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "VT-x", - "NUMA node0 CPU(s):": "0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94", - "NUMA node1 CPU(s):": "1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95", - "Vulnerability Mds:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Core(s) per socket:": "24", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable", - "On-line CPU(s) list:": "0,1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41-49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89-95", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88", - "Vulnerability Meltdown:": "Mitigation; PTI", - "Vulnerability Retbleed:": "Mitigation; IBRS", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; IBRS, IBPB conditional, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "KVM: Mitigation: VMX disabled", - "Vulnerability Mmio stale data:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Tsx async abort:": "Mitigation; Clear CPU buffers; SMT vulnerable", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [], - "num_gpus": 0 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null, "curve": "bn254", - "degree": 0, - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0, - "num_wires": 4, - "trusted_setup_file": "powersOfTau28_hez_final_08.ptau", - "witness_compiler": "c++" + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "4359", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:00 GMT", + "Tue, 12 Mar 2024 00:29:08 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43386,103 +21280,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6f502df7-ec3c-47a3-8d66-20058f53be1a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", - "perform_verify": false, - "status": "In Progress", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000256415456533432, - "queued": 0.672834 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3406", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:01 GMT", + "Tue, 12 Mar 2024 00:29:08 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43500,40 +21329,42 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/83e307c7-16ce-493c-b8e4-96402b40a149/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, - "status": "Queued", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "compute_time_sec": null, + "compute_times": { + "total": 0.0004815077409148216, + "queued": 8.196652 }, - "proof_input": null, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "547", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:01 GMT", + "Tue, 12 Mar 2024 00:29:09 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43552,42 +21383,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:01 GMT", + "Tue, 12 Mar 2024 00:29:09 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43606,103 +21433,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6f502df7-ec3c-47a3-8d66-20058f53be1a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.000256415456533432, - "queued": 0.672834 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + "total": 0.0004815077409148216, + "queued": 8.196652 }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "3406", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:02 GMT", + "Tue, 12 Mar 2024 00:29:10 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43721,42 +21486,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:03 GMT", + "Tue, 12 Mar 2024 00:29:10 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43775,103 +21536,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6f502df7-ec3c-47a3-8d66-20058f53be1a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", - "perform_verify": false, - "status": "In Progress", - "compute_time": null, + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.685175S", + "compute_time_sec": 6.685175, "compute_times": { - "total": 0.000256415456533432, - "queued": 0.672834 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "total": 6.691927400883287, + "queued": 8.196652, + "clean_up": 0.009768068790435791, + "create_cpp": 0.0421549417078495, + "file_setup": 0.026188824325799942, + "compile_cpp": 4.305569048970938, + "create_r1cs": 0.013142664916813374, + "save_results": 0.002773165237158537, + "get_r1cs_info": 0.0003167171962559223, + "groth16_setup": 1.1705206399783492, + "export_verification_key": 1.1197901628911495, + "download_trusted_setup_file": 0.0012216591276228428 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "3406", + "998", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:04 GMT", + "Tue, 12 Mar 2024 00:29:11 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43890,42 +21599,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "563", + "551", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:04 GMT", + "Tue, 12 Mar 2024 00:29:11 GMT", "Referrer-Policy", "same-origin", "Server", @@ -43943,104 +21648,36 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/6f502df7-ec3c-47a3-8d66-20058f53be1a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", + "date_created": "2024-03-12T00:29:12.038Z", "perform_verify": false, - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.000256415456533432, - "queued": 0.672834 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3406", + "468", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:05 GMT", + "Tue, 12 Mar 2024 00:29:12 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44059,42 +21696,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/9657c1ad-90f8-4368-bda3-ee16f3f26b60/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", + "date_created": "2024-03-12T00:29:12.038Z", "perform_verify": false, "status": "Queued", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "file_size": null, "proof_input": { "a": "5", "b": "4" }, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "563", + "484", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:06 GMT", + "Tue, 12 Mar 2024 00:29:12 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44113,56 +21746,48 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6f502df7-ec3c-47a3-8d66-20058f53be1a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/9657c1ad-90f8-4368-bda3-ee16f3f26b60/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", + "date_created": "2024-03-12T00:29:12.038Z", "perform_verify": false, "status": "Ready", - "compute_time": "P0DT00H00M06.503650S", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.378782S", + "compute_time_sec": 0.378782, "compute_times": { - "prove": 6.26993091031909, - "total": 6.568507302552462, - "queued": 0.672834, - "clean_up": 0.0002343989908695221, - "file_setup": 0.25112294405698776, - "save_results": 0.0019973162561655045, - "generate_witness_c": 0.044965317472815514 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "prove": 0.3259259192273021, + "total": 0.3832521459553391, + "queued": 0.467242, + "clean_up": 0.004174598027020693, + "file_setup": 0.018889360828325152, + "save_results": 0.0015030219219624996, + "generate_witness_c": 0.032414837973192334 + }, + "file_size": 714, "proof_input": { "a": "5", "b": "4" }, "proof": { "pi_a": [ - "20945932132188056426749314825874328954019742236540118528395474327801069059460", - "8422312117489078063610960951429624995719220004418011749847383891794520987767", + "5548117448351207395194683044014875474006945943033088699123461253730908349032", + "2904002199462150880815799754556161688563728695229384543326400659803222603299", "1" ], "pi_b": [ [ - "5156148877013917319360592210895245027680004669393971519522232077417307760696", - "8508136106548427924842927676099819127223596010710898268167094081911916742820" + "19936045646405159549729317363429168686676776493630686410915091811923420587993", + "17889011523873426775313839984473579780833567980917459313146686435854191034538" ], [ - "5623280585764200921263897535363833365439010834935682615846940774908252752990", - "17251743153627436001757071328626152966138602476172888182793385543194588047244" + "17201861197173845958971370999564672432292465281731526998768653708969661637990", + "20342908507756810958111859573337936294003154478566688606750383465432913549356" ], [ "1", @@ -44170,80 +21795,15 @@ ] ], "pi_c": [ - "1004739577022345185905964088260736531132107404241784974725435438642988512985", - "19259819101637981084784528270942044250415629251971817158116031491234405121485", + "5493827996453581298406289367351152664390116573524165639053281829962682922293", + "13830351924256074590014418352933689318358123767317771525921483472396355764469", "1" ], "protocol": "groth16" }, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, "public": [ "20" ], - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -44342,11 +21902,11 @@ }, "rawHeaders": [ "Content-Length", - "7124", + "4093", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:07 GMT", + "Tue, 12 Mar 2024 00:29:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44365,42 +21925,45 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", "body": "", "status": 200, - "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", - "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, - "verification_key": null, - "error": null - }, + "response": [ + { + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "circuit_name": "circom-multiplier2", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_type": "circom", + "date_created": "2024-03-12T00:29:12.038Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.378782S", + "compute_time_sec": 0.378782, + "compute_times": { + "prove": 0.3259259192273021, + "total": 0.3832521459553391, + "queued": 0.467242, + "clean_up": 0.004174598027020693, + "file_setup": 0.018889360828325152, + "save_results": 0.0015030219219624996, + "generate_witness_c": 0.032414837973192334 + }, + "file_size": 714, + "proof_input": null, + "proof": null, + "public": null, + "verification_key": null, + "error": null + } + ], "rawHeaders": [ "Content-Length", - "563", + "717", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:07 GMT", + "Tue, 12 Mar 2024 00:29:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44419,118 +21982,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/4332d656-161f-4bb3-87f7-a54e89e4453a/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", "body": "", "status": 200, - "response": [ - { - "proof_id": "6f502df7-ec3c-47a3-8d66-20058f53be1a", - "circuit_name": "circom-multiplier2", - "circuit_id": "4332d656-161f-4bb3-87f7-a54e89e4453a", - "circuit_type": "circom", - "date_created": "2024-01-16T20:53:59.243Z", - "perform_verify": false, - "status": "Ready", - "compute_time": "P0DT00H00M06.503650S", - "compute_times": { - "prove": 6.26993091031909, - "total": 6.568507302552462, - "queued": 0.672834, - "clean_up": 0.0002343989908695221, - "file_setup": 0.25112294405698776, - "save_results": 0.0019973162561655045, - "generate_witness_c": 0.044965317472815514 - }, - "file_sizes": { - "proof": 706, - "total": 712, - "public": 6, - "total_gb": 7.12e-7, - "total_mb": 0.000712 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": null, - "proof": null, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, - "verification_key": null, - "error": null - } - ], + "response": { + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.844521S", + "compute_time_sec": 6.844521, + "compute_times": { + "total": 6.849527047015727, + "queued": 0.748407, + "clean_up": 0.021212157793343067, + "create_cpp": 0.042430317029356956, + "file_setup": 0.028176416642963886, + "compile_cpp": 4.403458681888878, + "create_r1cs": 0.013620416633784771, + "save_results": 0.007373335771262646, + "get_r1cs_info": 0.00034633465111255646, + "groth16_setup": 1.1376929804682732, + "export_verification_key": 1.1933853346854448, + "download_trusted_setup_file": 0.0013576876372098923 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, "rawHeaders": [ "Content-Length", - "3750", + "1001", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:07 GMT", + "Tue, 12 Mar 2024 00:30:12 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44548,43 +22044,52 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", - "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", - "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "method": "GET", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.780219S", + "compute_time_sec": 6.780219, + "compute_times": { + "total": 6.785887842997909, + "queued": 17.005312, + "clean_up": 0.04605554789304733, + "create_cpp": 0.04327188339084387, + "file_setup": 0.027595113962888718, + "compile_cpp": 4.341672266833484, + "create_r1cs": 0.015188083983957767, + "save_results": 0.0029082708060741425, + "get_r1cs_info": 0.0004408573731780052, + "groth16_setup": 1.1388461524620652, + "export_verification_key": 1.1682334607467055, + "download_trusted_setup_file": 0.0012331167235970497 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "563", + "1000", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:08 GMT", + "Tue, 12 Mar 2024 00:30:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44603,42 +22108,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, - "status": "Queued", - "compute_time": null, - "compute_times": null, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": null, + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.918743S", + "compute_time_sec": 6.918743, + "compute_times": { + "total": 6.924384770914912, + "queued": 8.861907, + "clean_up": 0.00972826313227415, + "create_cpp": 0.04441164992749691, + "file_setup": 0.027338513173162937, + "compile_cpp": 4.443122708238661, + "create_r1cs": 0.014043214730918407, + "save_results": 0.0032253582030534744, + "get_r1cs_info": 0.00039947032928466797, + "groth16_setup": 1.1997679574415088, + "export_verification_key": 1.180700602941215, + "download_trusted_setup_file": 0.0012276563793420792 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "563", + "1002", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:10 GMT", + "Tue, 12 Mar 2024 00:30:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44656,104 +22170,36 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", + "date_created": "2024-03-12T00:30:13.294Z", "perform_verify": false, - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0002080388367176056, - "queued": 9.269342 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3407", + "468", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:11 GMT", + "Tue, 12 Mar 2024 00:30:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44772,103 +22218,38 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", + "date_created": "2024-03-12T00:30:13.294Z", "perform_verify": false, - "status": "In Progress", + "status": "Queued", + "team": "evan-sangaline", "compute_time": null, - "compute_times": { - "total": 0.0002080388367176056, - "queued": 9.269342 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, "proof_input": { "a": "5", "b": "4" }, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3407", + "484", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:13 GMT", + "Tue, 12 Mar 2024 00:30:13 GMT", "Referrer-Policy", "same-origin", "Server", @@ -44887,103 +22268,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", + "date_created": "2024-03-12T00:30:13.294Z", "perform_verify": false, "status": "In Progress", + "team": "evan-sangaline", "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 0.0002080388367176056, - "queued": 9.269342 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" + "total": 0.0004198863171041012, + "queued": 0.41289 }, + "file_size": null, "proof_input": { "a": "5", "b": "4" }, "proof": null, - "prover_implementation": {}, "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3407", + "536", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:15 GMT", + "Tue, 12 Mar 2024 00:30:14 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45002,103 +22321,167 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", + "date_created": "2024-03-12T00:30:13.294Z", "perform_verify": false, - "status": "In Progress", - "compute_time": null, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.550727S", + "compute_time_sec": 1.550727, "compute_times": { - "total": 0.0002080388367176056, - "queued": 9.269342 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, + "prove": 1.4871477987617254, + "total": 1.5559976021759212, + "queued": 0.41289, + "clean_up": 0.007122974842786789, + "file_setup": 0.03450894495472312, + "save_results": 0.002017392311245203, + "generate_witness_c": 0.024780604988336563 + }, + "file_size": 711, "proof_input": { "a": "5", "b": "4" }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } + "proof": { + "pi_a": [ + "7834975527986983689626139770387195913181594167576444703143993828325764426112", + "11566814376934264552969282304244446610930608766029778683959908076689486356456", + "1" + ], + "pi_b": [ + [ + "10167494390839128396039342538560959116373948359233879887805170522095759380454", + "746284569046385998427380839043260366058281388859258123715845167471160510537" ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } + [ + "6520679046740441144313684103183744935723840920725814498858274756093999613095", + "16547006221423218359555290500178267255673770280413023605703838341181403245862" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "421695284425972817192365105334590265024641297735639354375003632010188233607", + "17314704966139770939634063680304919359026623214748004019915889595035929481708", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] }, - "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "3407", + "4087", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:16 GMT", + "Tue, 12 Mar 2024 00:30:16 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45117,103 +22500,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, - "status": "In Progress", - "compute_time": null, + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.894050S", + "compute_time_sec": 6.89405, "compute_times": { - "total": 0.0002080388367176056, - "queued": 9.269342 - }, - "file_sizes": null, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": null, - "prover_implementation": {}, - "public": null, - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "total": 6.900198160205036, + "queued": 15.716837, + "clean_up": 0.008259693160653114, + "create_cpp": 0.04261480597779155, + "file_setup": 0.02665704721584916, + "compile_cpp": 4.348901640623808, + "create_r1cs": 0.014178600162267685, + "save_results": 0.0026379870250821114, + "get_r1cs_info": 0.00040513090789318085, + "groth16_setup": 1.2399181728251278, + "export_verification_key": 1.2150304690003395, + "download_trusted_setup_file": 0.001215549185872078 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "3407", + "999", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:18 GMT", + "Tue, 12 Mar 2024 00:30:21 GMT", "Referrer-Policy", "same-origin", "Server", @@ -45232,137 +22563,36 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/aec2d613-2703-4017-8f5f-94fc0f11113e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "aec2d613-2703-4017-8f5f-94fc0f11113e", + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", "circuit_name": "circom-multiplier2", - "circuit_id": "83e307c7-16ce-493c-b8e4-96402b40a149", "circuit_type": "circom", - "date_created": "2024-01-16T20:54:01.253Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", - "compute_time": "P0DT00H00M07.777563S", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.894050S", + "compute_time_sec": 6.89405, "compute_times": { - "prove": 6.267073465511203, - "total": 7.845752663910389, - "queued": 9.269342, - "clean_up": 0.0002826172858476639, - "file_setup": 0.2512113116681576, - "save_results": 0.0029721390455961227, - "generate_witness_c": 1.3240050915628672 - }, - "file_sizes": { - "proof": 708, - "total": 714, - "public": 6, - "total_gb": 7.14e-7, - "total_mb": 0.000714 - }, - "metadata": { - "api_version": "v1.5.33", - "prover_backend_version": "v0.3.0" - }, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": { - "pi_a": [ - "21713265980546490683171152095357119334449697812113426217745176552842342105718", - "6593890259883015184618953656172025213180460785925835983185657169952285230197", - "1" - ], - "pi_b": [ - [ - "13751668511595698955018427650149474053082157575068480337359925807124868104444", - "14179902720855524978347197552672543454734768592571212356662229596809944045076" - ], - [ - "18788476611256363085907438211906543660757860266815704480148401518217665314927", - "15786581951912467755199292029578173479600036311933437022547602718902530171599" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "5444326058434493789612484070346709580997596135497628510123375643724494517459", - "8507443172240123047177636522140960240667736350269657725053102478205824847944", - "1" - ], - "protocol": "groth16" - }, - "prover_implementation": { - "name": "GPU Tachyonic", - "smbc": 6, - "smcurve": "spparkx.alt_bn128", - "smreplicate": false - }, - "public": [ - "20" - ], - "worker_hardware": { - "CPU": { - "Flags:": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 invpcid_single hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd amd_ppin brs arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca", - "Model:": "1", - "CPU(s):": "128", - "BogoMIPS:": "5200.30", - "L2 cache:": "32 MiB (64 instances)", - "L3 cache:": "256 MiB (8 instances)", - "Stepping:": "1", - "L1d cache:": "2 MiB (64 instances)", - "L1i cache:": "2 MiB (64 instances)", - "Socket(s):": "2", - "Vendor ID:": "AuthenticAMD", - "Byte Order:": "Little Endian", - "CPU family:": "25", - "Model name:": "AMD EPYC 7513 32-Core Processor", - "CPU max MHz:": "3681.6399", - "CPU min MHz:": "1500.0000", - "Architecture:": "x86_64", - "NUMA node(s):": "2", - "Address sizes:": "48 bits physical, 48 bits virtual", - "CPU op-mode(s):": "32-bit, 64-bit", - "Virtualization:": "AMD-V", - "Frequency boost:": "enabled", - "NUMA node0 CPU(s):": "0-31,64-95", - "NUMA node1 CPU(s):": "32-63,96-127", - "Vulnerability Mds:": "Not affected", - "Core(s) per socket:": "32", - "Thread(s) per core:": "2", - "Vulnerability L1tf:": "Not affected", - "On-line CPU(s) list:": "0-31,34-63,65-68,70-95,98-127", - "Vulnerability Srbds:": "Not affected", - "Off-line CPU(s) list:": "32,33,64,69,96,97", - "Vulnerability Meltdown:": "Not affected", - "Vulnerability Retbleed:": "Not affected", - "Vulnerability Spectre v1:": "Mitigation; usercopy/swapgs barriers and __user pointer sanitization", - "Vulnerability Spectre v2:": "Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling, PBRSB-eIBRS Not affected", - "Vulnerability Itlb multihit:": "Not affected", - "Vulnerability Mmio stale data:": "Not affected", - "Vulnerability Tsx async abort:": "Not affected", - "Vulnerability Spec store bypass:": "Mitigation; Speculative Store Bypass disabled via prctl" - }, - "GPU": { - "gpus": [ - { - "id": 0, - "name": "NVIDIA RTX A5000", - "uuid": "GPU-03584f55-087c-777d-cb15-104ed1d4ab77", - "driver": "525.125.06", - "serial": "1325021030275", - "memory_total_MiB": 24564 - } - ], - "num_gpus": 1 - }, - "RAM": { - "virtual_memory_total_gb": 48 - } - }, + "total": 6.900198160205036, + "queued": 15.716837, + "clean_up": 0.008259693160653114, + "create_cpp": 0.04261480597779155, + "file_setup": 0.02665704721584916, + "compile_cpp": 4.348901640623808, + "create_r1cs": 0.014178600162267685, + "save_results": 0.0026379870250821114, + "get_r1cs_info": 0.00040513090789318085, + "groth16_setup": 1.2399181728251278, + "export_verification_key": 1.2150304690003395, + "download_trusted_setup_file": 0.001215549185872078 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -45457,15 +22687,20 @@ ] ] }, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "7124", + "3639", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 16 Jan 2024 20:54:19 GMT", + "Tue, 12 Mar 2024 00:30:21 GMT", "Referrer-Policy", "same-origin", "Server", diff --git a/tsup.config.ts b/tsup.config.ts index c2bfd33..6dec9ed 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -2,6 +2,7 @@ import esbuild from "esbuild"; import { defineConfig } from "tsup"; process.env.NODE_ENV = process.env.NODE_ENV || "production"; +process.env.VERSION = process.env.VERSION || "0.0.0"; export default defineConfig([ // SDK for NodeJS. @@ -11,6 +12,7 @@ export default defineConfig([ entry: ["src/lib/index.ts"], env: { NODE_ENV: process.env.NODE_ENV, + VERSION: process.env.VERSION, }, format: ["cjs", "esm"], minify: process.env.NODE_ENV === "production", @@ -29,6 +31,7 @@ export default defineConfig([ env: { BROWSER_BUILD: "true", NODE_ENV: process.env.NODE_ENV, + VERSION: process.env.VERSION, }, format: ["cjs", "esm"], minify: process.env.NODE_ENV === "production", @@ -63,6 +66,7 @@ export default defineConfig([ entry: ["src/cli/index.ts"], env: { NODE_ENV: process.env.NODE_ENV, + VERSION: process.env.VERSION, }, format: ["cjs"], minify: process.env.NODE_ENV === "production", From 7edec7f9cf90d8f570f8eeaf3f98ab930ef530dd Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 13 Mar 2024 18:19:51 -0500 Subject: [PATCH 19/21] Add curve options to all manifest schema types All of the manifest types now support a curve option, this syncs the manifest with what the API supports. Merges #88 --- sindri-manifest.json | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sindri-manifest.json b/sindri-manifest.json index 6355692..68623b9 100644 --- a/sindri-manifest.json +++ b/sindri-manifest.json @@ -213,6 +213,12 @@ ], "additionalProperties": false }, + "Halo2CurveOptions": { + "title": "Halo2CurveOptions", + "description": "The supported Halo2 curves.", + "enum": ["bn254"], + "type": "string" + }, "Halo2ProvingSchemeOptions": { "title": "Halo2ProvingSchemeOptions", "description": "The supported Halo2 proving schemes.", @@ -239,6 +245,16 @@ }, "type": "string" }, + "curve": { + "title": "Proving Curve", + "description": "The curve over which the proof is executed.", + "default": "bn254", + "allOf": [ + { + "$ref": "#/definitions/Halo2CurveOptions" + } + ] + }, "className": { "title": "Circuit Class Name", "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", @@ -314,6 +330,16 @@ }, "type": "string" }, + "curve": { + "title": "Proving Curve", + "description": "The curve over which the proof is executed.", + "default": "bn254", + "allOf": [ + { + "$ref": "#/definitions/Halo2CurveOptions" + } + ] + }, "className": { "title": "Circuit Class Name", "description": "The path to your circuit struct definition. (*e.g.* `my-package::my_file::MyCircuitStruct`).", @@ -376,6 +402,12 @@ ], "additionalProperties": false }, + "NoirCurveOptions": { + "title": "NoirCurveOptions", + "description": "The supported Noir curves.", + "enum": ["bn254"], + "type": "string" + }, "NoirProvingSchemeOptions": { "title": "NoirProvingSchemeOptions", "description": "The supported Noir proving schemes.", @@ -408,6 +440,16 @@ }, "type": "string" }, + "curve": { + "title": "Proving Curve", + "description": "The curve over which the proof is executed.", + "default": "bn254", + "allOf": [ + { + "$ref": "#/definitions/NoirCurveOptions" + } + ] + }, "provingScheme": { "description": "The backend proving scheme.", "default": "barretenberg", From 6b052d0e45c47254b008c46376299084daf6787e Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 13 Mar 2024 19:13:59 -0500 Subject: [PATCH 20/21] Fix axiom-v0.3.0 manifest linting bug This was a typo bug which was incorrectly narrowing the axiom-v0.3.0 schema type to axiom-v0.2.2. Merges #89 --- src/cli/lint.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/lint.ts b/src/cli/lint.ts index 74148be..739ee29 100644 --- a/src/cli/lint.ts +++ b/src/cli/lint.ts @@ -110,7 +110,7 @@ export const lintCommand = new Command() sindriJson.halo2Version === "axiom-v0.3.0" ) { subSchema = sindriManifestJsonSchema.anyOf.find((option: Schema) => - /halo2axiomv022/i.test(option["$ref"] ?? ""), + /halo2axiomv030/i.test(option["$ref"] ?? ""), ); } else { // We can't discriminate the different halo2 manifests if there's not a valid `halo2Version` From 1bfc70d41c1515aac34b62127ebb54f62052b0bb Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Fri, 15 Mar 2024 08:55:00 -0500 Subject: [PATCH 21/21] Add a `sindri proof create` command This adds a basic `sindri proof create` command for generating a proof for the circuit. This currently just prints out the relevant subset of the API response, we don't attempt to save the outputs to disk or integrate with local tools. There's a `--verify` flag which optionally performs a remote verification of a proof, and a `--tag` flag which allows proving against a specific tag. This update also required a regeneration of the internal API client and the test fixtures, so there's a fair bit of noise in the diffs. The main files to pay attention to are `src/lib/client.ts`, `src/cli/index.ts`, and `src/cli/proof.ts`. Closes #35 Merges #90 LGTM given by: @katiemckeon --- src/cli/index.ts | 2 + src/cli/proof.ts | 185 + src/lib/api/ApiClient.ts | 2 +- src/lib/api/core/OpenAPI.ts | 2 +- src/lib/api/index.ts | 2 + .../api/models/CircomCircuitInfoResponse.ts | 51 + .../api/models/CircuitIsNotReadyResponse.ts | 14 + .../api/models/GnarkCircuitInfoResponse.ts | 42 + .../api/models/Halo2CircuitInfoResponse.ts | 48 + src/lib/api/models/NoirCircuitInfoResponse.ts | 52 + src/lib/api/models/ProofInfoResponse.ts | 43 + .../models/SmartContractVerifierResponse.ts | 14 + src/lib/api/services/CircuitsService.ts | 7 +- src/lib/api/services/InternalService.ts | 26 + src/lib/api/services/ProofsService.ts | 8 + src/lib/client.ts | 12 +- test/browser.test.ts | 40 + test/data/circom-multiplier2/input.json | 1 + test/fixtures/browser.test.ts.json | 34780 ++++++++++------ test/fixtures/sdk.test.ts.json | 31092 ++++++++------ test/sdk.test.ts | 19 + 21 files changed, 41157 insertions(+), 25285 deletions(-) create mode 100644 src/cli/proof.ts create mode 100644 src/lib/api/models/CircuitIsNotReadyResponse.ts create mode 100644 src/lib/api/models/SmartContractVerifierResponse.ts create mode 100644 test/data/circom-multiplier2/input.json diff --git a/src/cli/index.ts b/src/cli/index.ts index 48f7425..15b3c85 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -10,6 +10,7 @@ import { deployCommand } from "cli/deploy"; import { lintCommand } from "cli/lint"; import { loginCommand } from "cli/login"; import { logoutCommand } from "cli/logout"; +import { proofCommand } from "cli/proof"; import { whoamiCommand } from "cli/whoami"; import { loadPackageJson } from "cli/utils"; import sindri from "lib"; @@ -35,6 +36,7 @@ export const program = new Command() .addCommand(lintCommand) .addCommand(loginCommand) .addCommand(logoutCommand) + .addCommand(proofCommand) .addCommand(whoamiCommand) // Parse the base command options and respond to them before invoking the subcommand. .hook("preAction", async (command) => { diff --git a/src/cli/proof.ts b/src/cli/proof.ts new file mode 100644 index 0000000..52eaf56 --- /dev/null +++ b/src/cli/proof.ts @@ -0,0 +1,185 @@ +import fs from "fs"; +import path from "path"; +import process from "process"; + +import { Command } from "@commander-js/extra-typings"; + +import { findFileUpwards } from "cli/utils"; +import sindri from "lib"; +import { ApiError } from "lib/api"; +import { print } from "lib/logging"; + +const readStdin = async (): Promise => { + let inputData = ""; + return new Promise((resolve) => { + process.stdin.on("data", (chunk) => (inputData += chunk)); + process.stdin.on("end", () => resolve(inputData)); + }); +}; + +const proofCreateCommand = new Command() + .name("create") + .description("Create a proof for the circuit.") + .option( + "-i, --input ", + "Input file for the proof (defaults to stdin in on-TTY; " + + "`input.json`, `example-input.json`, or `Prover.toml` otherwise).", + ) + .option("-t, --tag ", "Tag to generate the proof from.", "latest") + .option( + "-v, --verify", + "Perform verification of the proof after creating it.", + ) + .action(async ({ input, tag, verify }) => { + // Check that the API client is authorized. + if (!sindri.apiKey || !sindri.baseUrl) { + sindri.logger.warn("You must login first with `sindri login`."); + return process.exit(1); + } + + // Find `sindri.json` and move into the root of the project directory. + const currentDirectoryPath = path.resolve("."); + if (!fs.existsSync(currentDirectoryPath)) { + sindri.logger.error( + `The "${currentDirectoryPath}" directory does not exist. Aborting.`, + ); + return process.exit(1); + } + const sindriJsonPath = findFileUpwards( + /^sindri.json$/i, + currentDirectoryPath, + ); + if (!sindriJsonPath) { + sindri.logger.error( + `No "sindri.json" file was found in or above "${currentDirectoryPath}". Aborting.`, + ); + return process.exit(1); + } + sindri.logger.debug(`Found "sindri.json" at "${sindriJsonPath}".`); + const rootDirectory = path.dirname(sindriJsonPath); + sindri.logger.debug(`Changing current directory to "${rootDirectory}".`); + process.chdir(rootDirectory); + + // Load `sindri.json` and find the circuit name. + let sindriJson: object = {}; + try { + const sindriJsonContent = fs.readFileSync(sindriJsonPath, { + encoding: "utf-8", + }); + sindriJson = JSON.parse(sindriJsonContent); + sindri.logger.debug( + `Successfully loaded "sindri.json" from "${sindriJsonPath}":`, + ); + sindri.logger.debug(sindriJson); + } catch (error) { + sindri.logger.fatal( + `Error loading "${sindriJsonPath}", perhaps it is not valid JSON?`, + ); + sindri.logger.error(error); + return process.exit(1); + } + if (!("name" in sindriJson)) { + sindri.logger.error('No "name" field found in "sindri.json". Aborting.'); + return process.exit(1); + } + const circuitName = sindriJson.name; + + // Reed in the proof input. + let proofInput: string | undefined; + if (input && fs.existsSync(input)) { + // Read from the specified input file. + proofInput = fs.readFileSync(input, "utf-8"); + } else if (!process.stdin.isTTY || input === "-") { + // Read from stdin in a non-TTY context. + proofInput = await readStdin(); + } else { + // Try to load from common input filenames. + const defaultInputFiles = [ + "input.json", + "example-input.json", + "Prover.toml", + ]; + for (const file of defaultInputFiles) { + const qualifiedFile = path.join(rootDirectory, file); + if (fs.existsSync(file)) { + proofInput = fs.readFileSync(qualifiedFile, "utf-8"); + break; + } + } + + if (!proofInput) { + console.error( + "No input file specified, none of the default files found, and not in a non-TTY context.", + ); + process.exit(1); + } + } + + // Only Circom supports smart contract calldata right now, so we only enable it for that circuit + // type. We'll need to update this as we add support for more circuit types. + const includeSmartContractCalldata = + "circuitType" in sindriJson && + typeof sindriJson.circuitType === "string" && + ["circom"].includes(sindriJson.circuitType); + + const circuitIdentifier = `${circuitName}:${tag}`; + try { + // Poll for proof generation to complete. + const startTime = Date.now(); + const response = await sindri.proveCircuit( + circuitIdentifier, + proofInput, + !!verify, + includeSmartContractCalldata, + ); + const elapsedSeconds = ((Date.now() - startTime) / 1000).toFixed(1); + + // Check that the status is "Ready" or log an error. + if (response.status === "Ready") { + sindri.logger.info( + `Proof generated successfully after ${elapsedSeconds} seconds.`, + ); + } else if (response.status === "Failed") { + sindri.logger.error( + `Proof generation failed after ${elapsedSeconds} seconds: ` + + (response.error ?? "Unknown error."), + ); + return process.exit(1); + } else { + sindri.logger.fatal(`Unexpected response status: ${response.status}`); + return process.exit(1); + } + + // Print out the formatted proof response. + print( + JSON.stringify( + { + proofId: response.proof_id, + proof: response.proof, + public: response.public, + // TODO: We need to figure out if this is the format we want to expose. + // smart_contract_calldata: response.smart_contract_calldata, + verification_key: response.verification_key, + }, + null, + 2, + ), + ); + } catch (error) { + // TODO: Better error handling. + if (error instanceof ApiError && error.status === 404) { + sindri.logger.error( + `No circuit found with the name "${circuitName}" and tag "${tag}".`, + ); + } else { + sindri.logger.fatal("An unknown error occurred."); + sindri.logger.error(error); + } + return process.exit(1); + } + }); + +export const proofCommand = new Command() + .name("proof") + .description("Commands related to proofs for the current circuit.") + .addCommand(proofCreateCommand); diff --git a/src/lib/api/ApiClient.ts b/src/lib/api/ApiClient.ts index ab68930..1c168a8 100644 --- a/src/lib/api/ApiClient.ts +++ b/src/lib/api/ApiClient.ts @@ -27,7 +27,7 @@ export class ApiClient { constructor(config?: Partial, HttpRequest: HttpRequestConstructor = AxiosHttpRequest) { this.request = new HttpRequest({ BASE: config?.BASE ?? 'https://sindri.app', - VERSION: config?.VERSION ?? '1.6.7', + VERSION: config?.VERSION ?? '1.6.9', WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false, CREDENTIALS: config?.CREDENTIALS ?? 'include', TOKEN: config?.TOKEN, diff --git a/src/lib/api/core/OpenAPI.ts b/src/lib/api/core/OpenAPI.ts index d7833fa..f285eb3 100644 --- a/src/lib/api/core/OpenAPI.ts +++ b/src/lib/api/core/OpenAPI.ts @@ -27,7 +27,7 @@ export type OpenAPIConfig = { export const OpenAPI: OpenAPIConfig = { BASE: "https://sindri.app", - VERSION: "1.6.7", + VERSION: "1.6.9", WITH_CREDENTIALS: false, CREDENTIALS: "include", TOKEN: undefined, diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index 732a2ed..55b3aa7 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -17,6 +17,7 @@ export type { APIKeyResponse } from './models/APIKeyResponse'; export type { CircomCircuitInfoResponse } from './models/CircomCircuitInfoResponse'; export type { CircuitDoesNotExistResponse } from './models/CircuitDoesNotExistResponse'; export type { CircuitInfoResponse } from './models/CircuitInfoResponse'; +export type { CircuitIsNotReadyResponse } from './models/CircuitIsNotReadyResponse'; export type { CircuitType } from './models/CircuitType'; export type { ComingSoonResponse } from './models/ComingSoonResponse'; export type { ForgeInternalErrorResponse } from './models/ForgeInternalErrorResponse'; @@ -31,6 +32,7 @@ export type { ProofCannotBeCreatedResponse } from './models/ProofCannotBeCreated export type { ProofDoesNotExistResponse } from './models/ProofDoesNotExistResponse'; export type { ProofInfoResponse } from './models/ProofInfoResponse'; export type { Schema } from './models/Schema'; +export type { SmartContractVerifierResponse } from './models/SmartContractVerifierResponse'; export type { TeamDetail } from './models/TeamDetail'; export type { TeamMeResponse } from './models/TeamMeResponse'; export type { TokenObtainPairInputSchema } from './models/TokenObtainPairInputSchema'; diff --git a/src/lib/api/models/CircomCircuitInfoResponse.ts b/src/lib/api/models/CircomCircuitInfoResponse.ts index 7782e25..30ffba0 100644 --- a/src/lib/api/models/CircomCircuitInfoResponse.ts +++ b/src/lib/api/models/CircomCircuitInfoResponse.ts @@ -9,13 +9,37 @@ import type { JobStatus } from "./JobStatus"; * Response for getting Circom circuit info. */ export type CircomCircuitInfoResponse = { + /** + * A unique identifier generated for the circuit. UUID4 format. + */ circuit_id: string; + /** + * The name of a circuit. This can be used in place of circuit_id for proving. This is specified during creation in the included sindri.json file. + */ circuit_name: string; + /** + * The development framework used to write the circuit. This is specified during creation in the included sindri.json file. + */ circuit_type: "circom"; + /** + * The UTC datetime the circuit was uploaded in ISO8601 format. + */ date_created: string; + /** + * The number of proofs submitted for this circuit. + */ num_proofs: number; + /** + * The proving scheme for this circuit. This is specified during creation in the included sindri.json file. + */ proving_scheme: string; + /** + * The status of the circuit job. + */ status: JobStatus; + /** + * The user/team that owns this circuit. + */ team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. @@ -25,17 +49,44 @@ export type CircomCircuitInfoResponse = { * Total compute time in seconds. This does not include the Queued time. */ compute_time_sec?: number; + /** + * Detailed compute times for the circuit compilation. + */ compute_times?: any; /** * Total size of stored file(s) in bytes. */ file_size?: number; + /** + * The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload. + */ uploaded_file_name: string; + /** + * The verification key of this circuit. + */ verification_key?: Record; + /** + * The error message for a failed circuit upload. + */ error?: string; + /** + * The elliptic curve over which the proving protocol takes place. + */ curve: string; + /** + * The number of constraints in the Rank-1 Constraint System (R1CS) of the circuit. + */ num_constraints?: number; + /** + * The number of public outputs from the circuit. + */ num_outputs?: number; + /** + * The number of private inputs for the circuit. + */ num_private_inputs?: number; + /** + * The number of public inputs for the circuit. + */ num_public_inputs?: number; }; diff --git a/src/lib/api/models/CircuitIsNotReadyResponse.ts b/src/lib/api/models/CircuitIsNotReadyResponse.ts new file mode 100644 index 0000000..15688fe --- /dev/null +++ b/src/lib/api/models/CircuitIsNotReadyResponse.ts @@ -0,0 +1,14 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ + +/** + * Action: Attempt to prove with a non-ready circuit (not compiled) + * Error: The circuit is not ready to accept proofs + */ +export type CircuitIsNotReadyResponse = { + error: string; + circuit_id: string; + message?: string; +}; diff --git a/src/lib/api/models/GnarkCircuitInfoResponse.ts b/src/lib/api/models/GnarkCircuitInfoResponse.ts index 781d0d2..6a35a0c 100644 --- a/src/lib/api/models/GnarkCircuitInfoResponse.ts +++ b/src/lib/api/models/GnarkCircuitInfoResponse.ts @@ -9,13 +9,37 @@ import type { JobStatus } from "./JobStatus"; * Response for getting Gnark circuit info. */ export type GnarkCircuitInfoResponse = { + /** + * A unique identifier generated for the circuit. UUID4 format. + */ circuit_id: string; + /** + * The name of a circuit. This can be used in place of circuit_id for proving. This is specified during creation in the included sindri.json file. + */ circuit_name: string; + /** + * The development framework used to write the circuit. This is specified during creation in the included sindri.json file. + */ circuit_type: "gnark"; + /** + * The UTC datetime the circuit was uploaded in ISO8601 format. + */ date_created: string; + /** + * The number of proofs submitted for this circuit. + */ num_proofs: number; + /** + * The proving scheme for this circuit. This is specified during creation in the included sindri.json file. + */ proving_scheme: string; + /** + * The status of the circuit job. + */ status: JobStatus; + /** + * The user/team that owns this circuit. + */ team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. @@ -25,14 +49,32 @@ export type GnarkCircuitInfoResponse = { * Total compute time in seconds. This does not include the Queued time. */ compute_time_sec?: number; + /** + * Detailed compute times for the circuit compilation. + */ compute_times?: any; /** * Total size of stored file(s) in bytes. */ file_size?: number; + /** + * The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload. + */ uploaded_file_name: string; + /** + * The verification key of this circuit. + */ verification_key?: Record; + /** + * The error message for a failed circuit upload. + */ error?: string; + /** + * The elliptic curve over which the proving protocol takes place. + */ curve: string; + /** + * The Gnark frontend version tag. + */ gnark_version: string; }; diff --git a/src/lib/api/models/Halo2CircuitInfoResponse.ts b/src/lib/api/models/Halo2CircuitInfoResponse.ts index cf66663..99f79ba 100644 --- a/src/lib/api/models/Halo2CircuitInfoResponse.ts +++ b/src/lib/api/models/Halo2CircuitInfoResponse.ts @@ -9,13 +9,37 @@ import type { JobStatus } from "./JobStatus"; * Response for getting Halo2 circuit info. */ export type Halo2CircuitInfoResponse = { + /** + * A unique identifier generated for the circuit. UUID4 format. + */ circuit_id: string; + /** + * The name of a circuit. This can be used in place of circuit_id for proving. This is specified during creation in the included sindri.json file. + */ circuit_name: string; + /** + * The development framework used to write the circuit. This is specified during creation in the included sindri.json file. + */ circuit_type: "halo2"; + /** + * The UTC datetime the circuit was uploaded in ISO8601 format. + */ date_created: string; + /** + * The number of proofs submitted for this circuit. + */ num_proofs: number; + /** + * The proving scheme for this circuit. This is specified during creation in the included sindri.json file. + */ proving_scheme: string; + /** + * The status of the circuit job. + */ status: JobStatus; + /** + * The user/team that owns this circuit. + */ team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. @@ -25,16 +49,40 @@ export type Halo2CircuitInfoResponse = { * Total compute time in seconds. This does not include the Queued time. */ compute_time_sec?: number; + /** + * Detailed compute times for the circuit compilation. + */ compute_times?: any; /** * Total size of stored file(s) in bytes. */ file_size?: number; + /** + * The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload. + */ uploaded_file_name: string; + /** + * The verification key of this circuit. + */ verification_key?: Record; + /** + * The error message for a failed circuit upload. + */ error?: string; + /** + * The path to the circuit struct definition. This is specified during creation in the included sindri.json file. + */ class_name: string; + /** + * The elliptic curve over which the proving protocol takes place. + */ curve: string; + /** + * The log_2 of the number of rows in the circuit, expressed as a matrix. + */ degree: number; + /** + * The Halo2 frontend version tag. + */ halo2_version: string; }; diff --git a/src/lib/api/models/NoirCircuitInfoResponse.ts b/src/lib/api/models/NoirCircuitInfoResponse.ts index 943509e..01ac064 100644 --- a/src/lib/api/models/NoirCircuitInfoResponse.ts +++ b/src/lib/api/models/NoirCircuitInfoResponse.ts @@ -9,13 +9,37 @@ import type { JobStatus } from "./JobStatus"; * Response for getting Noir circuit info. */ export type NoirCircuitInfoResponse = { + /** + * A unique identifier generated for the circuit. UUID4 format. + */ circuit_id: string; + /** + * The name of a circuit. This can be used in place of circuit_id for proving. This is specified during creation in the included sindri.json file. + */ circuit_name: string; + /** + * The development framework used to write the circuit. This is specified during creation in the included sindri.json file. + */ circuit_type: "noir"; + /** + * The UTC datetime the circuit was uploaded in ISO8601 format. + */ date_created: string; + /** + * The number of proofs submitted for this circuit. + */ num_proofs: number; + /** + * The proving scheme for this circuit. This is specified during creation in the included sindri.json file. + */ proving_scheme: string; + /** + * The status of the circuit job. + */ status: JobStatus; + /** + * The user/team that owns this circuit. + */ team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. @@ -25,16 +49,44 @@ export type NoirCircuitInfoResponse = { * Total compute time in seconds. This does not include the Queued time. */ compute_time_sec?: number; + /** + * Detailed compute times for the circuit compilation. + */ compute_times?: any; /** * Total size of stored file(s) in bytes. */ file_size?: number; + /** + * The name of the uploaded circuit file. Note: the CLI and SDKs create a generic name when a directory is specified for upload. + */ uploaded_file_name: string; + /** + * The verification key of this circuit. + */ verification_key?: Record; + /** + * The error message for a failed circuit upload. + */ error?: string; + /** + * The number of opcodes in the intermediate representation. + */ acir_opcodes?: number; + /** + * The number of constraints with an instantiated proving backend in the circuit. + */ circuit_size?: number; + /** + * The elliptic curve over which the proving protocol takes place. + */ + curve: string; + /** + * The name of the circuit project specified in the included Nargo.toml file. + */ nargo_package_name: string; + /** + * The Noir frontend version tag. + */ noir_version: string; }; diff --git a/src/lib/api/models/ProofInfoResponse.ts b/src/lib/api/models/ProofInfoResponse.ts index 0591001..7268b4b 100644 --- a/src/lib/api/models/ProofInfoResponse.ts +++ b/src/lib/api/models/ProofInfoResponse.ts @@ -10,13 +10,37 @@ import type { JobStatus } from "./JobStatus"; * Response for getting proof info. */ export type ProofInfoResponse = { + /** + * A unique identifier generated for the proof. UUID4 format. + */ proof_id: string; + /** + * The name of the circuit associated with this proof. + */ circuit_name: string; + /** + * The circuit_id of the circuit associated with this proof. UUID4 format. + */ circuit_id: string; + /** + * The development framework used to write the circuit. This is specified during creation in the included sindri.json file. + */ circuit_type: CircuitType; + /** + * The UTC datetime the circuit was uploaded in ISO8601 format. + */ date_created: string; + /** + * A boolean indicating whether an internal verification check occurred during the proof creation. + */ perform_verify: boolean; + /** + * The status of the proof job. + */ status: JobStatus; + /** + * The user/team that owns this circuit for this proof. + */ team: string; /** * Total compute time in ISO8601 format. This does not include the Queued time. @@ -31,9 +55,28 @@ export type ProofInfoResponse = { * Total size of stored file(s) in bytes. */ file_size?: number; + /** + * The private/public inputs to the circuit. + */ proof_input?: Record; + /** + * The succinct argument(s) of knowledge. + */ proof?: Record; + /** + * The public outputs of the circuit. + */ public?: any; + /** + * The proof and public formatted as calldata for the smart contract verifier. + */ + smart_contract_calldata?: string; + /** + * The verification key of this circuit. + */ verification_key?: Record; + /** + * The error message for a failed proof. + */ error?: string; }; diff --git a/src/lib/api/models/SmartContractVerifierResponse.ts b/src/lib/api/models/SmartContractVerifierResponse.ts new file mode 100644 index 0000000..1a552ba --- /dev/null +++ b/src/lib/api/models/SmartContractVerifierResponse.ts @@ -0,0 +1,14 @@ +/* generated using openapi-typescript-codegen -- do no edit */ +/* istanbul ignore file */ +/* tslint:disable */ +/* eslint-disable */ + +/** + * Response providing the smart contract verifier code. + */ +export type SmartContractVerifierResponse = { + /** + * The smart contract verifier code. + */ + contract_code: string; +}; diff --git a/src/lib/api/services/CircuitsService.ts b/src/lib/api/services/CircuitsService.ts index 1ae343a..242cd9f 100644 --- a/src/lib/api/services/CircuitsService.ts +++ b/src/lib/api/services/CircuitsService.ts @@ -2,7 +2,6 @@ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ - import type { ActionResponse } from "../models/ActionResponse"; import type { CircuitInfoResponse } from "../models/CircuitInfoResponse"; import type { ProofInfoResponse } from "../models/ProofInfoResponse"; @@ -123,6 +122,7 @@ export class CircuitsService { * @param includeProofInput * @param includeProof * @param includePublic + * @param includeSmartContractCalldata * @param includeVerificationKey * @returns ProofInfoResponse OK * @throws ApiError @@ -132,6 +132,7 @@ export class CircuitsService { includeProofInput: boolean = false, includeProof: boolean = false, includePublic: boolean = false, + includeSmartContractCalldata: boolean = false, includeVerificationKey: boolean = false, ): CancelablePromise> { return this.httpRequest.request({ @@ -144,11 +145,13 @@ export class CircuitsService { include_proof_input: includeProofInput, include_proof: includeProof, include_public: includePublic, + include_smart_contract_calldata: includeSmartContractCalldata, include_verification_key: includeVerificationKey, }, errors: { 404: `Not Found`, 500: `Internal Server Error`, + 501: `Not Implemented`, }, }); } @@ -169,7 +172,7 @@ export class CircuitsService { */ proof_input: string; /** - * Perform an internal verification on the resulting proof. + * A boolean indicating whether an internal verification check occurred during the proof creation. */ perform_verify?: boolean; /** diff --git a/src/lib/api/services/InternalService.ts b/src/lib/api/services/InternalService.ts index 768e68b..4bc45f5 100644 --- a/src/lib/api/services/InternalService.ts +++ b/src/lib/api/services/InternalService.ts @@ -3,6 +3,7 @@ /* tslint:disable */ /* eslint-disable */ import type { ActionResponse } from "../models/ActionResponse"; +import type { SmartContractVerifierResponse } from "../models/SmartContractVerifierResponse"; import type { TeamMeResponse } from "../models/TeamMeResponse"; import type { UserMeResponse } from "../models/UserMeResponse"; @@ -12,6 +13,31 @@ import type { BaseHttpRequest } from "../core/BaseHttpRequest"; export class InternalService { constructor(public readonly httpRequest: BaseHttpRequest) {} + /** + * Circuit Smart Contract Verifier + * Get smart contract verifier for existing circuit + * @param circuitId + * @returns SmartContractVerifierResponse OK + * @throws ApiError + */ + public circuitSmartContractVerifier( + circuitId: string, + ): CancelablePromise { + return this.httpRequest.request({ + method: "GET", + url: "/api/v1/circuit/{circuit_id}/smart_contract_verifier", + path: { + circuit_id: circuitId, + }, + errors: { + 404: `Not Found`, + 412: `Precondition Failed`, + 500: `Internal Server Error`, + 501: `Not Implemented`, + }, + }); + } + /** * Change user password (requires JWT authentication) * Change password for a user. diff --git a/src/lib/api/services/ProofsService.ts b/src/lib/api/services/ProofsService.ts index 7bcc70b..f549a95 100644 --- a/src/lib/api/services/ProofsService.ts +++ b/src/lib/api/services/ProofsService.ts @@ -17,6 +17,7 @@ export class ProofsService { * @param includeProofInput * @param includeProof * @param includePublic + * @param includeSmartContractCalldata * @param includeVerificationKey * @returns ProofInfoResponse OK * @throws ApiError @@ -25,6 +26,7 @@ export class ProofsService { includeProofInput: boolean = false, includeProof: boolean = false, includePublic: boolean = false, + includeSmartContractCalldata: boolean = false, includeVerificationKey: boolean = false, ): CancelablePromise> { return this.httpRequest.request({ @@ -34,10 +36,12 @@ export class ProofsService { include_proof_input: includeProofInput, include_proof: includeProof, include_public: includePublic, + include_smart_contract_calldata: includeSmartContractCalldata, include_verification_key: includeVerificationKey, }, errors: { 500: `Internal Server Error`, + 501: `Not Implemented`, }, }); } @@ -49,6 +53,7 @@ export class ProofsService { * @param includeProofInput * @param includeProof * @param includePublic + * @param includeSmartContractCalldata * @param includeVerificationKey * @returns ProofInfoResponse OK * @throws ApiError @@ -58,6 +63,7 @@ export class ProofsService { includeProofInput: boolean = true, includeProof: boolean = true, includePublic: boolean = true, + includeSmartContractCalldata: boolean = false, includeVerificationKey: boolean = true, ): CancelablePromise { return this.httpRequest.request({ @@ -70,11 +76,13 @@ export class ProofsService { include_proof_input: includeProofInput, include_proof: includeProof, include_public: includePublic, + include_smart_contract_calldata: includeSmartContractCalldata, include_verification_key: includeVerificationKey, }, errors: { 404: `Not Found`, 500: `Internal Server Error`, + 501: `Not Implemented`, }, }); } diff --git a/src/lib/client.ts b/src/lib/client.ts index a2b63fa..b3df772 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -643,13 +643,23 @@ export class SindriClient { async proveCircuit( circuitId: string, proofInput: string, + verify: boolean = false, + includeSmartContractCalldata: boolean = false, ): Promise { const createResponse = await this._client.circuits.proofCreate(circuitId, { + perform_verify: verify, proof_input: proofInput, }); let response: ProofInfoResponse; while (true) { - response = await this._client.proofs.proofDetail(createResponse.proof_id); + response = await this._client.proofs.proofDetail( + createResponse.proof_id, + true, // includeProofInput + true, // includeProof + true, // includePublic + includeSmartContractCalldata, // includeSmartContractCalldata + true, // includeVerificationKey + ); if (response.status === "Ready" || response.status === "Failed") { break; } diff --git a/test/browser.test.ts b/test/browser.test.ts index dcbe293..59c0076 100644 --- a/test/browser.test.ts +++ b/test/browser.test.ts @@ -52,6 +52,46 @@ test("create circuit from file array", async (t) => { t.true(true); }); +test("create proof", async (t) => { + // Create a circuit first. + const tag = "browser-create-proof-multiplier2-circuit"; + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const fileNames = await fs.readdir(circuitDirectory); + const fileData = await Promise.all( + fileNames.map(async (fileName) => ({ + content: await fs.readFile( + path.join(circuitDirectory, fileName), + "utf-8", + ), + fileName, + })), + ); + await t.context.page.evaluate( + async (fileData, tag) => { + const files = fileData.map( + ({ content, fileName }) => new File([content], fileName), + ); + await sindri.createCircuit(files, [tag]); + }, + fileData, + tag, + ); + + // Create a proof. + const proofInput = await fs.readFile( + path.join(circuitDirectory, "input.json"), + "utf-8", + ); + const proofResponse = await t.context.page.evaluate( + async (circuitIdentifier, proofInput) => { + return await sindri.proveCircuit(circuitIdentifier, proofInput); + }, + `circom-multiplier2:${tag}`, + proofInput, + ); + t.true(proofResponse?.status === "Ready"); +}); + test("fetch robots.txt", async (t) => { const content = await t.context.page.evaluate(async () => { const response = await fetch("https://sindri.app/robots.txt"); diff --git a/test/data/circom-multiplier2/input.json b/test/data/circom-multiplier2/input.json new file mode 100644 index 0000000..434473e --- /dev/null +++ b/test/data/circom-multiplier2/input.json @@ -0,0 +1 @@ +{"a":"5","b":"4"} \ No newline at end of file diff --git a/test/fixtures/browser.test.ts.json b/test/fixtures/browser.test.ts.json index 4a7de7f..0225eb8 100644 --- a/test/fixtures/browser.test.ts.json +++ b/test/fixtures/browser.test.ts.json @@ -20,11 +20,11 @@ "Content-Type", "text/plain; charset=\"utf-8\"", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:31 GMT", "Etag", - "\"65dd333d-19e\"", + "\"65f0c4bb-19e\"", "Last-Modified", - "Tue, 27 Feb 2024 00:56:29 GMT", + "Tue, 12 Mar 2024 21:10:19 GMT", "Server", "gunicorn", "Vary", @@ -32,19047 +32,26529 @@ ], "responseIsBinary": false }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d4b4b4c6f4a6e4e44584e55534150440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d4b4b4c6f4a6e4e44584e55534150440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d4b4b4c6f4a6e4e44584e55534150442d2d0d0a", - "status": 201, - "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", - "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "554", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727975554132716f48456361744c414e73790d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727975554132716f48456361744c414e73790d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727975554132716f48456361744c414e73792d2d0d0a", - "status": 201, - "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", - "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "554", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279423755457468376f4945636e686e494a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279423755457468376f4945636e686e494a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279423755457468376f4945636e686e494a2d2d0d0a", - "status": 201, - "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", - "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "554", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "path": "/api/v1/circuit/list?include_verification_key=false", "body": "", "status": 200, "response": [ { - "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.182Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150585S", - "compute_time_sec": 0.150585, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.11676173796877265, - "total": 0.15572588506620377, - "queued": 51.669893, - "clean_up": 0.009185672039166093, - "file_setup": 0.027514968067407608, - "save_results": 0.001868820982053876 + "total": 0.00028487294912338257, + "queued": 0.522243 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.062Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.618Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223055S", - "compute_time_sec": 0.223055, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.20497421699110419, - "total": 0.22819320199778304, - "queued": 48.364288, - "clean_up": 0.0023624080349691212, - "file_setup": 0.01836701901629567, - "save_results": 0.002189519989769906 + "total": 0.00038167554885149, + "queued": 0.472485 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.018Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.569Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.213402S", - "compute_time_sec": 0.213402, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.19061215105466545, - "total": 0.21872411505319178, - "queued": 48.427521, - "clean_up": 0.004127845983020961, - "file_setup": 0.022272864007391036, - "save_results": 0.0014097680104896426 + "total": 0.0006644092500209808, + "queued": 0.685611 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.932Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.176113S", - "compute_time_sec": 0.176113, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.15716673800488934, - "total": 0.18125584500376135, - "queued": 48.35111, - "clean_up": 0.006394687981810421, - "file_setup": 0.015695078996941447, - "save_results": 0.001599603972863406 + "total": 0.00037307431921362877, + "queued": 0.796402 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.924Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.175913S", - "compute_time_sec": 0.175913, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.15754800499416888, - "total": 0.1815414800075814, - "queued": 48.022383, - "clean_up": 0.002829990000464022, - "file_setup": 0.018857149058021605, - "save_results": 0.0017489319434389472 + "total": 0.0006933361291885376, + "queued": 0.498274 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.909Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.194250S", - "compute_time_sec": 0.19425, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.12928905605804175, - "total": 9.857152820914052, - "queued": 47.737361, - "clean_up": 0.01866333093494177, - "file_setup": 9.695790873956867, - "save_results": 0.005249700974673033 + "total": 0.0007268046028912067, + "queued": 0.512784 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.810Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092544S", - "compute_time_sec": 0.092544, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.07295725599396974, - "total": 0.09864532802021131, - "queued": 47.866814, - "clean_up": 0.0027975860284641385, - "file_setup": 0.020817386044654995, - "save_results": 0.0016599719529040158 + "total": 0.0006910823285579681, + "queued": 0.609665 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.800Z", - "perform_verify": false, + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:45.642Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105093S", - "compute_time_sec": 0.105093, - "compute_times": { - "prove": 0.08778161800000817, - "total": 0.11094204697292298, - "queued": 47.8478, - "clean_up": 0.002542709931731224, - "file_setup": 0.018792407936416566, - "save_results": 0.0014581570867449045 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.929838S", + "compute_time_sec": 10.929838, + "compute_times": { + "total": 11.007619581185281, + "queued": 0.481129, + "clean_up": 0.051205127499997616, + "create_cpp": 0.05483011808246374, + "file_setup": 0.10308713093400002, + "compile_cpp": 4.6461376613006, + "create_r1cs": 0.014528287574648857, + "save_results": 0.008079186081886292, + "get_r1cs_info": 0.0003790585324168205, + "groth16_setup": 1.4076873622834682, + "export_verification_key": 1.4883546605706215, + "download_trusted_setup_file": 1.7322950633242726, + "solidity_contract_generation": 1.5002469010651112 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.792Z", - "perform_verify": false, + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.896Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.233969S", - "compute_time_sec": 0.233969, - "compute_times": { - "prove": 0.2173847450176254, - "total": 0.23918032401707023, - "queued": 47.632341, - "clean_up": 0.003762404026929289, - "file_setup": 0.015466460026800632, - "save_results": 0.0015042249578982592 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.231365S", + "compute_time_sec": 11.231365, + "compute_times": { + "total": 11.307692172005773, + "queued": 0.476676, + "clean_up": 0.008774058893322945, + "create_cpp": 0.053523180074989796, + "file_setup": 0.09832879714667797, + "compile_cpp": 4.598241847008467, + "create_r1cs": 0.014149329625070095, + "save_results": 0.007395447231829166, + "get_r1cs_info": 0.0003755558282136917, + "groth16_setup": 1.5397319523617625, + "export_verification_key": 1.63625568151474, + "download_trusted_setup_file": 1.8067116104066372, + "solidity_contract_generation": 1.543387576006353 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.637Z", - "perform_verify": false, + "circuit_id": "b8e1fce0-8f61-425f-bcb8-934e7d40a7fe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.868Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.367199S", - "compute_time_sec": 0.367199, - "compute_times": { - "prove": 0.34983603993896395, - "total": 0.3715133300283924, - "queued": 47.284314, - "clean_up": 0.004351923940703273, - "file_setup": 0.01482851302716881, - "save_results": 0.0021903570741415024 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.883477S", + "compute_time_sec": 10.883477, + "compute_times": { + "total": 10.96161946002394, + "queued": 5.594399, + "clean_up": 0.008177496492862701, + "create_cpp": 0.05455693602561951, + "file_setup": 0.09822729509323835, + "compile_cpp": 5.32946053519845, + "create_r1cs": 0.023223165422677994, + "save_results": 0.007872683927416801, + "get_r1cs_info": 0.0007433714345097542, + "groth16_setup": 1.232159056700766, + "export_verification_key": 1.1852782787755132, + "download_trusted_setup_file": 1.8125058794394135, + "solidity_contract_generation": 1.2086354764178395 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.620Z", - "perform_verify": false, + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.751Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.235932S", - "compute_time_sec": 0.235932, - "compute_times": { - "prove": 0.22235612478107214, - "total": 0.24128600303083658, - "queued": 50.101947, - "clean_up": 0.0031629670411348343, - "file_setup": 0.014214606955647469, - "save_results": 0.0011093378998339176 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.305050S", + "compute_time_sec": 11.30505, + "compute_times": { + "total": 11.381858820095658, + "queued": 0.503683, + "clean_up": 0.006945925764739513, + "create_cpp": 0.0647741137072444, + "file_setup": 0.10372947435826063, + "compile_cpp": 4.63662054669112, + "create_r1cs": 0.014084351249039173, + "save_results": 0.006675968877971172, + "get_r1cs_info": 0.0004263361915946007, + "groth16_setup": 1.5637168493121862, + "export_verification_key": 1.5961499894037843, + "download_trusted_setup_file": 1.842420045286417, + "solidity_contract_generation": 1.5456946399062872 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.593Z", - "perform_verify": false, + "circuit_id": "66b82507-33a9-4ad4-bc6b-d25ca1e81640", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.750Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.916143S", - "compute_time_sec": 0.916143, - "compute_times": { - "prove": 0.7969153829617426, - "total": 11.417283304966986, - "queued": 46.46669, - "clean_up": 0.08386482996866107, - "file_setup": 10.52351449499838, - "save_results": 0.00758640409912914 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.268466S", + "compute_time_sec": 11.268466, + "compute_times": { + "total": 11.345806522294879, + "queued": 0.488628, + "clean_up": 0.011073347181081772, + "create_cpp": 0.05416189879179001, + "file_setup": 0.1187604358419776, + "compile_cpp": 4.553891937248409, + "create_r1cs": 0.014190373942255974, + "save_results": 0.007122533395886421, + "get_r1cs_info": 0.0004680706188082695, + "groth16_setup": 1.5284202648326755, + "export_verification_key": 1.6278462577611208, + "download_trusted_setup_file": 1.8715678034350276, + "solidity_contract_generation": 1.5577266169711947 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.516Z", - "perform_verify": false, + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.711Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.426199S", - "compute_time_sec": 0.426199, - "compute_times": { - "prove": 0.4102505180053413, - "total": 0.43261146097211167, - "queued": 46.82937, - "clean_up": 0.003141910012345761, - "file_setup": 0.017152403015643358, - "save_results": 0.0012355779763311148 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.210817S", + "compute_time_sec": 11.210817, + "compute_times": { + "total": 11.29248421639204, + "queued": 0.48327, + "clean_up": 0.020679300650954247, + "create_cpp": 0.05491482466459274, + "file_setup": 0.10212271381169558, + "compile_cpp": 4.628723526373506, + "create_r1cs": 0.014838848263025284, + "save_results": 0.008825177326798439, + "get_r1cs_info": 0.00037500355392694473, + "groth16_setup": 1.5391744449734688, + "export_verification_key": 1.6044446052983403, + "download_trusted_setup_file": 1.8482900699600577, + "solidity_contract_generation": 1.4694783054292202 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.491Z", - "perform_verify": false, + "circuit_id": "1adbe754-bf55-4bc4-840b-b1a0c6211bba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.631Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.474603S", - "compute_time_sec": 0.474603, - "compute_times": { - "prove": 0.4527727549429983, - "total": 0.4810627130791545, - "queued": 49.399479, - "clean_up": 0.0032021570950746536, - "file_setup": 0.02290356601588428, - "save_results": 0.0017274878919124603 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.272581S", + "compute_time_sec": 9.272581, + "compute_times": { + "total": 9.281027846038342, + "queued": 0.526207, + "clean_up": 0.010583236813545227, + "create_cpp": 0.06096075102686882, + "file_setup": 0.06766684353351593, + "compile_cpp": 4.783785995095968, + "create_r1cs": 0.028285864740610123, + "save_results": 0.01832101121544838, + "get_r1cs_info": 0.0007419697940349579, + "groth16_setup": 1.4409223012626171, + "export_verification_key": 1.4080555588006973, + "download_trusted_setup_file": 0.003306623548269272, + "solidity_contract_generation": 1.4575624987483025 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "4baed11c-5464-4388-9d51-15420e888150", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.478Z", - "perform_verify": false, + "circuit_id": "47dcd9c7-ad4c-442b-9749-1c4a223e9c41", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.622Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.305654S", - "compute_time_sec": 0.305654, - "compute_times": { - "prove": 0.2871348679764196, - "total": 0.3104168300051242, - "queued": 46.529494, - "clean_up": 0.0037129210541024804, - "file_setup": 0.017233187099918723, - "save_results": 0.0019823479233309627 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.295136S", + "compute_time_sec": 8.295136, + "compute_times": { + "total": 8.30126025620848, + "queued": 5.783183, + "clean_up": 0.012490132823586464, + "create_cpp": 0.04419650696218014, + "file_setup": 0.0244809091091156, + "compile_cpp": 4.626262218691409, + "create_r1cs": 0.014991610310971737, + "save_results": 0.007189788389950991, + "get_r1cs_info": 0.00040078582242131233, + "groth16_setup": 1.1928394669666886, + "export_verification_key": 1.1747048920951784, + "download_trusted_setup_file": 0.0014825090765953064, + "solidity_contract_generation": 1.2017690567299724 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.414Z", - "perform_verify": false, + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.727Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.498123S", - "compute_time_sec": 0.498123, - "compute_times": { - "prove": 0.47856602212414145, - "total": 0.5038217708934098, - "queued": 45.444814, - "clean_up": 0.0037471128161996603, - "file_setup": 0.019111952977254987, - "save_results": 0.0020769149996340275 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.085123S", + "compute_time_sec": 8.085123, + "compute_times": { + "total": 8.09137938497588, + "queued": 48.713112, + "clean_up": 0.007791096810251474, + "create_cpp": 0.044438749086111784, + "file_setup": 0.024869628716260195, + "compile_cpp": 4.385270964819938, + "create_r1cs": 0.013867777306586504, + "save_results": 0.002616934012621641, + "get_r1cs_info": 0.00037747714668512344, + "groth16_setup": 1.2033112640492618, + "export_verification_key": 1.1794444089755416, + "download_trusted_setup_file": 0.0012541408650577068, + "solidity_contract_generation": 1.2276925309561193 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.362Z", - "perform_verify": false, + "circuit_id": "1d731595-c5f5-45c2-8c8a-74da993e6e82", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.698Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.518721S", - "compute_time_sec": 0.518721, - "compute_times": { - "prove": 0.5003455500118434, - "total": 0.5234491459559649, - "queued": 45.480803, - "clean_up": 0.0037253409391269088, - "file_setup": 0.017134927911683917, - "save_results": 0.0019250600598752499 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.356818S", + "compute_time_sec": 9.356818, + "compute_times": { + "total": 9.365758311003447, + "queued": 40.166302, + "clean_up": 0.012013569474220276, + "create_cpp": 0.05509437248110771, + "file_setup": 0.04398589953780174, + "compile_cpp": 4.733264245092869, + "create_r1cs": 0.03983578085899353, + "save_results": 0.0039914920926094055, + "get_r1cs_info": 0.0008755624294281006, + "groth16_setup": 1.5458043776452541, + "export_verification_key": 1.5154130905866623, + "download_trusted_setup_file": 0.0033237673342227936, + "solidity_contract_generation": 1.4115587584674358 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.356Z", - "perform_verify": false, + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.637Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.611922S", - "compute_time_sec": 0.611922, - "compute_times": { - "prove": 0.5805270280689001, - "total": 0.6166191740194336, - "queued": 44.232932, - "clean_up": 0.008304930990561843, - "file_setup": 0.025953233940526843, - "save_results": 0.0014997139805927873 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.094395S", + "compute_time_sec": 8.094395, + "compute_times": { + "total": 8.100875509902835, + "queued": 37.935772, + "clean_up": 0.04136878298595548, + "create_cpp": 0.04349753214046359, + "file_setup": 0.026510909665375948, + "compile_cpp": 4.416802708990872, + "create_r1cs": 0.014031601138412952, + "save_results": 0.00268988823518157, + "get_r1cs_info": 0.0004020840860903263, + "groth16_setup": 1.2034661802463233, + "export_verification_key": 1.1931509468704462, + "download_trusted_setup_file": 0.0012740916572511196, + "solidity_contract_generation": 1.1572514278814197 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.294Z", - "perform_verify": false, + "circuit_id": "ca8fd41d-f06c-44a6-a107-14aa6dd9ecf7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.599Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308959S", - "compute_time_sec": 0.308959, - "compute_times": { - "prove": 0.2826259849825874, - "total": 0.3145583850564435, - "queued": 43.33347, - "clean_up": 0.003558462020009756, - "file_setup": 0.0257925660116598, - "save_results": 0.0022130260476842523 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.071530S", + "compute_time_sec": 9.07153, + "compute_times": { + "total": 9.079165190458298, + "queued": 30.148027, + "clean_up": 0.0193355530500412, + "create_cpp": 0.05889047309756279, + "file_setup": 0.0320410318672657, + "compile_cpp": 4.729198798537254, + "create_r1cs": 0.026881281286478043, + "save_results": 0.005445607006549835, + "get_r1cs_info": 0.0007509514689445496, + "groth16_setup": 1.433782622218132, + "export_verification_key": 1.3903879560530186, + "download_trusted_setup_file": 0.0030304640531539917, + "solidity_contract_generation": 1.3787178322672844 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.184Z", - "perform_verify": false, + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.488Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109062S", - "compute_time_sec": 0.109062, - "compute_times": { - "prove": 0.07950302597600967, - "total": 0.11443837394472212, - "queued": 47.654241, - "clean_up": 0.004247633973136544, - "file_setup": 0.028729144018143415, - "save_results": 0.001540875993669033 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.343632S", + "compute_time_sec": 8.343632, + "compute_times": { + "total": 8.35001930873841, + "queued": 29.144473, + "clean_up": 0.007048632018268108, + "create_cpp": 0.04429081408306956, + "file_setup": 0.026038472075015306, + "compile_cpp": 4.664958589244634, + "create_r1cs": 0.01457917457446456, + "save_results": 0.0031841211020946503, + "get_r1cs_info": 0.0003963680937886238, + "groth16_setup": 1.1928057740442455, + "export_verification_key": 1.196701374836266, + "download_trusted_setup_file": 0.0012594950385391712, + "solidity_contract_generation": 1.198316270019859 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.144Z", - "perform_verify": false, + "circuit_id": "36805997-5a18-443e-9257-c7c755763dde", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.365Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.249112S", - "compute_time_sec": 0.249112, - "compute_times": { - "prove": 0.21678003598935902, - "total": 0.25460609793663025, - "queued": 42.162713, - "clean_up": 0.01700777595397085, - "file_setup": 0.018869346007704735, - "save_results": 0.0016134349862113595 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.160020S", + "compute_time_sec": 9.16002, + "compute_times": { + "total": 9.166912835091352, + "queued": 21.165635, + "clean_up": 0.01679837331175804, + "create_cpp": 0.06060396507382393, + "file_setup": 0.03646278753876686, + "compile_cpp": 4.784000992774963, + "create_r1cs": 0.027241531759500504, + "save_results": 0.004248317331075668, + "get_r1cs_info": 0.0007042139768600464, + "groth16_setup": 1.4266419857740402, + "export_verification_key": 1.362672533839941, + "download_trusted_setup_file": 0.003010723739862442, + "solidity_contract_generation": 1.4438144154846668 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.120Z", - "perform_verify": false, + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.359Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.389380S", - "compute_time_sec": 0.38938, - "compute_times": { - "prove": 0.3490279840771109, - "total": 0.39595628902316093, - "queued": 44.712192, - "clean_up": 0.018011081032454967, - "file_setup": 0.026378671871498227, - "save_results": 0.0021800349932163954 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.236905S", + "compute_time_sec": 8.236905, + "compute_times": { + "total": 8.242964311037213, + "queued": 19.712185, + "clean_up": 0.012127489317208529, + "create_cpp": 0.04317784681916237, + "file_setup": 0.032348338048905134, + "compile_cpp": 4.581387536134571, + "create_r1cs": 0.013678629882633686, + "save_results": 0.003174391109496355, + "get_r1cs_info": 0.00039021391421556473, + "groth16_setup": 1.1700614751316607, + "export_verification_key": 1.1969006708823144, + "download_trusted_setup_file": 0.00127820810303092, + "solidity_contract_generation": 1.1880456837825477 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.062Z", - "perform_verify": false, + "circuit_id": "54ea40a5-484a-4f75-b90b-801c2029e5ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.302Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.293103S", - "compute_time_sec": 0.293103, - "compute_times": { - "prove": 0.2668396580265835, - "total": 0.29833219898864627, - "queued": 41.268095, - "clean_up": 0.004488729988224804, - "file_setup": 0.024880563956685364, - "save_results": 0.0017942419508472085 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.349751S", + "compute_time_sec": 9.349751, + "compute_times": { + "total": 9.35859140008688, + "queued": 10.786668, + "clean_up": 0.04139033704996109, + "create_cpp": 0.058571700006723404, + "file_setup": 0.04377163201570511, + "compile_cpp": 4.7014184929430485, + "create_r1cs": 0.030283328145742416, + "save_results": 0.0046038031578063965, + "get_r1cs_info": 0.0007254183292388916, + "groth16_setup": 1.5263193063437939, + "export_verification_key": 1.5056473389267921, + "download_trusted_setup_file": 0.0030246786773204803, + "solidity_contract_generation": 1.442214511334896 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.027Z", - "perform_verify": false, + "circuit_id": "ac715658-6a8a-4367-bd75-0a424786e519", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.239Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.726384S", - "compute_time_sec": 0.726384, - "compute_times": { - "prove": 0.6857492360286415, - "total": 0.7852012270595878, - "queued": 40.629769, - "clean_up": 0.016240264056250453, - "file_setup": 0.028827585047110915, - "save_results": 0.0025640518870204687 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.180312S", + "compute_time_sec": 8.180312, + "compute_times": { + "total": 8.186462632846087, + "queued": 10.326997, + "clean_up": 0.045027026906609535, + "create_cpp": 0.0433749882504344, + "file_setup": 0.03141862200573087, + "compile_cpp": 4.435339014977217, + "create_r1cs": 0.013826461043208838, + "save_results": 0.0033798501826822758, + "get_r1cs_info": 0.00041944393888115883, + "groth16_setup": 1.224611712154001, + "export_verification_key": 1.2071821950376034, + "download_trusted_setup_file": 0.0012525338679552078, + "solidity_contract_generation": 1.1802184996195138 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.006Z", - "perform_verify": false, + "circuit_id": "603b8de8-6f35-4ec2-8d14-ef2aa169d207", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.217Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119931S", - "compute_time_sec": 0.119931, - "compute_times": { - "prove": 0.09887892508413643, - "total": 0.12549577211029828, - "queued": 40.552476, - "clean_up": 0.007899258052930236, - "file_setup": 0.016978575964458287, - "save_results": 0.0013200589455664158 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.303741S", + "compute_time_sec": 9.303741, + "compute_times": { + "total": 9.31076579540968, + "queued": 0.510621, + "clean_up": 0.061482787132263184, + "create_cpp": 0.05447719618678093, + "file_setup": 0.031512293964624405, + "compile_cpp": 4.7843478843569756, + "create_r1cs": 0.025975871831178665, + "save_results": 0.03923590108752251, + "get_r1cs_info": 0.0007070451974868774, + "groth16_setup": 1.4105089977383614, + "export_verification_key": 1.4856252260506153, + "download_trusted_setup_file": 0.0032596364617347717, + "solidity_contract_generation": 1.4127150252461433 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.963Z", - "perform_verify": false, + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.172Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308239S", - "compute_time_sec": 0.308239, - "compute_times": { - "prove": 0.2867297289194539, - "total": 0.314586246968247, - "queued": 39.622031, - "clean_up": 0.004962102975696325, - "file_setup": 0.0206260799895972, - "save_results": 0.001943530049175024 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.028980S", + "compute_time_sec": 8.02898, + "compute_times": { + "total": 8.035278150811791, + "queued": 0.908491, + "clean_up": 0.01962502161040902, + "create_cpp": 0.04339481005445123, + "file_setup": 0.032647415064275265, + "compile_cpp": 4.4359240545891225, + "create_r1cs": 0.015615029260516167, + "save_results": 0.005886566359549761, + "get_r1cs_info": 0.000441152136772871, + "groth16_setup": 1.1131845200434327, + "export_verification_key": 1.1628971919417381, + "download_trusted_setup_file": 0.0014497428201138973, + "solidity_contract_generation": 1.2036623698659241 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.909Z", - "perform_verify": false, + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:05.009Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.370286S", - "compute_time_sec": 0.370286, - "compute_times": { - "prove": 0.34130737208761275, - "total": 0.376522185979411, - "queued": 38.669829, - "clean_up": 0.008471829001791775, - "file_setup": 0.02454887900967151, - "save_results": 0.001779031939804554 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.126213S", + "compute_time_sec": 8.126213, + "compute_times": { + "total": 8.132407675962895, + "queued": 41.945655, + "clean_up": 0.007584667764604092, + "create_cpp": 0.042764997109770775, + "file_setup": 0.026120834983885288, + "compile_cpp": 4.428840433247387, + "create_r1cs": 0.014064936898648739, + "save_results": 0.002591380849480629, + "get_r1cs_info": 0.0004473528824746609, + "groth16_setup": 1.2245488930493593, + "export_verification_key": 1.2121927668340504, + "download_trusted_setup_file": 0.0014441171661019325, + "solidity_contract_generation": 1.1712806271389127 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.896Z", - "perform_verify": false, + "circuit_id": "5af7d3a0-7d37-40fd-ae43-f0c0534c2abb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.989Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174815S", - "compute_time_sec": 0.174815, - "compute_times": { - "prove": 0.0778409120393917, - "total": 0.18085870705544949, - "queued": 42.873267, - "clean_up": 0.08188443898689002, - "file_setup": 0.018623532028868794, - "save_results": 0.0020236889831721783 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.121498S", + "compute_time_sec": 10.121498, + "compute_times": { + "total": 10.192187146283686, + "queued": 32.362941, + "clean_up": 0.007370655424892902, + "create_cpp": 0.05348123889416456, + "file_setup": 0.09328565560281277, + "compile_cpp": 4.610476811416447, + "create_r1cs": 0.013877511024475098, + "save_results": 0.008401993662118912, + "get_r1cs_info": 0.00035433657467365265, + "groth16_setup": 1.2056698258966208, + "export_verification_key": 1.309598419815302, + "download_trusted_setup_file": 1.6407124130055308, + "solidity_contract_generation": 1.2472198996692896 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.873Z", - "perform_verify": false, + "circuit_id": "16c04ef9-9cca-4ec8-9970-4f731c4c14b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.951Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129168S", - "compute_time_sec": 0.129168, - "compute_times": { - "prove": 0.11140450404491276, - "total": 11.33851779595716, - "queued": 36.762873, - "clean_up": 0.0029776159790344536, - "file_setup": 11.211716797959525, - "save_results": 0.001344212971162051 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M12.708449S", + "compute_time_sec": 12.708449, + "compute_times": { + "total": 12.780335546471179, + "queued": 31.606686, + "clean_up": 0.00712052546441555, + "create_cpp": 0.05351158231496811, + "file_setup": 0.10181075800210238, + "compile_cpp": 4.557366239838302, + "create_r1cs": 0.014364761300384998, + "save_results": 0.006636504083871841, + "get_r1cs_info": 0.0003865128383040428, + "groth16_setup": 1.2839274490252137, + "export_verification_key": 1.1864824369549751, + "download_trusted_setup_file": 4.378982369787991, + "solidity_contract_generation": 1.1881536152213812 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.817Z", - "perform_verify": false, + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.838Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132006S", - "compute_time_sec": 0.132006, - "compute_times": { - "prove": 0.080011370126158, - "total": 0.13885680097155273, - "queued": 39.970335, - "clean_up": 0.01748181483708322, - "file_setup": 0.03901624190621078, - "save_results": 0.0019160669762641191 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M07.949829S", + "compute_time_sec": 7.949829, + "compute_times": { + "total": 7.955922733992338, + "queued": 31.787652, + "clean_up": 0.007068471051752567, + "create_cpp": 0.04410888580605388, + "file_setup": 0.03530481783673167, + "compile_cpp": 4.332128805108368, + "create_r1cs": 0.013425733894109726, + "save_results": 0.002837574575096369, + "get_r1cs_info": 0.0003893752582371235, + "groth16_setup": 1.161221300251782, + "export_verification_key": 1.1779537368565798, + "download_trusted_setup_file": 0.0012618638575077057, + "solidity_contract_generation": 1.1798813971690834 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.806Z", - "perform_verify": false, + "circuit_id": "95af3cd1-0e03-4eaa-8c53-9ebfa33bf8a0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.781Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.193712S", - "compute_time_sec": 0.193712, - "compute_times": { - "prove": 0.17043351900065318, - "total": 10.978355454979464, - "queued": 35.874311, - "clean_up": 0.003109109995421022, - "file_setup": 10.787516613025218, - "save_results": 0.001674333994742483 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.360336S", + "compute_time_sec": 9.360336, + "compute_times": { + "total": 9.367515902966261, + "queued": 31.558274, + "clean_up": 0.010363537818193436, + "create_cpp": 0.05697645619511604, + "file_setup": 0.03041290119290352, + "compile_cpp": 4.814989410340786, + "create_r1cs": 0.027097947895526886, + "save_results": 0.004793565720319748, + "get_r1cs_info": 0.0005631856620311737, + "groth16_setup": 1.5725701451301575, + "export_verification_key": 1.4042510092258453, + "download_trusted_setup_file": 0.001781608909368515, + "solidity_contract_generation": 1.4431796036660671 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.774Z", - "perform_verify": false, + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.694Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.205276S", - "compute_time_sec": 0.205276, - "compute_times": { - "prove": 0.186850864905864, - "total": 11.348314038012177, - "queued": 35.925496, - "clean_up": 0.0035353717394173145, - "file_setup": 11.152006654068828, - "save_results": 0.0015276442281901836 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.063800S", + "compute_time_sec": 8.0638, + "compute_times": { + "total": 8.0698571940884, + "queued": 23.279182, + "clean_up": 0.041817264165729284, + "create_cpp": 0.042918319813907146, + "file_setup": 0.027425960171967745, + "compile_cpp": 4.428783264011145, + "create_r1cs": 0.013796785846352577, + "save_results": 0.003706465009599924, + "get_r1cs_info": 0.00041563110426068306, + "groth16_setup": 1.1387999886646867, + "export_verification_key": 1.1761264819651842, + "download_trusted_setup_file": 0.0012755142524838448, + "solidity_contract_generation": 1.194381969049573 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.713Z", - "perform_verify": false, + "circuit_id": "8787776b-1d4e-4f64-b163-afbb70e6b767", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.635Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.165272S", - "compute_time_sec": 0.165272, - "compute_times": { - "prove": 0.14217190898489207, - "total": 0.17151216696947813, - "queued": 38.034718, - "clean_up": 0.003942857962101698, - "file_setup": 0.023223162977956235, - "save_results": 0.0017018220387399197 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.481420S", + "compute_time_sec": 9.48142, + "compute_times": { + "total": 9.488476019352674, + "queued": 21.172934, + "clean_up": 0.05146057903766632, + "create_cpp": 0.060663893818855286, + "file_setup": 0.04430835321545601, + "compile_cpp": 4.838594596832991, + "create_r1cs": 0.020446740090847015, + "save_results": 0.004841934889554977, + "get_r1cs_info": 0.0005115754902362823, + "groth16_setup": 1.4131469950079918, + "export_verification_key": 1.5755452923476696, + "download_trusted_setup_file": 0.0021246708929538727, + "solidity_contract_generation": 1.4762532263994217 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.692Z", - "perform_verify": false, + "circuit_id": "48bb95d9-c534-4fe7-b124-425742bc9921", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.594Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102217S", - "compute_time_sec": 0.102217, - "compute_times": { - "prove": 0.07969108188990504, - "total": 0.10789976501837373, - "queued": 38.13202, - "clean_up": 0.004012368037365377, - "file_setup": 0.022230835049413145, - "save_results": 0.0015486960764974356 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.162530S", + "compute_time_sec": 8.16253, + "compute_times": { + "total": 8.168789067771286, + "queued": 12.596802, + "clean_up": 0.03938836511224508, + "create_cpp": 0.044962076004594564, + "file_setup": 0.03627823106944561, + "compile_cpp": 4.3931147661060095, + "create_r1cs": 0.013748648576438427, + "save_results": 0.0029903058893978596, + "get_r1cs_info": 0.0004170541651546955, + "groth16_setup": 1.2192720943130553, + "export_verification_key": 1.1968067497946322, + "download_trusted_setup_file": 0.001256425864994526, + "solidity_contract_generation": 1.2201471300795674 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.644Z", - "perform_verify": false, + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.539Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.117661S", - "compute_time_sec": 1.117661, - "compute_times": { - "prove": 1.0916141049237922, - "total": 1.125104735023342, - "queued": 31.725794, - "clean_up": 0.006913283024914563, - "file_setup": 0.02388083899859339, - "save_results": 0.002335774013772607 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.395259S", + "compute_time_sec": 9.395259, + "compute_times": { + "total": 9.40173276886344, + "queued": 10.832412, + "clean_up": 0.036699261516332626, + "create_cpp": 0.055065736174583435, + "file_setup": 0.03588276728987694, + "compile_cpp": 4.756860479712486, + "create_r1cs": 0.02753232792019844, + "save_results": 0.004547979682683945, + "get_r1cs_info": 0.0007234290242195129, + "groth16_setup": 1.5721957311034203, + "export_verification_key": 1.4162963964045048, + "download_trusted_setup_file": 0.003074031323194504, + "solidity_contract_generation": 1.4920402988791466 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.593Z", - "perform_verify": false, + "circuit_id": "36dd6025-4eb3-4d05-8f90-f2c3f3a7a535", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.447Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.977064S", - "compute_time_sec": 0.977064, - "compute_times": { - "prove": 0.9557226439937949, - "total": 0.9839210119098425, - "queued": 35.112241, - "clean_up": 0.00471810600720346, - "file_setup": 0.02103408006951213, - "save_results": 0.00203876500017941 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.285888S", + "compute_time_sec": 9.285888, + "compute_times": { + "total": 9.293334130197763, + "queued": 0.553921, + "clean_up": 0.14576196298003197, + "create_cpp": 0.0688214860856533, + "file_setup": 0.03694232553243637, + "compile_cpp": 4.733128450810909, + "create_r1cs": 0.026510365307331085, + "save_results": 0.015769515186548233, + "get_r1cs_info": 0.0007566735148429871, + "groth16_setup": 1.4665097445249557, + "export_verification_key": 1.3843789175152779, + "download_trusted_setup_file": 0.00330163910984993, + "solidity_contract_generation": 1.4105877801775932 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.575Z", - "perform_verify": false, + "circuit_id": "5a788aec-2f48-426a-805f-cea70c7b517e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.422Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375914S", - "compute_time_sec": 0.375914, - "compute_times": { - "prove": 0.34089843509718776, - "total": 0.38064429303631186, - "queued": 33.110783, - "clean_up": 0.015058210003189743, - "file_setup": 0.022246263921260834, - "save_results": 0.0021008079638704658 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.132105S", + "compute_time_sec": 8.132105, + "compute_times": { + "total": 8.138365669641644, + "queued": 2.064952, + "clean_up": 0.04502389393746853, + "create_cpp": 0.044666612055152655, + "file_setup": 0.030826924834400415, + "compile_cpp": 4.406796374358237, + "create_r1cs": 0.014510322827845812, + "save_results": 0.006469338666647673, + "get_r1cs_info": 0.00039179716259241104, + "groth16_setup": 1.2137043341062963, + "export_verification_key": 1.1969101303257048, + "download_trusted_setup_file": 0.0014359885826706886, + "solidity_contract_generation": 1.1770805940032005 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.531Z", - "perform_verify": false, + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.705Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.472448S", - "compute_time_sec": 0.472448, - "compute_times": { - "prove": 0.4435087050078437, - "total": 0.47790782095398754, - "queued": 30.700356, - "clean_up": 0.012506086030043662, - "file_setup": 0.019921150989830494, - "save_results": 0.0015664849197492003 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.396318S", + "compute_time_sec": 11.396318, + "compute_times": { + "total": 11.470033745281398, + "queued": 31.223842, + "clean_up": 0.00701205525547266, + "create_cpp": 0.05382066033780575, + "file_setup": 1.4752762140706182, + "compile_cpp": 4.674427920952439, + "create_r1cs": 0.014601892791688442, + "save_results": 0.006885666400194168, + "get_r1cs_info": 0.000477752648293972, + "groth16_setup": 1.1715044034644961, + "export_verification_key": 1.2684592045843601, + "download_trusted_setup_file": 1.6390948193147779, + "solidity_contract_generation": 1.1555112060159445 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.492Z", - "perform_verify": false, + "circuit_id": "b43215d9-9873-4780-852e-7061f688bc52", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.562Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087612S", - "compute_time_sec": 0.087612, - "compute_times": { - "prove": 0.06967927806545049, - "total": 0.092331736930646, - "queued": 29.991506, - "clean_up": 0.0028922349447384477, - "file_setup": 0.01781347393989563, - "save_results": 0.0015894660027697682 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.443735S", + "compute_time_sec": 9.443735, + "compute_times": { + "total": 9.450845569372177, + "queued": 29.745647, + "clean_up": 0.02927279844880104, + "create_cpp": 0.05816115811467171, + "file_setup": 0.15777237713336945, + "compile_cpp": 4.784576293081045, + "create_r1cs": 0.028225980699062347, + "save_results": 0.004189185798168182, + "get_r1cs_info": 0.0007221847772598267, + "groth16_setup": 1.4950053170323372, + "export_verification_key": 1.4608619846403599, + "download_trusted_setup_file": 0.0030181407928466797, + "solidity_contract_generation": 1.428341083228588 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.474Z", - "perform_verify": false, + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.557Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112744S", - "compute_time_sec": 0.112744, - "compute_times": { - "prove": 0.09469883295241743, - "total": 0.11807810491882265, - "queued": 29.972988, - "clean_up": 0.0033285249955952168, - "file_setup": 0.017642873106524348, - "save_results": 0.002044467953965068 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.678823S", + "compute_time_sec": 10.678823, + "compute_times": { + "total": 10.751442176289856, + "queued": 28.193622, + "clean_up": 0.007087317295372486, + "create_cpp": 0.0551311019808054, + "file_setup": 0.47634816635400057, + "compile_cpp": 4.4943006709218025, + "create_r1cs": 0.015030437149107456, + "save_results": 0.006794212386012077, + "get_r1cs_info": 0.0004126187413930893, + "groth16_setup": 1.2948075635358691, + "export_verification_key": 1.2821088591590524, + "download_trusted_setup_file": 1.9244082383811474, + "solidity_contract_generation": 1.1933906180784106 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.387Z", - "perform_verify": false, + "circuit_id": "065e17c3-c2f4-43dd-bfb4-25d47eb233c3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.538Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097410S", - "compute_time_sec": 0.09741, - "compute_times": { - "prove": 0.07845993107184768, - "total": 0.10426705703139305, - "queued": 30.149625, - "clean_up": 0.003105517942458391, - "file_setup": 0.02031002496369183, - "save_results": 0.0018116270657628775 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.414766S", + "compute_time_sec": 8.414766, + "compute_times": { + "total": 8.420880552381277, + "queued": 29.111535, + "clean_up": 0.007978992071002722, + "create_cpp": 0.04333283565938473, + "file_setup": 0.5263300491496921, + "compile_cpp": 4.3615459580905735, + "create_r1cs": 0.01324701588600874, + "save_results": 0.00261990400031209, + "get_r1cs_info": 0.000387819018214941, + "groth16_setup": 1.1325635826215148, + "export_verification_key": 1.1708158743567765, + "download_trusted_setup_file": 0.0012339763343334198, + "solidity_contract_generation": 1.1604830459691584 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.386Z", - "perform_verify": false, + "circuit_id": "781e94db-ed81-4fd0-9343-6c793677ff70", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.499Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103245S", - "compute_time_sec": 0.103245, - "compute_times": { - "prove": 0.0779562909156084, - "total": 0.10882041102740914, - "queued": 29.333339, - "clean_up": 0.00295620399992913, - "file_setup": 0.026116034016013145, - "save_results": 0.0014624170726165175 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.358733S", + "compute_time_sec": 9.358733, + "compute_times": { + "total": 9.365748152136803, + "queued": 21.408702, + "clean_up": 0.011520247906446457, + "create_cpp": 0.06019660457968712, + "file_setup": 0.10577539727091789, + "compile_cpp": 4.703875727951527, + "create_r1cs": 0.02623022347688675, + "save_results": 0.004578210413455963, + "get_r1cs_info": 0.0007093213498592377, + "groth16_setup": 1.4257720410823822, + "export_verification_key": 1.4767277836799622, + "download_trusted_setup_file": 0.0030381716787815094, + "solidity_contract_generation": 1.546669363975525 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.380Z", - "perform_verify": false, + "circuit_id": "65769b35-c9e4-4af7-8c82-06905a3ea64a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.485Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.384743S", - "compute_time_sec": 0.384743, - "compute_times": { - "prove": 0.3528827680274844, - "total": 0.3893050210317597, - "queued": 29.028812, - "clean_up": 0.017584193032234907, - "file_setup": 0.016878271009773016, - "save_results": 0.0016379220178350806 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.123128S", + "compute_time_sec": 8.123128, + "compute_times": { + "total": 8.129186652600765, + "queued": 21.355433, + "clean_up": 0.007306267973035574, + "create_cpp": 0.043123030103743076, + "file_setup": 0.10240558395162225, + "compile_cpp": 4.392980380915105, + "create_r1cs": 0.013700432144105434, + "save_results": 0.002628076821565628, + "get_r1cs_info": 0.0003788350149989128, + "groth16_setup": 1.203370461706072, + "export_verification_key": 1.19163934327662, + "download_trusted_setup_file": 0.001252820249646902, + "solidity_contract_generation": 1.1700899167917669 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.286Z", - "perform_verify": false, + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.322Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.382096S", - "compute_time_sec": 0.382096, - "compute_times": { - "prove": 0.35213211202062666, - "total": 0.3891321790870279, - "queued": 29.096306, - "clean_up": 0.014389456948265433, - "file_setup": 0.02016678685322404, - "save_results": 0.00188663718290627 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.135577S", + "compute_time_sec": 8.135577, + "compute_times": { + "total": 8.14212649827823, + "queued": 11.618563, + "clean_up": 0.008815570268779993, + "create_cpp": 0.04607208725064993, + "file_setup": 0.06307885982096195, + "compile_cpp": 4.452890960033983, + "create_r1cs": 0.01411517197266221, + "save_results": 0.0035643167793750763, + "get_r1cs_info": 0.0005286457017064095, + "groth16_setup": 1.2346330340951681, + "export_verification_key": 1.1526859607547522, + "download_trusted_setup_file": 0.0017918283119797707, + "solidity_contract_generation": 1.163586282171309 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.248Z", - "perform_verify": false, + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.166Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.623385S", - "compute_time_sec": 0.623385, - "compute_times": { - "prove": 0.6039510099217296, - "total": 0.6293552990537137, - "queued": 27.786781, - "clean_up": 0.0037962039932608604, - "file_setup": 0.01944179111160338, - "save_results": 0.0017109769396483898 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.112566S", + "compute_time_sec": 10.112566, + "compute_times": { + "total": 10.12166041508317, + "queued": 10.601842, + "clean_up": 0.025991924107074738, + "create_cpp": 0.059982024133205414, + "file_setup": 0.8414755500853062, + "compile_cpp": 4.779291275888681, + "create_r1cs": 0.03729795664548874, + "save_results": 0.004680760204792023, + "get_r1cs_info": 0.0004007294774055481, + "groth16_setup": 1.4218801073729992, + "export_verification_key": 1.5054523050785065, + "download_trusted_setup_file": 0.0012249797582626343, + "solidity_contract_generation": 1.4434016197919846 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.228Z", - "perform_verify": false, + "circuit_id": "fb5b8145-6c9c-47cf-b43d-a0d0a8d9033e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:07.863Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.470183S", - "compute_time_sec": 0.470183, - "compute_times": { - "prove": 0.4347335551865399, - "total": 0.47685516392812133, - "queued": 26.623268, - "clean_up": 0.017949641915038228, - "file_setup": 0.021318417973816395, - "save_results": 0.0024754919577389956 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.798840S", + "compute_time_sec": 9.79884, + "compute_times": { + "total": 9.805086587090045, + "queued": 0.794609, + "clean_up": 0.017840934917330742, + "create_cpp": 0.04466830240562558, + "file_setup": 0.03632312174886465, + "compile_cpp": 4.46386236185208, + "create_r1cs": 0.013613509014248848, + "save_results": 0.0058236150071024895, + "get_r1cs_info": 0.00040324777364730835, + "groth16_setup": 1.1662053586915135, + "export_verification_key": 1.1957588559016585, + "download_trusted_setup_file": 1.6592066353186965, + "solidity_contract_generation": 1.2010036744177341 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.128Z", - "perform_verify": false, + "circuit_id": "68d462ae-a06c-4a0c-a324-f277e9a295cb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:07.851Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.523158S", - "compute_time_sec": 0.523158, - "compute_times": { - "prove": 0.49819166213274, - "total": 0.5295807488728315, - "queued": 25.466882, - "clean_up": 0.007454287027940154, - "file_setup": 0.02171924593858421, - "save_results": 0.0017853768076747656 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.286921S", + "compute_time_sec": 9.286921, + "compute_times": { + "total": 9.294204972684383, + "queued": 0.52687, + "clean_up": 0.037755388766527176, + "create_cpp": 0.05874794349074364, + "file_setup": 0.049215640872716904, + "compile_cpp": 4.828461483120918, + "create_r1cs": 0.027856364846229553, + "save_results": 0.0162334144115448, + "get_r1cs_info": 0.000544525682926178, + "groth16_setup": 1.4224261231720448, + "export_verification_key": 1.4274491891264915, + "download_trusted_setup_file": 0.0022099651396274567, + "solidity_contract_generation": 1.422630164772272 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.091Z", - "perform_verify": false, + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.378Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.286944S", - "compute_time_sec": 0.286944, - "compute_times": { - "prove": 0.2631158559815958, - "total": 0.2923560020281002, - "queued": 28.66412, - "clean_up": 0.008188333013094962, - "file_setup": 0.019067034008912742, - "save_results": 0.0016677940730005503 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.414659S", + "compute_time_sec": 10.414659, + "compute_times": { + "total": 10.421586342155933, + "queued": 36.45805, + "clean_up": 1.018418900668621, + "create_cpp": 0.09886237978935242, + "file_setup": 0.032557349652051926, + "compile_cpp": 4.994046054780483, + "create_r1cs": 0.023644402623176575, + "save_results": 0.004409823566675186, + "get_r1cs_info": 0.0003830455243587494, + "groth16_setup": 1.3954695612192154, + "export_verification_key": 1.3882874809205532, + "download_trusted_setup_file": 0.00124397873878479, + "solidity_contract_generation": 1.4636627808213234 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.082Z", - "perform_verify": false, + "circuit_id": "6281da35-04b6-4277-97cd-d8be981166cb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.292Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.458130S", - "compute_time_sec": 0.45813, - "compute_times": { - "prove": 0.42354415403679013, - "total": 0.4653686359524727, - "queued": 24.323498, - "clean_up": 0.014879923779517412, - "file_setup": 0.024928942089900374, - "save_results": 0.0015406690072268248 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M31.514723S", + "compute_time_sec": 31.514723, + "compute_times": { + "total": 31.587601722218096, + "queued": 34.955081, + "clean_up": 1.3367521865293384, + "create_cpp": 0.0535531360656023, + "file_setup": 0.09539989102631807, + "compile_cpp": 4.5397063894197345, + "create_r1cs": 0.015268071554601192, + "save_results": 0.007586983032524586, + "get_r1cs_info": 0.000410398468375206, + "groth16_setup": 1.1636218382045627, + "export_verification_key": 1.1995829408988357, + "download_trusted_setup_file": 21.99695172160864, + "solidity_contract_generation": 1.1782631734386086 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.998Z", - "perform_verify": false, + "circuit_id": "f740324d-25e6-4bd5-85ba-18d206130979", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.196Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128011S", - "compute_time_sec": 0.128011, - "compute_times": { - "prove": 0.09206298098433763, - "total": 0.13274087803438306, - "queued": 28.63419, - "clean_up": 0.021465381956659257, - "file_setup": 0.017213757033459842, - "save_results": 0.0016593720065429807 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.494207S", + "compute_time_sec": 8.494207, + "compute_times": { + "total": 8.500656279735267, + "queued": 35.091963, + "clean_up": 0.12053109798580408, + "create_cpp": 0.045444861985743046, + "file_setup": 0.026300867088139057, + "compile_cpp": 4.599759000353515, + "create_r1cs": 0.01557931024581194, + "save_results": 0.006546936929225922, + "get_r1cs_info": 0.00045502185821533203, + "groth16_setup": 1.2972330059856176, + "export_verification_key": 1.164379082620144, + "download_trusted_setup_file": 0.0012656673789024353, + "solidity_contract_generation": 1.2227658918127418 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d9044069-c637-4882-8175-411a96ef391d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.976Z", - "perform_verify": false, + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.185Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125847S", - "compute_time_sec": 0.125847, - "compute_times": { - "prove": 0.10572471795603633, - "total": 0.1338271670974791, - "queued": 23.56859, - "clean_up": 0.003848722204566002, - "file_setup": 0.02194214309565723, - "save_results": 0.0019167859572917223 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M14.092370S", + "compute_time_sec": 14.09237, + "compute_times": { + "total": 14.170980683527887, + "queued": 33.730977, + "clean_up": 0.6386476065963507, + "create_cpp": 0.05371746979653835, + "file_setup": 0.09453251957893372, + "compile_cpp": 4.719313859008253, + "create_r1cs": 0.014484315179288387, + "save_results": 0.007699191570281982, + "get_r1cs_info": 0.00042401719838380814, + "groth16_setup": 1.2005331106483936, + "export_verification_key": 1.176824883557856, + "download_trusted_setup_file": 5.055020797997713, + "solidity_contract_generation": 1.2048570234328508 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.945Z", - "perform_verify": false, + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.238Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122820S", - "compute_time_sec": 0.12282, - "compute_times": { - "prove": 0.10552407801151276, - "total": 0.12850606301799417, - "queued": 23.571138, - "clean_up": 0.0035990109900012612, - "file_setup": 0.017446335055865347, - "save_results": 0.0015994029818102717 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.065712S", + "compute_time_sec": 10.065712, + "compute_times": { + "total": 10.072701625525951, + "queued": 27.478391, + "clean_up": 0.6220889613032341, + "create_cpp": 0.061540763825178146, + "file_setup": 0.04436195269227028, + "compile_cpp": 4.975892219692469, + "create_r1cs": 0.02939484640955925, + "save_results": 0.004608657211065292, + "get_r1cs_info": 0.0007254332304000854, + "groth16_setup": 1.4860176593065262, + "export_verification_key": 1.4028622955083847, + "download_trusted_setup_file": 0.0030446648597717285, + "solidity_contract_generation": 1.4413307309150696 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.870Z", - "perform_verify": false, + "circuit_id": "5308d35f-7520-4fc4-8002-d12fb7d6c550", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.110Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105198S", - "compute_time_sec": 0.105198, - "compute_times": { - "prove": 0.07883684895932674, - "total": 0.1122406111098826, - "queued": 22.88221, - "clean_up": 0.003977251006290317, - "file_setup": 0.0269186079967767, - "save_results": 0.0020488761365413666 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.034036S", + "compute_time_sec": 9.034036, + "compute_times": { + "total": 9.041137759573758, + "queued": 22.546838, + "clean_up": 0.781280635856092, + "create_cpp": 0.04389587510377169, + "file_setup": 0.02839166857302189, + "compile_cpp": 4.609121230430901, + "create_r1cs": 0.014260401017963886, + "save_results": 0.002448432147502899, + "get_r1cs_info": 0.00035415682941675186, + "groth16_setup": 1.1984568303450942, + "export_verification_key": 1.1906320005655289, + "download_trusted_setup_file": 0.0012082979083061218, + "solidity_contract_generation": 1.1706976247951388 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.855Z", - "perform_verify": false, + "circuit_id": "8edd4c5c-3482-4dd0-8158-916fbf1ec8ba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.009Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375989S", - "compute_time_sec": 0.375989, - "compute_times": { - "prove": 0.35955213801935315, - "total": 0.38039617508184165, - "queued": 22.616587, - "clean_up": 0.003521032049320638, - "file_setup": 0.015475824940949678, - "save_results": 0.0015010939678177238 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.819879S", + "compute_time_sec": 9.819879, + "compute_times": { + "total": 9.826730519533157, + "queued": 16.821564, + "clean_up": 0.2898540087044239, + "create_cpp": 0.060190506279468536, + "file_setup": 0.03807961195707321, + "compile_cpp": 5.03364010155201, + "create_r1cs": 0.03027663379907608, + "save_results": 0.0042372532188892365, + "get_r1cs_info": 0.0007306970655918121, + "groth16_setup": 1.5062590315937996, + "export_verification_key": 1.459183730185032, + "download_trusted_setup_file": 0.0030453503131866455, + "solidity_contract_generation": 1.4005590714514256 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.839Z", - "perform_verify": false, + "circuit_id": "1e4069dc-4c01-4447-9db2-bad54289e388", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112413S", - "compute_time_sec": 0.112413, - "compute_times": { - "prove": 0.09385650302283466, - "total": 0.11931004805956036, - "queued": 23.85771, - "clean_up": 0.0034119969932362437, - "file_setup": 0.020241676014848053, - "save_results": 0.0014685370260849595 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.228127S", + "compute_time_sec": 8.228127, + "compute_times": { + "total": 8.235012276098132, + "queued": 11.71663, + "clean_up": 0.07664227951318026, + "create_cpp": 0.04467032477259636, + "file_setup": 0.026521790772676468, + "compile_cpp": 4.501883647404611, + "create_r1cs": 0.014303749427199364, + "save_results": 0.006712050177156925, + "get_r1cs_info": 0.00034636445343494415, + "groth16_setup": 1.1887650610879064, + "export_verification_key": 1.212520807981491, + "download_trusted_setup_file": 0.0012264503166079521, + "solidity_contract_generation": 1.1610937099903822 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.714Z", - "perform_verify": false, + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.757Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.303833S", - "compute_time_sec": 0.303833, - "compute_times": { - "prove": 0.27441725484095514, - "total": 0.43832587893120944, - "queued": 22.039487, - "clean_up": 0.013608262874186039, - "file_setup": 0.02093623112887144, - "save_results": 0.0018121080938726664 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.778418S", + "compute_time_sec": 8.778418, + "compute_times": { + "total": 8.784422259777784, + "queued": 0.935423, + "clean_up": 0.5511938845738769, + "create_cpp": 0.04414993338286877, + "file_setup": 0.03435874357819557, + "compile_cpp": 4.559329419396818, + "create_r1cs": 0.013913013972342014, + "save_results": 0.007126575335860252, + "get_r1cs_info": 0.00034239422529935837, + "groth16_setup": 1.210776842199266, + "export_verification_key": 1.1730632856488228, + "download_trusted_setup_file": 0.0014064284041523933, + "solidity_contract_generation": 1.1881988616660237 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.706Z", - "perform_verify": false, + "circuit_id": "fc7d7c8f-dcf4-44f5-8477-c97cd73506f3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.672Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.354849S", - "compute_time_sec": 0.354849, - "compute_times": { - "prove": 0.306272565969266, - "total": 0.36076175002381206, - "queued": 21.742685, - "clean_up": 0.031400882988236845, - "file_setup": 0.021054222946986556, - "save_results": 0.001673974096775055 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.321396S", + "compute_time_sec": 10.321396, + "compute_times": { + "total": 10.328352369368076, + "queued": 5.769197, + "clean_up": 0.7530637644231319, + "create_cpp": 0.055472735315561295, + "file_setup": 0.038075871765613556, + "compile_cpp": 4.720469500869513, + "create_r1cs": 0.03408133238554001, + "save_results": 0.0976421944797039, + "get_r1cs_info": 0.000644925981760025, + "groth16_setup": 1.4366725198924541, + "export_verification_key": 1.6893814019858837, + "download_trusted_setup_file": 0.002162136137485504, + "solidity_contract_generation": 1.4998642541468143 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.691Z", - "perform_verify": false, + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-14T17:57:55.647Z", + "num_proofs": 20, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.392543S", - "compute_time_sec": 0.392543, - "compute_times": { - "prove": 0.32281060807872564, - "total": 0.39849924307782203, - "queued": 21.744261, - "clean_up": 0.049071428016759455, - "file_setup": 0.024452029960229993, - "save_results": 0.0017178819980472326 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.426010S", + "compute_time_sec": 9.42601, + "compute_times": { + "total": 9.437843792140484, + "queued": 0.493759, + "clean_up": 0.057791054248809814, + "create_cpp": 0.08009331300854683, + "file_setup": 0.12311352789402008, + "compile_cpp": 4.8931994587183, + "create_r1cs": 0.040594689548015594, + "save_results": 0.013895608484745026, + "get_r1cs_info": 0.0007071755826473236, + "groth16_setup": 1.397422555834055, + "export_verification_key": 1.450899638235569, + "download_trusted_setup_file": 0.0032965317368507385, + "solidity_contract_generation": 1.3762941025197506 + }, + "file_size": 1662684, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.589Z", - "perform_verify": false, + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:46:22.764Z", + "num_proofs": 5, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.171713S", - "compute_time_sec": 0.171713, + "compute_time": "P0DT00H01M56.925440S", + "compute_time_sec": 116.92544, "compute_times": { - "prove": 0.0936721230391413, - "total": 0.17827622988261282, - "queued": 21.124808, - "clean_up": 0.03897871193476021, - "file_setup": 0.038734283996745944, - "save_results": 0.006515543907880783 + "total": 116.93180079571903, + "queued": 0.606416, + "clean_up": 115.11400480102748, + "file_setup": 0.828845551237464, + "nargo_checks": 0.4802310625091195, + "save_results": 0.005098612979054451, + "solidity_contract_generation": 0.5030098343268037 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 5759848, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.567Z", - "perform_verify": false, + "circuit_id": "f2eb3da8-7d12-4163-8b4c-bd04cd49334d", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:39:49.065Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.380783S", - "compute_time_sec": 0.380783, + "compute_time": "P0DT00H00M06.537494S", + "compute_time_sec": 6.537494, "compute_times": { - "prove": 0.34301244595553726, - "total": 0.38707092101685703, - "queued": 20.832537, - "clean_up": 0.0032510189339518547, - "file_setup": 0.038782318006269634, - "save_results": 0.0015539260348305106 + "total": 6.544770289212465, + "queued": 0.524349, + "clean_up": 4.34150518476963, + "file_setup": 1.006766278296709, + "nargo_checks": 0.5691491775214672, + "save_results": 0.014499358832836151, + "solidity_contract_generation": 0.6120997071266174 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 5759848, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.549Z", - "perform_verify": false, + "circuit_id": "67c61291-24b1-4ed7-99dc-fb7d2c362dec", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:40:09.446Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.471394S", - "compute_time_sec": 0.471394, + "compute_time": "P0DT00H00M00.507493S", + "compute_time_sec": 0.507493, "compute_times": { - "prove": 0.44031512807123363, - "total": 0.4763076149392873, - "queued": 20.750492, - "clean_up": 0.004170806030742824, - "file_setup": 0.029659383930265903, - "save_results": 0.0016929719131439924 + "total": 0.5140813617035747, + "queued": 0.477408, + "clean_up": 0.03107771696522832, + "file_setup": 0.035331026185303926, + "nargo_checks": 0.44723919685930014 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.474Z", - "perform_verify": false, + "circuit_id": "3ba5276f-50b2-489f-a5d6-4491b60c398d", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:49.955Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124495S", - "compute_time_sec": 0.124495, + "compute_time": "P0DT00H00M00.843597S", + "compute_time_sec": 0.843597, "compute_times": { - "prove": 0.10073043289594352, - "total": 0.13022281299345195, - "queued": 20.298391, - "clean_up": 0.003909061895683408, - "file_setup": 0.02332677412778139, - "save_results": 0.0017897870857268572 + "total": 0.8497447483241558, + "queued": 0.705808, + "clean_up": 0.35245564859360456, + "file_setup": 0.034467861987650394, + "nargo_checks": 0.462372618727386 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.431Z", - "perform_verify": false, + "circuit_id": "179cc7dc-ff08-4e5e-baea-502fe209dbc8", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:24.606Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223264S", - "compute_time_sec": 0.223264, + "compute_time": "P0DT00H00M00.466730S", + "compute_time_sec": 0.46673, "compute_times": { - "prove": 0.20454663503915071, - "total": 0.22819734294898808, - "queued": 19.992071, - "clean_up": 0.005460212007164955, - "file_setup": 0.016508184024132788, - "save_results": 0.0012988959206268191 + "total": 0.47336474480107427, + "queued": 0.462655, + "clean_up": 0.01973396772518754, + "file_setup": 0.030523537192493677, + "nargo_checks": 0.42268867418169975 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.409Z", - "perform_verify": false, + "circuit_id": "a27a3a89-5c63-4c80-bc26-2e77a2e07051", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:50.191Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.236397S", - "compute_time_sec": 0.236397, + "compute_time": "P0DT00H00M00.473263S", + "compute_time_sec": 0.473263, "compute_times": { - "prove": 0.2126400190172717, - "total": 0.24228776898235083, - "queued": 20.01237, - "clean_up": 0.003821471007540822, - "file_setup": 0.023733722046017647, - "save_results": 0.0016510839341208339 + "total": 0.4781973138451576, + "queued": 0.690682, + "clean_up": 0.009893154725432396, + "file_setup": 0.02923344448208809, + "nargo_checks": 0.43864382058382034 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.344Z", - "perform_verify": false, + "circuit_id": "97d5b9a1-e80f-42dc-a63f-acce27606d70", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:41.691Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.259418S", - "compute_time_sec": 0.259418, + "compute_time": "P0DT00H00M00.668388S", + "compute_time_sec": 0.668388, "compute_times": { - "prove": 0.23506561596877873, - "total": 0.26543588005006313, - "queued": 19.361679, - "clean_up": 0.007562417071312666, - "file_setup": 0.020428013987839222, - "save_results": 0.001966766081750393 + "total": 0.6738973991014063, + "queued": 0.530928, + "clean_up": 0.20331718400120735, + "file_setup": 0.037314246874302626, + "nargo_checks": 0.43269583908841014 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.290Z", - "perform_verify": false, + "circuit_id": "a4cab353-4923-4b1b-a1c2-a24818843dcf", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:35.450Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.515161S", - "compute_time_sec": 0.515161, + "compute_time": "P0DT00H00M00.502202S", + "compute_time_sec": 0.502202, "compute_times": { - "prove": 0.49523238092660904, - "total": 0.5212377090938389, - "queued": 18.933764, - "clean_up": 0.004512671031989157, - "file_setup": 0.01928175101056695, - "save_results": 0.001811992027796805 + "total": 0.508173649199307, + "queued": 0.703038, + "clean_up": 0.009636486880481243, + "file_setup": 0.04673733003437519, + "nargo_checks": 0.45122806541621685 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.256Z", - "perform_verify": false, + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157983S", - "compute_time_sec": 0.157983, + "compute_time": "P0DT00H00M06.821377S", + "compute_time_sec": 6.821377, "compute_times": { - "prove": 0.13088228809647262, - "total": 0.16489004692994058, - "queued": 18.546469, - "clean_up": 0.009672191925346851, - "file_setup": 0.02190026408061385, - "save_results": 0.001803946914151311 + "total": 6.826562466099858, + "queued": 30.605249, + "clean_up": 0.03631652891635895, + "create_cpp": 0.04230261128395796, + "file_setup": 0.03898624051362276, + "compile_cpp": 4.361995664425194, + "create_r1cs": 0.013952208682894707, + "save_results": 0.0029701171442866325, + "get_r1cs_info": 0.0003667334094643593, + "groth16_setup": 1.1385776856914163, + "export_verification_key": 1.189240344800055, + "download_trusted_setup_file": 0.0011938214302062988 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.239Z", - "perform_verify": false, + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.121145S", - "compute_time_sec": 0.121145, + "compute_time": "P0DT00H00M06.876603S", + "compute_time_sec": 6.876603, "compute_times": { - "prove": 0.08225085295271128, - "total": 0.1268888000631705, - "queued": 18.194739, - "clean_up": 0.014004492084495723, - "file_setup": 0.028718804009258747, - "save_results": 0.0015831160126253963 + "total": 6.882667106110603, + "queued": 29.007266, + "clean_up": 0.04546098504215479, + "create_cpp": 0.043475366197526455, + "file_setup": 0.03212927980348468, + "compile_cpp": 4.419587793760002, + "create_r1cs": 0.01546289399266243, + "save_results": 0.002493636216968298, + "get_r1cs_info": 0.00048116687685251236, + "groth16_setup": 1.1517645819112659, + "export_verification_key": 1.1701868688687682, + "download_trusted_setup_file": 0.001243850216269493 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.167Z", - "perform_verify": false, + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.378241S", - "compute_time_sec": 0.378241, + "compute_time": "P0DT00H00M06.924565S", + "compute_time_sec": 6.924565, "compute_times": { - "prove": 0.32446074998006225, - "total": 0.46455645211972296, - "queued": 17.564428, - "clean_up": 0.025895975064486265, - "file_setup": 0.0355614370200783, - "save_results": 0.0018245270475745201 + "total": 6.929660878144205, + "queued": 22.741395, + "clean_up": 0.018933841958642006, + "create_cpp": 0.04256786499172449, + "file_setup": 0.02480014692991972, + "compile_cpp": 4.3917419938370585, + "create_r1cs": 0.013429097831249237, + "save_results": 0.0027808332815766335, + "get_r1cs_info": 0.00034791603684425354, + "groth16_setup": 1.2296617422252893, + "export_verification_key": 1.2036232966929674, + "download_trusted_setup_file": 0.0012051593512296677 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null - }, - { - "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.137Z", - "perform_verify": false, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.527332S", - "compute_time_sec": 0.527332, + "compute_time": "P0DT00H00M06.942825S", + "compute_time_sec": 6.942825, "compute_times": { - "prove": 0.46785091701895, - "total": 0.5323068069992587, - "queued": 17.114249, - "clean_up": 0.04379052110016346, - "file_setup": 0.018304905970580876, - "save_results": 0.0018958799773827195 + "total": 6.949025787878782, + "queued": 21.20654, + "clean_up": 0.031298316083848476, + "create_cpp": 0.04343291139230132, + "file_setup": 0.02724728872999549, + "compile_cpp": 4.45128513360396, + "create_r1cs": 0.013787470292299986, + "save_results": 0.0027786437422037125, + "get_r1cs_info": 0.00040152110159397125, + "groth16_setup": 1.1622737408615649, + "export_verification_key": 1.214866721071303, + "download_trusted_setup_file": 0.001195291057229042 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.101Z", - "perform_verify": false, + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157597S", - "compute_time_sec": 0.157597, + "compute_time": "P0DT00H00M06.780219S", + "compute_time_sec": 6.780219, "compute_times": { - "prove": 0.12255263701081276, - "total": 0.16386522795073688, - "queued": 19.497095, - "clean_up": 0.003113526967354119, - "file_setup": 0.03630416397936642, - "save_results": 0.0015326740685850382 + "total": 6.785887842997909, + "queued": 17.005312, + "clean_up": 0.04605554789304733, + "create_cpp": 0.04327188339084387, + "file_setup": 0.027595113962888718, + "compile_cpp": 4.341672266833484, + "create_r1cs": 0.015188083983957767, + "save_results": 0.0029082708060741425, + "get_r1cs_info": 0.0004408573731780052, + "groth16_setup": 1.1388461524620652, + "export_verification_key": 1.1682334607467055, + "download_trusted_setup_file": 0.0012331167235970497 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.057Z", - "perform_verify": false, + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242588S", - "compute_time_sec": 0.242588, + "compute_time": "P0DT00H00M06.894050S", + "compute_time_sec": 6.89405, "compute_times": { - "prove": 0.20696109696291387, - "total": 0.24818814708851278, - "queued": 16.264806, - "clean_up": 0.003144470974802971, - "file_setup": 0.03611759003251791, - "save_results": 0.0016494940500706434 + "total": 6.900198160205036, + "queued": 15.716837, + "clean_up": 0.008259693160653114, + "create_cpp": 0.04261480597779155, + "file_setup": 0.02665704721584916, + "compile_cpp": 4.348901640623808, + "create_r1cs": 0.014178600162267685, + "save_results": 0.0026379870250821114, + "get_r1cs_info": 0.00040513090789318085, + "groth16_setup": 1.2399181728251278, + "export_verification_key": 1.2150304690003395, + "download_trusted_setup_file": 0.001215549185872078 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.015Z", - "perform_verify": false, + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242412S", - "compute_time_sec": 0.242412, + "compute_time": "P0DT00H00M06.918743S", + "compute_time_sec": 6.918743, "compute_times": { - "prove": 0.16999451199080795, - "total": 0.24800510297063738, - "queued": 15.393279, - "clean_up": 0.05378705798648298, - "file_setup": 0.021581811015494168, - "save_results": 0.0023058250080794096 + "total": 6.924384770914912, + "queued": 8.861907, + "clean_up": 0.00972826313227415, + "create_cpp": 0.04441164992749691, + "file_setup": 0.027338513173162937, + "compile_cpp": 4.443122708238661, + "create_r1cs": 0.014043214730918407, + "save_results": 0.0032253582030534744, + "get_r1cs_info": 0.00039947032928466797, + "groth16_setup": 1.1997679574415088, + "export_verification_key": 1.180700602941215, + "download_trusted_setup_file": 0.0012276563793420792 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.971Z", - "perform_verify": false, + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.973140S", - "compute_time_sec": 0.97314, + "compute_time": "P0DT00H00M06.685175S", + "compute_time_sec": 6.685175, "compute_times": { - "prove": 0.5375044860411435, - "total": 0.9786076380405575, - "queued": 14.685862, - "clean_up": 0.41053569701034576, - "file_setup": 0.02815453300718218, - "save_results": 0.0020460280356928706 + "total": 6.691927400883287, + "queued": 8.196652, + "clean_up": 0.009768068790435791, + "create_cpp": 0.0421549417078495, + "file_setup": 0.026188824325799942, + "compile_cpp": 4.305569048970938, + "create_r1cs": 0.013142664916813374, + "save_results": 0.002773165237158537, + "get_r1cs_info": 0.0003167171962559223, + "groth16_setup": 1.1705206399783492, + "export_verification_key": 1.1197901628911495, + "download_trusted_setup_file": 0.0012216591276228428 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.913Z", - "perform_verify": false, + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.365020S", - "compute_time_sec": 0.36502, + "compute_time": "P0DT00H00M06.844521S", + "compute_time_sec": 6.844521, "compute_times": { - "prove": 0.3317899671383202, - "total": 0.37020347407087684, - "queued": 16.60799, - "clean_up": 0.003273986978456378, - "file_setup": 0.032879116013646126, - "save_results": 0.00186073686927557 + "total": 6.849527047015727, + "queued": 0.748407, + "clean_up": 0.021212157793343067, + "create_cpp": 0.042430317029356956, + "file_setup": 0.028176416642963886, + "compile_cpp": 4.403458681888878, + "create_r1cs": 0.013620416633784771, + "save_results": 0.007373335771262646, + "get_r1cs_info": 0.00034633465111255646, + "groth16_setup": 1.1376929804682732, + "export_verification_key": 1.1933853346854448, + "download_trusted_setup_file": 0.0013576876372098923 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.888Z", - "perform_verify": false, + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.456895S", - "compute_time_sec": 0.456895, + "compute_time": "P0DT00H00M06.784180S", + "compute_time_sec": 6.78418, "compute_times": { - "prove": 0.423072372097522, - "total": 0.46337219700217247, - "queued": 13.632284, - "clean_up": 0.003993527963757515, - "file_setup": 0.03403562190942466, - "save_results": 0.0018623609794303775 + "total": 6.789581563323736, + "queued": 0.480293, + "clean_up": 0.008159313350915909, + "create_cpp": 0.04301437921822071, + "file_setup": 0.03162584872916341, + "compile_cpp": 4.316627806052566, + "create_r1cs": 0.01355265872552991, + "save_results": 0.006111504044383764, + "get_r1cs_info": 0.00033407704904675484, + "groth16_setup": 1.2013251609168947, + "export_verification_key": 1.1670180107466877, + "download_trusted_setup_file": 0.0014280471950769424 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225416, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", - "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_name": "poseidon", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.837Z", - "perform_verify": false, + "date_created": "2024-03-02T21:08:55.369Z", + "num_proofs": 229, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140068S", - "compute_time_sec": 0.140068, + "compute_time": "P0DT00H00M20.064560S", + "compute_time_sec": 20.06456, "compute_times": { - "prove": 0.1145919740665704, - "total": 0.14642110699787736, - "queued": 12.877362, - "clean_up": 0.0042882689740508795, - "file_setup": 0.025636608013883233, - "save_results": 0.0015542889013886452 + "total": 20.07014292757958, + "queued": 0.281108, + "compile": 12.642420304007828, + "clean_up": 5.060501893050969, + "file_setup": 2.2013850677758455, + "save_results": 0.036197442561388016, + "compile_r1cs_and_keygen": 0.12922980543226004 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 30921195, + "uploaded_file_name": "poseidon.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_name": "my-circuit", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.806Z", - "perform_verify": false, + "date_created": "2024-02-28T18:01:02.213Z", + "num_proofs": 2, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.181831S", - "compute_time_sec": 0.181831, + "compute_time": "P0DT00H00M14.157686S", + "compute_time_sec": 14.157686, "compute_times": { - "prove": 0.14706613693851978, - "total": 0.20189034601207823, - "queued": 12.867749, - "clean_up": 0.0034584460081532598, - "file_setup": 0.03571781504433602, - "save_results": 0.0014523779973387718 + "total": 14.164283829275519, + "queued": 0.242197, + "compile": 9.50105039961636, + "clean_up": 2.131474153138697, + "file_setup": 2.504877657163888, + "save_results": 0.007419941946864128, + "compile_r1cs_and_keygen": 0.018980357330292463 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19726986, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.751Z", - "perform_verify": false, + "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:54.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.450066S", - "compute_time_sec": 0.450066, + "compute_time": "P0DT00H00M02.680331S", + "compute_time_sec": 2.680331, "compute_times": { - "prove": 0.4147049420280382, - "total": 0.45607288100291044, - "queued": 11.772521, - "clean_up": 0.007868458982557058, - "file_setup": 0.030776931904256344, - "save_results": 0.0023057740181684494 + "total": 2.6865532309748232, + "queued": 0.278162, + "clean_up": 0.15621905494481325, + "file_setup": 0.07576264115050435, + "create_r1cs": 0.02499393606558442, + "create_wasm": 0.037889659870415926, + "save_results": 0.006284092087298632, + "get_r1cs_info": 0.0003155169542878866, + "groth16_setup": 1.1963414950296283, + "export_verification_key": 1.1868828509468585, + "download_trusted_setup_file": 0.0014421690721064806 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.720Z", - "perform_verify": false, + "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:28.625Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.420386S", - "compute_time_sec": 0.420386, + "compute_time": "P0DT00H00M02.723950S", + "compute_time_sec": 2.72395, "compute_times": { - "prove": 0.3990589149761945, - "total": 0.4270030810730532, - "queued": 10.7278, - "clean_up": 0.005256709060631692, - "file_setup": 0.02061484009027481, - "save_results": 0.001710172975435853 + "total": 2.730448425281793, + "queued": 0.24759, + "clean_up": 0.03860751632601023, + "file_setup": 0.08125918405130506, + "create_r1cs": 0.025404677726328373, + "create_wasm": 0.03741568187251687, + "save_results": 0.007240877952426672, + "get_r1cs_info": 0.00033877836540341377, + "groth16_setup": 1.2571284701116383, + "export_verification_key": 1.2813060129992664, + "download_trusted_setup_file": 0.0013454826548695564 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.707Z", - "perform_verify": false, + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-27T01:57:59.411Z", + "num_proofs": 4, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.142094S", - "compute_time_sec": 0.142094, + "compute_time": "P0DT00H00M36.843744S", + "compute_time_sec": 36.843744, "compute_times": { - "prove": 0.09821043501142412, - "total": 0.14811538497451693, - "queued": 14.851825, - "clean_up": 0.005784207955002785, - "file_setup": 0.04186572507023811, - "save_results": 0.001917139976285398 + "total": 36.91908207698725, + "queued": 0.286679, + "clean_up": 0.03467807709239423, + "create_cpp": 0.7680627549998462, + "file_setup": 0.1394905720371753, + "compile_cpp": 28.152615127852187, + "create_r1cs": 0.34302311204373837, + "save_results": 0.006143820006400347, + "get_r1cs_info": 0.0005576841067522764, + "groth16_setup": 4.3415444530546665, + "export_verification_key": 1.252952174982056, + "download_trusted_setup_file": 1.879397285869345 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3870229, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.630Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-26T02:32:51.263Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.855499S", - "compute_time_sec": 0.855499, + "compute_time": "P0DT00H00M00.040985S", + "compute_time_sec": 0.040985, "compute_times": { - "prove": 0.8245165729895234, - "total": 0.8615315690403804, - "queued": 9.176532, - "clean_up": 0.014629843994043767, - "file_setup": 0.019743680022656918, - "save_results": 0.0022631760220974684 + "total": 0.03328296495601535, + "queued": 0.306452, + "file_setup": 0.02101697097532451, + "create_wasm": 0.011749706929549575 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1015, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.588Z", - "perform_verify": false, + "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-25T21:21:18.316Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.490007S", - "compute_time_sec": 0.490007, + "compute_time": "P0DT00H00M36.116953S", + "compute_time_sec": 36.116953, "compute_times": { - "prove": 0.455899114953354, - "total": 0.49668906279839575, - "queued": 11.871105, - "clean_up": 0.0045558069832623005, - "file_setup": 0.03405331703834236, - "save_results": 0.0018026470206677914 + "total": 36.12258589011617, + "queued": 0.280658, + "clean_up": 0.045256566954776645, + "create_cpp": 0.7550635728985071, + "file_setup": 0.055438351118937135, + "compile_cpp": 27.543986437143758, + "create_r1cs": 0.34856289392337203, + "save_results": 0.005512146046385169, + "get_r1cs_info": 0.0005783189553767443, + "groth16_setup": 4.374077996937558, + "export_verification_key": 1.1806295281276107, + "download_trusted_setup_file": 1.8129089260473847 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3870232, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.542Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-25T21:15:00.721Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.008029S", - "compute_time_sec": 1.008029, + "compute_time": "P0DT00H00M00.153850S", + "compute_time_sec": 0.15385, "compute_times": { - "prove": 0.9685044119833037, - "total": 1.0136986010475084, - "queued": 7.558703, - "clean_up": 0.021701849065721035, - "file_setup": 0.020927226985804737, - "save_results": 0.002168047009035945 + "total": 0.14053412294015288, + "queued": 0.345862, + "file_setup": 0.12803456606343389, + "create_wasm": 0.01188180991448462 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1004, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.490Z", - "perform_verify": false, + "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-22T00:02:35.495Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.576096S", - "compute_time_sec": 0.576096, + "compute_time": "P0DT00H00M08.105806S", + "compute_time_sec": 8.105806, "compute_times": { - "prove": 0.5422158139990643, - "total": 0.5823603679891676, - "queued": 6.353891, - "clean_up": 0.0037581800715997815, - "file_setup": 0.03395645902492106, - "save_results": 0.002097297925502062 + "total": 8.111726151080802, + "queued": 0.299859, + "clean_up": 0.03814816800877452, + "create_cpp": 0.11785020097158849, + "file_setup": 0.07184063596650958, + "compile_cpp": 4.999685499118641, + "create_r1cs": 0.027501144912093878, + "save_results": 0.0056748660281300545, + "get_r1cs_info": 0.0003923040349036455, + "groth16_setup": 1.33484046603553, + "export_verification_key": 1.5138321269769222, + "download_trusted_setup_file": 0.0013768889475613832 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1650685, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.478Z", - "perform_verify": false, + "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-21T23:58:37.180Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.209934S", - "compute_time_sec": 0.209934, + "compute_time": "P0DT00H00M07.050622S", + "compute_time_sec": 7.050622, "compute_times": { - "prove": 0.15358152601402253, - "total": 0.21605274605099112, - "queued": 10.113062, - "clean_up": 0.023381736944429576, - "file_setup": 0.037115994025953114, - "save_results": 0.001614085049368441 + "total": 7.057020629988983, + "queued": 0.29724, + "clean_up": 0.062270441092550755, + "create_cpp": 0.06243468704633415, + "file_setup": 0.07652567396871746, + "compile_cpp": 4.485646587098017, + "create_r1cs": 0.02570242597721517, + "save_results": 0.00595727888867259, + "get_r1cs_info": 0.00039725680835545063, + "groth16_setup": 1.17986157303676, + "export_verification_key": 1.1563023570924997, + "download_trusted_setup_file": 0.0012368990574032068 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.415Z", - "perform_verify": false, + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-16T16:44:06.247Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.591839S", - "compute_time_sec": 0.591839, + "compute_time": "P0DT00H00M35.940220S", + "compute_time_sec": 35.94022, "compute_times": { - "prove": 0.5229394290363416, - "total": 0.5979725319193676, - "queued": 5.154185, - "clean_up": 0.02260146988555789, - "file_setup": 0.05059771193191409, - "save_results": 0.0014608950586989522 + "total": 35.94744881300721, + "queued": 0.255393, + "clean_up": 0.0907127889804542, + "create_cpp": 0.8199345880420879, + "file_setup": 0.08025214297231287, + "compile_cpp": 27.603134420933202, + "create_r1cs": 0.38317175407428294, + "save_results": 0.009111783001571894, + "get_r1cs_info": 0.0010840859031304717, + "groth16_setup": 4.134320180979557, + "export_verification_key": 1.0508651459822431, + "download_trusted_setup_file": 1.7740050770808011 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3869586, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 1, + "num_private_inputs": 4, + "num_public_inputs": 0 }, { - "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.366Z", - "perform_verify": false, + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T19:07:26.262Z", + "num_proofs": 2, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116234S", - "compute_time_sec": 0.116234, + "compute_time": "P0DT00H00M35.144392S", + "compute_time_sec": 35.144392, "compute_times": { - "prove": 0.07700311101507396, - "total": 0.12174052593763918, - "queued": 4.424714, - "clean_up": 0.006362012936733663, - "file_setup": 0.03617248602677137, - "save_results": 0.0017600810388103127 + "total": 35.15089295199141, + "queued": 0.226366, + "clean_up": 0.11753120506182313, + "create_cpp": 0.7529647811315954, + "file_setup": 0.06330146407708526, + "compile_cpp": 28.331635219044983, + "create_r1cs": 0.34842015197500587, + "save_results": 0.010279993992298841, + "get_r1cs_info": 0.0006776847876608372, + "groth16_setup": 4.291510064154863, + "export_verification_key": 1.2317856717854738, + "download_trusted_setup_file": 0.002070905175060034 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3870226, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.357Z", - "perform_verify": false, + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-15T16:46:44.192Z", + "num_proofs": 5, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099418S", - "compute_time_sec": 0.099418, + "compute_time": "P0DT00H00M06.775219S", + "compute_time_sec": 6.775219, "compute_times": { - "prove": 0.07262928795535117, - "total": 0.10508589306846261, - "queued": 3.682512, - "clean_up": 0.003569742082618177, - "file_setup": 0.027104002074338496, - "save_results": 0.0014839039649814367 + "total": 6.786237360094674, + "queued": 0.306632, + "clean_up": 0.02926708501763642, + "create_cpp": 0.06894711602944881, + "file_setup": 0.06364756193943322, + "compile_cpp": 4.536427660030313, + "create_r1cs": 0.0257944610202685, + "save_results": 0.008142217062413692, + "get_r1cs_info": 0.000770728918723762, + "groth16_setup": 1.0133657020051032, + "export_verification_key": 1.0354817470069975, + "download_trusted_setup_file": 0.003386533004231751 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 232969, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.309Z", - "perform_verify": false, + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-15T16:44:21.936Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138870S", - "compute_time_sec": 0.13887, + "compute_time": "P0DT00H00M07.525882S", + "compute_time_sec": 7.525882, "compute_times": { - "prove": 0.0766439950093627, - "total": 0.14458074199501425, - "queued": 2.903833, - "clean_up": 0.02824126894120127, - "file_setup": 0.03780686797108501, - "save_results": 0.0015501140151172876 + "total": 7.532384330872446, + "queued": 0.273291, + "clean_up": 0.41135954577475786, + "create_cpp": 0.044112610165029764, + "file_setup": 0.05311372969299555, + "compile_cpp": 4.545667007099837, + "create_r1cs": 0.021503231953829527, + "save_results": 0.023626559413969517, + "get_r1cs_info": 0.0004302137531340122, + "groth16_setup": 1.2149698357097805, + "export_verification_key": 1.2118688928894699, + "download_trusted_setup_file": 0.004898259416222572 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 232949, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.243Z", - "perform_verify": false, + "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:21:42.338Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132945S", - "compute_time_sec": 0.132945, + "compute_time": "P0DT00H00M35.218699S", + "compute_time_sec": 35.218699, "compute_times": { - "prove": 0.10661404114216566, - "total": 0.14006488304585218, - "queued": 7.128484, - "clean_up": 0.005756359081715345, - "file_setup": 0.0256589378695935, - "save_results": 0.0016340878792107105 + "total": 35.2277638950618, + "queued": 0.317566, + "clean_up": 0.1369406400481239, + "create_cpp": 0.8040473599685356, + "file_setup": 0.1467569509986788, + "compile_cpp": 27.42731417901814, + "create_r1cs": 0.37680110498331487, + "save_results": 0.008219165029004216, + "get_r1cs_info": 0.0012246599653735757, + "groth16_setup": 4.11037651298102, + "export_verification_key": 1.009748816024512, + "download_trusted_setup_file": 1.2047668669838458 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.216Z", - "perform_verify": false, + "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:20:47.501Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097658S", - "compute_time_sec": 0.097658, + "compute_time": "P0DT00H00M34.701699S", + "compute_time_sec": 34.701699, "compute_times": { - "prove": 0.07415288093034178, - "total": 0.10346396896056831, - "queued": 2.235442, - "clean_up": 0.003746030037291348, - "file_setup": 0.023523699957877398, - "save_results": 0.001744512002915144 + "total": 34.707892696838826, + "queued": 0.318933, + "clean_up": 0.09660972375422716, + "create_cpp": 0.7858420582488179, + "file_setup": 0.062256335746496916, + "compile_cpp": 27.987545497715473, + "create_r1cs": 0.3427793183363974, + "save_results": 0.006912626326084137, + "get_r1cs_info": 0.0007053948938846588, + "groth16_setup": 4.240857229102403, + "export_verification_key": 1.1814902885816991, + "download_trusted_setup_file": 0.002157846000045538 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.197Z", - "perform_verify": false, + "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-15T00:37:02.228Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126620S", - "compute_time_sec": 0.12662, + "compute_time": "P0DT00H00M55.791705S", + "compute_time_sec": 55.791705, "compute_times": { - "prove": 0.08383059408515692, - "total": 0.13342511001974344, - "queued": 2.054465, - "clean_up": 0.017144297948107123, - "file_setup": 0.030395573005080223, - "save_results": 0.001586398109793663 + "total": 55.797921964898705, + "queued": 0.257892, + "clean_up": 0.07545234775170684, + "create_cpp": 1.1982138170860708, + "file_setup": 0.0613596779294312, + "compile_cpp": 36.85164702497423, + "create_r1cs": 0.7978045740164816, + "save_results": 0.006434123031795025, + "get_r1cs_info": 0.002160165924578905, + "groth16_setup": 15.61639252398163, + "export_verification_key": 1.167371460236609, + "download_trusted_setup_file": 0.020440288819372654 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7540832, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.091Z", - "perform_verify": false, + "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:58:52.084Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135631S", - "compute_time_sec": 0.135631, + "compute_time": "P0DT00H00M56.901539S", + "compute_time_sec": 56.901539, "compute_times": { - "prove": 0.0823628450743854, - "total": 0.14176014298573136, - "queued": 1.539206, - "clean_up": 0.017501453985460103, - "file_setup": 0.03982250590343028, - "save_results": 0.0016014629509299994 + "total": 56.907790740951896, + "queued": 0.286676, + "clean_up": 0.1532127452082932, + "create_cpp": 1.1961525329388678, + "file_setup": 0.05804666178300977, + "compile_cpp": 38.085547543130815, + "create_r1cs": 0.8190577877685428, + "save_results": 0.010267478879541159, + "get_r1cs_info": 0.002185516059398651, + "groth16_setup": 15.381996811367571, + "export_verification_key": 1.1801622677594423, + "download_trusted_setup_file": 0.020589394960552454 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7540785, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.078Z", - "perform_verify": false, + "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:57:50.289Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138158S", - "compute_time_sec": 0.138158, + "compute_time": "P0DT00H00M56.834710S", + "compute_time_sec": 56.83471, "compute_times": { - "prove": 0.07979016215540469, - "total": 0.14502660813741386, - "queued": 0.943551, - "clean_up": 0.020246606087312102, - "file_setup": 0.04280776507221162, - "save_results": 0.0017201078590005636 + "total": 56.8432289250195, + "queued": 0.287988, + "clean_up": 0.10309748293366283, + "create_cpp": 1.2134589219931513, + "file_setup": 0.09620017104316503, + "compile_cpp": 38.34681939892471, + "create_r1cs": 0.824894416029565, + "save_results": 0.010392117081210017, + "get_r1cs_info": 0.004026207025162876, + "groth16_setup": 15.126561413053423, + "export_verification_key": 1.0899655069224536, + "download_trusted_setup_file": 0.02710751595441252 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7540780, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.058Z", - "perform_verify": false, + "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:52:09.320Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.570352S", - "compute_time_sec": 0.570352, + "compute_time": "P0DT00H00M57.335290S", + "compute_time_sec": 57.33529, "compute_times": { - "prove": 0.522533038049005, - "total": 0.5765696190064773, - "queued": 5.49816, - "clean_up": 0.004591017961502075, - "file_setup": 0.04690163198392838, - "save_results": 0.00215094699524343 + "total": 57.34173893509433, + "queued": 0.278472, + "clean_up": 0.10366297094151378, + "create_cpp": 1.246839945204556, + "file_setup": 0.06519381469115615, + "compile_cpp": 38.10613914998248, + "create_r1cs": 0.821301891002804, + "save_results": 0.0067642792128026485, + "get_r1cs_info": 0.002133298199623823, + "groth16_setup": 15.753068736288697, + "export_verification_key": 1.2155762687325478, + "download_trusted_setup_file": 0.020359096582978964 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7540742, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.958Z", - "perform_verify": false, + "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:43:09.159Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141230S", - "compute_time_sec": 0.14123, + "compute_time": "P0DT00H00M54.984651S", + "compute_time_sec": 54.984651, "compute_times": { - "prove": 0.09054448700044304, - "total": 0.14681443898007274, - "queued": 0.857495, - "clean_up": 0.01092955400235951, - "file_setup": 0.04332920000888407, - "save_results": 0.0015883928863331676 + "total": 54.99341053608805, + "queued": 0.304312, + "clean_up": 0.06826841598376632, + "create_cpp": 1.2764658289961517, + "file_setup": 0.08957945799920708, + "compile_cpp": 36.77387927705422, + "create_r1cs": 0.801689010928385, + "save_results": 0.009336387040093541, + "get_r1cs_info": 0.003953314037062228, + "groth16_setup": 14.896520375041291, + "export_verification_key": 1.0483920950209722, + "download_trusted_setup_file": 0.024622616940177977 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7540733, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.946Z", - "perform_verify": false, + "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T21:42:21.824Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124351S", - "compute_time_sec": 0.124351, + "compute_time": "P0DT00H00M56.975886S", + "compute_time_sec": 56.975886, "compute_times": { - "prove": 0.07182355504482985, - "total": 0.12982704397290945, - "queued": 0.172555, - "clean_up": 0.020923485048115253, - "file_setup": 0.03491202800069004, - "save_results": 0.0018582409247756004 + "total": 56.984479263890535, + "queued": 0.3222, + "clean_up": 0.071199910948053, + "create_cpp": 1.246658438933082, + "file_setup": 0.08264653407968581, + "compile_cpp": 37.13031674805097, + "create_r1cs": 0.8157099969685078, + "save_results": 0.008955279947258532, + "get_r1cs_info": 0.004004108952358365, + "groth16_setup": 14.917821239912882, + "export_verification_key": 1.06573862710502, + "download_trusted_setup_file": 1.640640855068341 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7540735, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 }, { - "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.938Z", - "perform_verify": false, + "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-14T21:41:14.188Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.148920S", - "compute_time_sec": 0.14892, + "compute_time": "P0DT00H00M36.819064S", + "compute_time_sec": 36.819064, "compute_times": { - "prove": 0.07293843105435371, - "total": 0.15480406815186143, - "queued": 0.196521, - "clean_up": 0.040053355041891336, - "file_setup": 0.03987180581316352, - "save_results": 0.0016056180465966463 + "total": 36.826748004648834, + "queued": 0.269335, + "clean_up": 0.11822917684912682, + "create_cpp": 0.7589871259406209, + "file_setup": 0.15491734398528934, + "compile_cpp": 28.743124674074352, + "create_r1cs": 0.35148238157853484, + "save_results": 0.00582153769209981, + "get_r1cs_info": 0.0006839861162006855, + "groth16_setup": 4.374190780799836, + "export_verification_key": 1.1788361864164472, + "download_trusted_setup_file": 1.1384393190965056 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3867265, + "uploaded_file_name": "hash-checker.tar.gz", "verification_key": null, - "error": null - }, - { - "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.776Z", - "perform_verify": false, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-14T21:39:50.042Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106213S", - "compute_time_sec": 0.106213, + "compute_time": "P0DT00H00M47.319956S", + "compute_time_sec": 47.319956, "compute_times": { - "prove": 0.08078976103570312, - "total": 0.11167675291653723, - "queued": 0.231229, - "clean_up": 0.005760588916018605, - "file_setup": 0.023330271942541003, - "save_results": 0.0013793050311505795 + "total": 47.326535122003406, + "queued": 0.256588, + "clean_up": 0.08247739961370826, + "create_cpp": 1.000471537001431, + "file_setup": 0.0585682881064713, + "compile_cpp": 29.038879429921508, + "create_r1cs": 0.6561976410448551, + "save_results": 0.006647040136158466, + "get_r1cs_info": 0.0020793969742953777, + "groth16_setup": 15.312814712058753, + "export_verification_key": 1.1472203098237514, + "download_trusted_setup_file": 0.02056274702772498 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 6775884, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:30.141Z", - "perform_verify": false, + "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", + "circuit_name": "Semaphore", + "circuit_type": "circom", + "date_created": "2024-02-14T21:36:56.776Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111507S", - "compute_time_sec": 0.111507, + "compute_time": "P0DT00H00M47.874450S", + "compute_time_sec": 47.87445, "compute_times": { - "prove": 0.075576186995022, - "total": 0.11713997193146497, - "queued": 0.16129, - "clean_up": 0.0037848310312256217, - "file_setup": 0.035947992000728846, - "save_results": 0.0014955269871279597 + "total": 47.88067169301212, + "queued": 0.241228, + "clean_up": 0.08292657090350986, + "create_cpp": 1.0067430417984724, + "file_setup": 0.060509118251502514, + "compile_cpp": 28.465293834917247, + "create_r1cs": 0.6478999992832541, + "save_results": 0.00611361488699913, + "get_r1cs_info": 0.0020417659543454647, + "groth16_setup": 14.801113961264491, + "export_verification_key": 1.1754452609457076, + "download_trusted_setup_file": 1.6319761737249792 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 6775882, + "uploaded_file_name": "Semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:28.622Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:08:08.930Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110477S", - "compute_time_sec": 0.110477, + "compute_time": "P0DT00H00M02.897920S", + "compute_time_sec": 2.89792, "compute_times": { - "prove": 0.07629627687856555, - "total": 0.11736977496184409, - "queued": 0.188204, - "clean_up": 0.004256210057064891, - "file_setup": 0.034773221937939525, - "save_results": 0.0016197890508919954 + "total": 0.9285368990385905, + "queued": 0.329843, + "create_cpp": 0.04405528900679201, + "file_setup": 0.8838426299626008 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 24822850, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:27.059Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:06:51.116Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117834S", - "compute_time_sec": 0.117834, + "compute_time": "P0DT00H00M03.346644S", + "compute_time_sec": 3.346644, "compute_times": { - "prove": 0.07615005096886307, - "total": 0.12300548201892525, - "queued": 0.205188, - "clean_up": 0.013062510988675058, - "file_setup": 0.03202356898691505, - "save_results": 0.001405435032211244 + "total": 0.8087141560390592, + "queued": 0.273012, + "create_cpp": 0.01664800103753805, + "file_setup": 0.791186569724232 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 24822792, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:25.393Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:02:01.839Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133236S", - "compute_time_sec": 0.133236, + "compute_time": "P0DT00H00M03.017827S", + "compute_time_sec": 3.017827, "compute_times": { - "prove": 0.08939769200515002, - "total": 0.13879455591086298, - "queued": 0.161569, - "clean_up": 0.004053406999446452, - "file_setup": 0.04343735601287335, - "save_results": 0.0015739259542897344 + "total": 0.8431280389195308, + "queued": 0.475505, + "create_cpp": 0.03038154193200171, + "file_setup": 0.8116235659690574 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 24822332, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:23.768Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:00:40.414Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106542S", - "compute_time_sec": 0.106542, + "compute_time": "P0DT00H00M00.297335S", + "compute_time_sec": 0.297335, "compute_times": { - "prove": 0.07830432313494384, - "total": 0.11298795603215694, - "queued": 0.210482, - "clean_up": 0.003878022078424692, - "file_setup": 0.02870348491705954, - "save_results": 0.0017148179467767477 + "total": 0.11431554611772299, + "queued": 0.292787, + "create_cpp": 0.014114855322986841, + "file_setup": 0.09887601295486093 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1416811, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:22.175Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T15:56:00.936Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109350S", - "compute_time_sec": 0.10935, + "compute_time": "P0DT00H00M00.259954S", + "compute_time_sec": 0.259954, "compute_times": { - "prove": 0.07757606508675963, - "total": 0.11466619104612619, - "queued": 0.256591, - "clean_up": 0.010891324956901371, - "file_setup": 0.024280331912450492, - "save_results": 0.0015671229921281338 + "total": 0.12665929598733783, + "queued": 0.347236, + "create_cpp": 0.022852880065329373, + "file_setup": 0.10267018002923578 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1416809, + "uploaded_file_name": "email.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:20.592Z", - "perform_verify": false, + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T16:06:15.388Z", + "num_proofs": 3, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097386S", - "compute_time_sec": 0.097386, + "compute_time": "P0DT00H00M19.113279S", + "compute_time_sec": 19.113279, "compute_times": { - "prove": 0.07514205400366336, - "total": 0.10310335899703205, - "queued": 0.159439, - "clean_up": 0.0037166819674894214, - "file_setup": 0.022262264043092728, - "save_results": 0.0016199250239878893 + "total": 19.119710344821215, + "queued": 0.304946, + "clean_up": 0.05678791180253029, + "file_setup": 0.07778294384479523, + "create_r1cs": 0.6835691910237074, + "create_wasm": 1.5261333975940943, + "save_results": 0.01109285093843937, + "get_r1cs_info": 0.002000190317630768, + "groth16_setup": 15.561696534976363, + "export_verification_key": 1.1593163777142763, + "download_trusted_setup_file": 0.04080592654645443 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7081817, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:18.948Z", - "perform_verify": false, + "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:14:36.781Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122932S", - "compute_time_sec": 0.122932, + "compute_time": "P0DT00H00M21.300025S", + "compute_time_sec": 21.300025, "compute_times": { - "prove": 0.08516530389897525, - "total": 0.13015575311146677, - "queued": 0.233137, - "clean_up": 0.014129698975011706, - "file_setup": 0.0285584160592407, - "save_results": 0.0018891170620918274 + "total": 21.306767147034407, + "queued": 0.293132, + "clean_up": 0.2600619550794363, + "file_setup": 0.10280199348926544, + "create_r1cs": 0.7014120128005743, + "create_wasm": 1.4916918445378542, + "save_results": 0.018025938421487808, + "get_r1cs_info": 0.003770437091588974, + "groth16_setup": 15.514674112200737, + "export_verification_key": 1.5598135478794575, + "download_trusted_setup_file": 1.654065664857626 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7081723, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 }, { - "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:17.333Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:12:50.904Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.131533S", - "compute_time_sec": 0.131533, + "compute_time": "P0DT00H00M00.311458S", + "compute_time_sec": 0.311458, "compute_times": { - "prove": 0.07857439492363483, - "total": 0.13676583603955805, - "queued": 0.227587, - "clean_up": 0.010069372947327793, - "file_setup": 0.04610578005667776, - "save_results": 0.001678532105870545 + "total": 0.10177313163876534, + "queued": 0.288724, + "file_setup": 0.08924846164882183, + "create_wasm": 0.011913193389773369 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1806552, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:15.726Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:10:40.331Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109690S", - "compute_time_sec": 0.10969, + "compute_time": "P0DT00H00M00.123483S", + "compute_time_sec": 0.123483, "compute_times": { - "prove": 0.07168154697865248, - "total": 0.11618917598389089, - "queued": 0.177243, - "clean_up": 0.0042525139870122075, - "file_setup": 0.038573550991714, - "save_results": 0.0013375390553846955 + "total": 0.10418374836444855, + "queued": 0.24469, + "file_setup": 0.08240349031984806, + "create_wasm": 0.02108948677778244 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 907287, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:14.150Z", - "perform_verify": false, + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:12.364Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138403S", - "compute_time_sec": 0.138403, + "compute_time": "P0DT00H00M36.887947S", + "compute_time_sec": 36.887947, "compute_times": { - "prove": 0.08462183806113899, - "total": 0.14498792798258364, - "queued": 0.218187, - "clean_up": 0.005619590170681477, - "file_setup": 0.052473017014563084, - "save_results": 0.0018791758920997381 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, - "verification_key": null, - "error": null - }, - { - "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:12.520Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.179439S", - "compute_time_sec": 0.179439, - "compute_times": { - "prove": 0.12221004103776067, - "total": 0.18509791197720915, - "queued": 0.218919, - "clean_up": 0.010833634994924068, - "file_setup": 0.04949615302029997, - "save_results": 0.002165056997910142 + "total": 36.89425963815302, + "queued": 0.257023, + "clean_up": 0.04403446055948734, + "file_setup": 29.98060936667025, + "create_r1cs": 0.3443223936483264, + "create_wasm": 1.05553247500211, + "save_results": 0.006293457001447678, + "get_r1cs_info": 0.000581374391913414, + "groth16_setup": 4.288356346078217, + "export_verification_key": 1.171438716351986, + "download_trusted_setup_file": 0.002127542160451412 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4238536, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:10.959Z", - "perform_verify": false, + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:47.834Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133456S", - "compute_time_sec": 0.133456, + "compute_time": "P0DT00H00M07.242908S", + "compute_time_sec": 7.242908, "compute_times": { - "prove": 0.07268570107407868, - "total": 0.1394008860224858, - "queued": 0.151876, - "clean_up": 0.010548806982114911, - "file_setup": 0.05424705799669027, - "save_results": 0.0015943750040605664 + "total": 7.252888669259846, + "queued": 0.315189, + "clean_up": 0.24440924916416407, + "file_setup": 0.10320598538964987, + "create_r1cs": 0.3493071682751179, + "create_wasm": 1.0848499182611704, + "save_results": 0.006677108816802502, + "get_r1cs_info": 0.0006677061319351196, + "groth16_setup": 4.277557077817619, + "export_verification_key": 1.1795741403475404, + "download_trusted_setup_file": 0.002051391638815403 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4238546, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:09.368Z", - "perform_verify": false, + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:32:24.516Z", + "num_proofs": 3, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104582S", - "compute_time_sec": 0.104582, + "compute_time": "P0DT00H00M08.502453S", + "compute_time_sec": 8.502453, "compute_times": { - "prove": 0.0761667680926621, - "total": 0.11041608499363065, - "queued": 0.232885, - "clean_up": 0.004713465925306082, - "file_setup": 0.027426036074757576, - "save_results": 0.0016772879753261805 + "total": 8.5082988422364, + "queued": 0.290802, + "clean_up": 0.24006511457264423, + "file_setup": 0.10109577886760235, + "create_r1cs": 0.374081764370203, + "create_wasm": 1.0719998348504305, + "save_results": 0.006332419812679291, + "get_r1cs_info": 0.0005895020440220833, + "groth16_setup": 4.342386241070926, + "export_verification_key": 1.097628473304212, + "download_trusted_setup_file": 1.2735503260046244 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4238535, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 }, { - "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:07.782Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:14:59.465Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103484S", - "compute_time_sec": 0.103484, + "compute_time": "P0DT00H00M00.379245S", + "compute_time_sec": 0.379245, "compute_times": { - "prove": 0.07775443291757256, - "total": 0.1097704729763791, - "queued": 0.165293, - "clean_up": 0.003079058020375669, - "file_setup": 0.027136432006955147, - "save_results": 0.0014415140030905604 + "total": 0.10352941323071718, + "queued": 0.225145, + "file_setup": 0.0858859121799469, + "create_wasm": 0.016125368885695934 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1804057, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:06.214Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:09:18.022Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110249S", - "compute_time_sec": 0.110249, + "compute_time": "P0DT00H00M00.300239S", + "compute_time_sec": 0.300239, "compute_times": { - "prove": 0.07331179198808968, - "total": 0.11586580192670226, - "queued": 0.160156, - "clean_up": 0.0036032439675182104, - "file_setup": 0.037042855052277446, - "save_results": 0.0015652959700673819 + "total": 0.09953181259334087, + "queued": 0.267199, + "file_setup": 0.08270685467869043, + "create_wasm": 0.01634138822555542 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1803953, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:04.623Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:00:54.135Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113074S", - "compute_time_sec": 0.113074, + "compute_time": "P0DT00H00M00.179718S", + "compute_time_sec": 0.179718, "compute_times": { - "prove": 0.07531885500065982, - "total": 0.11918418202549219, - "queued": 0.21149, - "clean_up": 0.004545237170532346, - "file_setup": 0.03716830490157008, - "save_results": 0.001786466920748353 + "total": 0.10090719535946846, + "queued": 0.251874, + "file_setup": 0.08464208338409662, + "create_wasm": 0.01588864903897047 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1803921, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:03.050Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:45:44.857Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118456S", - "compute_time_sec": 0.118456, + "compute_time": "P0DT00H00M00.269437S", + "compute_time_sec": 0.269437, "compute_times": { - "prove": 0.08025075704790652, - "total": 0.12484451208729297, - "queued": 0.171108, - "clean_up": 0.003666321048513055, - "file_setup": 0.03877517697401345, - "save_results": 0.0017490109894424677 + "total": 0.10417102556675673, + "queued": 0.229957, + "file_setup": 0.0870280647650361, + "create_wasm": 0.016761316917836666 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1803870, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:01.474Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:44:01.720Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097245S", - "compute_time_sec": 0.097245, + "compute_time": "P0DT00H00M00.119612S", + "compute_time_sec": 0.119612, "compute_times": { - "prove": 0.07467410003300756, - "total": 0.1032019880367443, - "queued": 1.000871, - "clean_up": 0.003617644077166915, - "file_setup": 0.023070842027664185, - "save_results": 0.0014518279349431396 + "total": 0.07268805895000696, + "queued": 0.258881, + "file_setup": 0.056701790541410446, + "create_wasm": 0.015431713312864304 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 905050, + "uploaded_file_name": "hashchecker.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:59.935Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-11T18:10:12.579Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124478S", - "compute_time_sec": 0.124478, + "compute_time": "P0DT00H00M00.281287S", + "compute_time_sec": 0.281287, "compute_times": { - "prove": 0.07985819177702069, - "total": 0.131462125107646, - "queued": 0.189545, - "clean_up": 0.00692735007032752, - "file_setup": 0.04234403814189136, - "save_results": 0.001923317089676857 + "total": 0.11563524045050144, + "queued": 0.305225, + "file_setup": 0.10166966635733843, + "create_wasm": 0.01360108982771635 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1805983, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:58.407Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-11T18:09:21.301Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119553S", - "compute_time_sec": 0.119553, + "compute_time": "P0DT00H00M00.129729S", + "compute_time_sec": 0.129729, "compute_times": { - "prove": 0.08296615700237453, - "total": 0.12573627301026136, - "queued": 0.226083, - "clean_up": 0.008650688105262816, - "file_setup": 0.03199622000101954, - "save_results": 0.0017465719720348716 + "total": 0.0997195653617382, + "queued": 0.324444, + "file_setup": 0.08716154284775257, + "create_wasm": 0.01209271140396595 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1805970, + "uploaded_file_name": "semaphore.tar.gz", "verification_key": null, - "error": null + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:56.860Z", - "perform_verify": false, + "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-01-31T22:08:05.475Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103716S", - "compute_time_sec": 0.103716, + "compute_time": "P0DT00H00M06.909178S", + "compute_time_sec": 6.909178, "compute_times": { - "prove": 0.06979906605556607, - "total": 0.10923597402870655, - "queued": 0.139177, - "clean_up": 0.0036087740445509553, - "file_setup": 0.03399856202304363, - "save_results": 0.0014903269475325942 + "total": 6.960774548351765, + "queued": 24.976953, + "clean_up": 0.005624564364552498, + "create_cpp": 0.04884001612663269, + "file_setup": 0.23423208110034466, + "compile_cpp": 4.481184393167496, + "create_r1cs": 0.019831592217087746, + "save_results": 0.003675384446978569, + "get_r1cs_info": 0.0003577694296836853, + "groth16_setup": 1.123554177582264, + "export_verification_key": 1.0419799592345953, + "download_trusted_setup_file": 0.0011759810149669647 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:55.316Z", - "perform_verify": false, + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.723Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164072S", - "compute_time_sec": 0.164072, + "compute_time": "P0DT00H00M07.286136S", + "compute_time_sec": 7.286136, "compute_times": { - "prove": 0.12517174892127514, - "total": 0.17043978604488075, - "queued": 0.207351, - "clean_up": 0.003746662987396121, - "file_setup": 0.039150891127064824, - "save_results": 0.0019460059702396393 + "total": 7.340654090046883, + "queued": 38.074183, + "clean_up": 0.0009148658718913794, + "create_cpp": 0.04542793915607035, + "file_setup": 0.23204711498692632, + "compile_cpp": 4.680376983946189, + "create_r1cs": 0.008409275906160474, + "save_results": 0.0033105541951954365, + "get_r1cs_info": 0.0003685750998556614, + "groth16_setup": 1.178457418922335, + "export_verification_key": 1.1900099229533225, + "download_trusted_setup_file": 0.000988946994766593 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null - }, - { - "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:53.766Z", - "perform_verify": false, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.122Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116515S", - "compute_time_sec": 0.116515, + "compute_time": "P0DT00H00M07.463866S", + "compute_time_sec": 7.463866, "compute_times": { - "prove": 0.07856976403854787, - "total": 0.12284065398853272, - "queued": 0.204898, - "clean_up": 0.004192995955236256, - "file_setup": 0.03768792003393173, - "save_results": 0.0020342780044302344 + "total": 7.523294999962673, + "queued": 37.680306, + "clean_up": 0.0007766569033265114, + "create_cpp": 0.04011468309909105, + "file_setup": 0.2518389639444649, + "compile_cpp": 4.806413288926706, + "create_r1cs": 0.008677670964971185, + "save_results": 0.0031781040597707033, + "get_r1cs_info": 0.00039803609251976013, + "groth16_setup": 1.1818688770290464, + "export_verification_key": 1.2287184570450336, + "download_trusted_setup_file": 0.0010086549445986748 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:52.213Z", - "perform_verify": false, + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.780Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109618S", - "compute_time_sec": 0.109618, + "compute_time": "P0DT00H00M07.480065S", + "compute_time_sec": 7.480065, "compute_times": { - "prove": 0.07834382401779294, - "total": 0.11546277697198093, - "queued": 0.228319, - "clean_up": 0.0037355918902903795, - "file_setup": 0.031366192968562245, - "save_results": 0.0016647940501570702 + "total": 7.537460318999365, + "queued": 33.511443, + "clean_up": 0.0008328610565513372, + "create_cpp": 0.03915940411388874, + "file_setup": 0.2353337057866156, + "compile_cpp": 4.872832479886711, + "create_r1cs": 0.009635194204747677, + "save_results": 0.003330645151436329, + "get_r1cs_info": 0.00040896888822317123, + "groth16_setup": 1.243939558044076, + "export_verification_key": 1.1305532888509333, + "download_trusted_setup_file": 0.0010688810143619776 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:50.640Z", - "perform_verify": false, + "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.625Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102363S", - "compute_time_sec": 0.102363, + "compute_time": "P0DT00H00M07.465790S", + "compute_time_sec": 7.46579, "compute_times": { - "prove": 0.07708223187364638, - "total": 0.11076221195980906, - "queued": 0.235274, - "clean_up": 0.004102661041542888, - "file_setup": 0.02742593502625823, - "save_results": 0.0017483970150351524 + "total": 7.517380404053256, + "queued": 32.017107, + "clean_up": 0.000841652974486351, + "create_cpp": 0.04037469998002052, + "file_setup": 0.21061871387064457, + "compile_cpp": 4.7562680810224265, + "create_r1cs": 0.008348200935870409, + "save_results": 0.0034994680900126696, + "get_r1cs_info": 0.000424881000071764, + "groth16_setup": 1.2855071290396154, + "export_verification_key": 1.210078198928386, + "download_trusted_setup_file": 0.0010237020906060934 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:49.058Z", - "perform_verify": false, + "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.471Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126055S", - "compute_time_sec": 0.126055, + "compute_time": "P0DT00H00M07.143051S", + "compute_time_sec": 7.143051, "compute_times": { - "prove": 0.08462739107199013, - "total": 0.13239038200117648, - "queued": 0.208639, - "clean_up": 0.017553703975863755, - "file_setup": 0.028355297981761396, - "save_results": 0.0014984130393713713 + "total": 7.1952535710297525, + "queued": 32.071917, + "clean_up": 0.0009264149703085423, + "create_cpp": 0.037378153996542096, + "file_setup": 0.22291689622215927, + "compile_cpp": 4.493842450901866, + "create_r1cs": 0.00868003792129457, + "save_results": 0.003541851881891489, + "get_r1cs_info": 0.0003536711446940899, + "groth16_setup": 1.202652727952227, + "export_verification_key": 1.2237500881310552, + "download_trusted_setup_file": 0.0009900499135255814 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:47.479Z", - "perform_verify": false, + "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.067Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114603S", - "compute_time_sec": 0.114603, + "compute_time": "P0DT00H00M07.529084S", + "compute_time_sec": 7.529084, "compute_times": { - "prove": 0.07099237700458616, - "total": 0.1205103590618819, - "queued": 0.177097, - "clean_up": 0.00736055604647845, - "file_setup": 0.04027851507999003, - "save_results": 0.0015338469529524446 + "total": 7.584393135970458, + "queued": 30.973415, + "clean_up": 0.00083908811211586, + "create_cpp": 0.04151515499688685, + "file_setup": 0.23193758307024837, + "compile_cpp": 4.9528708211146295, + "create_r1cs": 0.008621205808594823, + "save_results": 0.0033709488343447447, + "get_r1cs_info": 0.0004654980730265379, + "groth16_setup": 1.127253663027659, + "export_verification_key": 1.2159365471452475, + "download_trusted_setup_file": 0.0011964899022132158 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:45.920Z", - "perform_verify": false, + "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.892Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105545S", - "compute_time_sec": 0.105545, - "compute_times": { - "prove": 0.07798794494010508, - "total": 0.11226446111686528, - "queued": 0.210392, - "clean_up": 0.003587795188650489, - "file_setup": 0.02863957593217492, - "save_results": 0.0016675579827278852 + "compute_time": "P0DT00H00M06.968285S", + "compute_time_sec": 6.968285, + "compute_times": { + "total": 7.020302023971453, + "queued": 24.589933, + "clean_up": 0.0007189519237726927, + "create_cpp": 0.039091327926144004, + "file_setup": 0.22075876407325268, + "compile_cpp": 4.478542160009965, + "create_r1cs": 0.008031236007809639, + "save_results": 0.0033459621481597424, + "get_r1cs_info": 0.00031445594504475594, + "groth16_setup": 1.1534762841183692, + "export_verification_key": 1.1147591178305447, + "download_trusted_setup_file": 0.000989275984466076 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:44.421Z", - "perform_verify": false, + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.304Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.168234S", - "compute_time_sec": 0.168234, + "compute_time": "P0DT00H00M06.959223S", + "compute_time_sec": 6.959223, "compute_times": { - "prove": 0.10509133199229836, - "total": 0.1757285799831152, - "queued": 0.219364, - "clean_up": 0.004795938031747937, - "file_setup": 0.06402788893319666, - "save_results": 0.0014585850294679403 + "total": 7.0112608759664, + "queued": 17.111301, + "clean_up": 0.0008735461160540581, + "create_cpp": 0.038755591958761215, + "file_setup": 0.24885913101024926, + "compile_cpp": 4.36299676517956, + "create_r1cs": 0.00803148397244513, + "save_results": 0.01730395178310573, + "get_r1cs_info": 0.0003368018660694361, + "groth16_setup": 1.1180529070552438, + "export_verification_key": 1.2148506320081651, + "download_trusted_setup_file": 0.0009600170888006687 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:42.838Z", - "perform_verify": false, + "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.000Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138451S", - "compute_time_sec": 0.138451, + "compute_time": "P0DT00H00M06.949886S", + "compute_time_sec": 6.949886, "compute_times": { - "prove": 0.08344166504684836, - "total": 0.14460852497722954, - "queued": 0.193296, - "clean_up": 0.02906027901917696, - "file_setup": 0.030170131009072065, - "save_results": 0.0015538459410890937 + "total": 7.000236368039623, + "queued": 1.134467, + "clean_up": 0.0007571689784526825, + "create_cpp": 0.03813181212171912, + "file_setup": 0.39067235100083053, + "compile_cpp": 4.379259012872353, + "create_r1cs": 0.008045257069170475, + "save_results": 0.037871989188715816, + "get_r1cs_info": 0.0003408279735594988, + "groth16_setup": 1.0681434420403093, + "export_verification_key": 1.0757975298911333, + "download_trusted_setup_file": 0.0009711629245430231 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225416, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:41.260Z", - "perform_verify": false, + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:00.922Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108498S", - "compute_time_sec": 0.108498, + "compute_time": "P0DT00H00M07.086134S", + "compute_time_sec": 7.086134, "compute_times": { - "prove": 0.07821972295641899, - "total": 0.11512337112799287, - "queued": 0.207493, - "clean_up": 0.011428299127146602, - "file_setup": 0.023141066078096628, - "save_results": 0.0019629159942269325 + "total": 7.139805332990363, + "queued": 9.283956, + "clean_up": 0.0007637820672243834, + "create_cpp": 0.040777466958388686, + "file_setup": 0.22701866691932082, + "compile_cpp": 4.5694026600103825, + "create_r1cs": 0.008620185079053044, + "save_results": 0.009906678926199675, + "get_r1cs_info": 0.0005167280323803425, + "groth16_setup": 1.0815790109336376, + "export_verification_key": 1.1996698069851846, + "download_trusted_setup_file": 0.0012109570670872927 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:39.684Z", - "perform_verify": false, + "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-01-17T00:39:38.679Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125239S", - "compute_time_sec": 0.125239, + "compute_time": "P0DT00H00M07.550840S", + "compute_time_sec": 7.55084, "compute_times": { - "prove": 0.07802591007202864, - "total": 0.13191273796837777, - "queued": 0.208815, - "clean_up": 0.005445771967060864, - "file_setup": 0.04654695594217628, - "save_results": 0.0015280540101230145 + "total": 7.629153113812208, + "queued": 15.012343, + "clean_up": 0.011455003172159195, + "create_cpp": 0.054636724293231964, + "file_setup": 0.31103159487247467, + "compile_cpp": 4.492543734610081, + "create_r1cs": 0.0336969792842865, + "save_results": 0.005911210551857948, + "get_r1cs_info": 0.0004208497703075409, + "groth16_setup": 1.3556907046586275, + "export_verification_key": 1.3620027527213097, + "download_trusted_setup_file": 0.0013344846665859222 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1650629, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:38.137Z", - "perform_verify": false, + "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:15.352Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113764S", - "compute_time_sec": 0.113764, + "compute_time": "P0DT00H00M08.078009S", + "compute_time_sec": 8.078009, "compute_times": { - "prove": 0.07411053997930139, - "total": 0.11965196207165718, - "queued": 0.123697, - "clean_up": 0.021386098000220954, - "file_setup": 0.022322733071632683, - "save_results": 0.001491626026108861 + "total": 8.165162647143006, + "queued": 1.05453, + "clean_up": 0.001927914097905159, + "create_cpp": 0.05209779180586338, + "file_setup": 0.2735048495233059, + "compile_cpp": 4.798323042690754, + "create_r1cs": 0.018848145380616188, + "save_results": 0.00658784992992878, + "get_r1cs_info": 0.0008379388600587845, + "groth16_setup": 1.6222364120185375, + "export_verification_key": 1.38789046369493, + "download_trusted_setup_file": 0.0024561677128076553 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:36.609Z", - "perform_verify": false, + "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.083Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110500S", - "compute_time_sec": 0.1105, + "compute_time": "P0DT00H00M07.904210S", + "compute_time_sec": 7.90421, "compute_times": { - "prove": 0.07843833207152784, - "total": 0.1174131550360471, - "queued": 0.188117, - "clean_up": 0.013684443198144436, - "file_setup": 0.02307076589204371, - "save_results": 0.001790786860510707 + "total": 7.990685863420367, + "queued": 1.148767, + "clean_up": 0.0017737876623868942, + "create_cpp": 0.04771621339023113, + "file_setup": 0.2793459966778755, + "compile_cpp": 4.619792276993394, + "create_r1cs": 0.00932052917778492, + "save_results": 0.006265198811888695, + "get_r1cs_info": 0.0004815235733985901, + "groth16_setup": 1.4397705420851707, + "export_verification_key": 1.584412407130003, + "download_trusted_setup_file": 0.0015385709702968597 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:35.023Z", - "perform_verify": false, + "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.042Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113878S", - "compute_time_sec": 0.113878, + "compute_time": "P0DT00H00M07.840020S", + "compute_time_sec": 7.84002, "compute_times": { - "prove": 0.08454172103665769, - "total": 0.11953117907978594, - "queued": 0.202486, - "clean_up": 0.004061337094753981, - "file_setup": 0.028714405023492873, - "save_results": 0.0018627499230206013 + "total": 7.916158145293593, + "queued": 1.103501, + "clean_up": 0.001588582992553711, + "create_cpp": 0.05656779184937477, + "file_setup": 0.2618618682026863, + "compile_cpp": 4.655229337513447, + "create_r1cs": 0.010038148611783981, + "save_results": 0.005318811163306236, + "get_r1cs_info": 0.0004153270274400711, + "groth16_setup": 1.3863549754023552, + "export_verification_key": 1.5370171926915646, + "download_trusted_setup_file": 0.0013035386800765991 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:33.480Z", - "perform_verify": false, + "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:26.125Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124901S", - "compute_time_sec": 0.124901, + "compute_time": "P0DT00H00M07.895332S", + "compute_time_sec": 7.895332, "compute_times": { - "prove": 0.07596357993315905, - "total": 0.13044002500828356, - "queued": 0.140458, - "clean_up": 0.005051521933637559, - "file_setup": 0.0476306100608781, - "save_results": 0.0014870570739731193 + "total": 7.985105384141207, + "queued": 1.097711, + "clean_up": 0.0017092283815145493, + "create_cpp": 0.05560790188610554, + "file_setup": 0.27359912544488907, + "compile_cpp": 4.84467164054513, + "create_r1cs": 0.01020035706460476, + "save_results": 0.00596289336681366, + "get_r1cs_info": 0.0003344062715768814, + "groth16_setup": 1.3516457378864288, + "export_verification_key": 1.4395998753607273, + "download_trusted_setup_file": 0.001010250300168991 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:31.932Z", - "perform_verify": false, + "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:25.495Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109334S", - "compute_time_sec": 0.109334, + "compute_time": "P0DT00H00M07.731496S", + "compute_time_sec": 7.731496, "compute_times": { - "prove": 0.0772264408878982, - "total": 0.11520785093307495, - "queued": 0.214539, - "clean_up": 0.014989732997491956, - "file_setup": 0.02082884218543768, - "save_results": 0.0017384679522365332 + "total": 7.827601557597518, + "queued": 1.26957, + "clean_up": 0.002000821754336357, + "create_cpp": 0.04701829329133034, + "file_setup": 0.2621183265000582, + "compile_cpp": 4.725081695243716, + "create_r1cs": 0.011297162622213364, + "save_results": 0.005976244807243347, + "get_r1cs_info": 0.0006684809923171997, + "groth16_setup": 1.4255939163267612, + "export_verification_key": 1.3449707236140966, + "download_trusted_setup_file": 0.0024210847914218903 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225430, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:30.405Z", - "perform_verify": false, + "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:31:55.438Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099198S", - "compute_time_sec": 0.099198, + "compute_time": "P0DT00H00M07.586921S", + "compute_time_sec": 7.586921, "compute_times": { - "prove": 0.07795899198390543, - "total": 0.3439350420376286, - "queued": 0.44235, - "clean_up": 0.003542012069374323, - "file_setup": 0.02195370604749769, - "save_results": 0.00164421193767339 + "total": 7.663304785266519, + "queued": 1.132337, + "clean_up": 0.0015752892941236496, + "create_cpp": 0.049899373203516006, + "file_setup": 0.22959892638027668, + "compile_cpp": 4.780468979850411, + "create_r1cs": 0.017419403418898582, + "save_results": 0.0054653361439704895, + "get_r1cs_info": 0.0007719267159700394, + "groth16_setup": 1.2644738126546144, + "export_verification_key": 1.310561291873455, + "download_trusted_setup_file": 0.0026084203273057938 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:28.882Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.096462S", - "compute_time_sec": 0.096462, + "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:56.593Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.801205S", + "compute_time_sec": 7.801205, "compute_times": { - "prove": 0.0719371628947556, - "total": 0.10235371999442577, - "queued": 0.16149, - "clean_up": 0.0030283130472525954, - "file_setup": 0.0255846930667758, - "save_results": 0.001458707032725215 + "total": 7.875548103824258, + "queued": 1.098988, + "clean_up": 0.0017300937324762344, + "create_cpp": 0.05396237596869469, + "file_setup": 0.2385635208338499, + "compile_cpp": 4.6406055726110935, + "create_r1cs": 0.016733812168240547, + "save_results": 0.004983868449926376, + "get_r1cs_info": 0.0006270240992307663, + "groth16_setup": 1.3868273310363293, + "export_verification_key": 1.528601661324501, + "download_trusted_setup_file": 0.002437632530927658 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:27.303Z", - "perform_verify": false, + "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:42.490Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126276S", - "compute_time_sec": 0.126276, + "compute_time": "P0DT00H00M07.531215S", + "compute_time_sec": 7.531215, "compute_times": { - "prove": 0.08422461082227528, - "total": 0.13323151203803718, - "queued": 0.217879, - "clean_up": 0.01238051219843328, - "file_setup": 0.03462041402235627, - "save_results": 0.0016039679758250713 + "total": 7.6094263680279255, + "queued": 1.133009, + "clean_up": 0.001713564619421959, + "create_cpp": 0.04710027575492859, + "file_setup": 0.23515290580689907, + "compile_cpp": 4.696669522672892, + "create_r1cs": 0.017408769577741623, + "save_results": 0.005742281675338745, + "get_r1cs_info": 0.0006468463689088821, + "groth16_setup": 1.3201909139752388, + "export_verification_key": 1.2817781921476126, + "download_trusted_setup_file": 0.0024629440158605576 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:25.623Z", - "perform_verify": false, + "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:26.943Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138368S", - "compute_time_sec": 0.138368, + "compute_time": "P0DT00H00M07.713700S", + "compute_time_sec": 7.7137, "compute_times": { - "prove": 0.09363546408712864, - "total": 0.14376210200134665, - "queued": 0.257057, - "clean_up": 0.007791407988406718, - "file_setup": 0.03904824494384229, - "save_results": 0.0021443869918584824 + "total": 7.7915890868753195, + "queued": 1.17603, + "clean_up": 0.001603648066520691, + "create_cpp": 0.04629753343760967, + "file_setup": 0.2314635906368494, + "compile_cpp": 4.7291872799396515, + "create_r1cs": 0.016094380989670753, + "save_results": 0.005229661241173744, + "get_r1cs_info": 0.0004699360579252243, + "groth16_setup": 1.3847032357007265, + "export_verification_key": 1.3747948426753283, + "download_trusted_setup_file": 0.0012649912387132645 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:24.063Z", - "perform_verify": false, + "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:25.201Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098465S", - "compute_time_sec": 0.098465, + "compute_time": "P0DT00H00M07.782942S", + "compute_time_sec": 7.782942, "compute_times": { - "prove": 0.07042361702769995, - "total": 0.10373939899727702, - "queued": 0.163439, - "clean_up": 0.003754721023142338, - "file_setup": 0.027845817035995424, - "save_results": 0.0013589690206572413 + "total": 7.858149649575353, + "queued": 1.192228, + "clean_up": 0.0016285404562950134, + "create_cpp": 0.04751185514032841, + "file_setup": 0.22963756695389748, + "compile_cpp": 4.810557749122381, + "create_r1cs": 0.011191016063094139, + "save_results": 0.0053499843925237656, + "get_r1cs_info": 0.0006842408329248428, + "groth16_setup": 1.305834548547864, + "export_verification_key": 1.4425791203975677, + "download_trusted_setup_file": 0.0027836784720420837 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:22.482Z", - "perform_verify": false, + "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:08.702Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140408S", - "compute_time_sec": 0.140408, + "compute_time": "P0DT00H00M07.712942S", + "compute_time_sec": 7.712942, "compute_times": { - "prove": 0.09134363988414407, - "total": 0.1467661359347403, - "queued": 0.234166, - "clean_up": 0.011396168963983655, - "file_setup": 0.04208241100423038, - "save_results": 0.001585459103807807 + "total": 7.788311326876283, + "queued": 1.222064, + "clean_up": 0.0015964601188898087, + "create_cpp": 0.048168059438467026, + "file_setup": 0.24294559471309185, + "compile_cpp": 4.80493832193315, + "create_r1cs": 0.01979799196124077, + "save_results": 0.005484664812684059, + "get_r1cs_info": 0.0007523689419031143, + "groth16_setup": 1.360052939504385, + "export_verification_key": 1.3015912808477879, + "download_trusted_setup_file": 0.00248897448182106 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:20.927Z", - "perform_verify": false, + "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:55.055Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141387S", - "compute_time_sec": 0.141387, + "compute_time": "P0DT00H00M07.504987S", + "compute_time_sec": 7.504987, "compute_times": { - "prove": 0.09125522000249475, - "total": 0.14774739800486714, - "queued": 0.197743, - "clean_up": 0.012068960932083428, - "file_setup": 0.04265728604514152, - "save_results": 0.0014312650309875607 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "total": 7.582275737076998, + "queued": 1.111203, + "clean_up": 0.00203564390540123, + "create_cpp": 0.04740658402442932, + "file_setup": 0.2326672412455082, + "compile_cpp": 4.5253369603306055, + "create_r1cs": 0.015371032059192657, + "save_results": 0.0063849929720163345, + "get_r1cs_info": 0.0003808550536632538, + "groth16_setup": 1.3611575067043304, + "export_verification_key": 1.3897777944803238, + "download_trusted_setup_file": 0.0012431517243385315 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:19.297Z", - "perform_verify": false, + "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:31.285Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102332S", - "compute_time_sec": 0.102332, + "compute_time": "P0DT00H00M07.404341S", + "compute_time_sec": 7.404341, "compute_times": { - "prove": 0.07266321196220815, - "total": 0.10838873707689345, - "queued": 0.146978, - "clean_up": 0.008384920074604452, - "file_setup": 0.02525644702836871, - "save_results": 0.0017374729504808784 + "total": 7.481531243771315, + "queued": 1.164668, + "clean_up": 0.001758268103003502, + "create_cpp": 0.054409828037023544, + "file_setup": 0.228825144469738, + "compile_cpp": 4.561935219913721, + "create_r1cs": 0.01824786141514778, + "save_results": 0.005484595894813538, + "get_r1cs_info": 0.000652119517326355, + "groth16_setup": 1.3237749002873898, + "export_verification_key": 1.2835038527846336, + "download_trusted_setup_file": 0.0024792589247226715 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:17.717Z", - "perform_verify": false, + "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:11.647Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111570S", - "compute_time_sec": 0.11157, + "compute_time": "P0DT00H00M07.506243S", + "compute_time_sec": 7.506243, "compute_times": { - "prove": 0.07737825997173786, - "total": 0.11877415492199361, - "queued": 1.050496, - "clean_up": 0.003718754043802619, - "file_setup": 0.03554413700476289, - "save_results": 0.001658557914197445 + "total": 7.5825384352356195, + "queued": 1.123872, + "clean_up": 0.0020943544805049896, + "create_cpp": 0.055948369204998016, + "file_setup": 0.2336848620325327, + "compile_cpp": 4.572340337559581, + "create_r1cs": 0.011611813679337502, + "save_results": 0.006018133834004402, + "get_r1cs_info": 0.000943819060921669, + "groth16_setup": 1.345878291875124, + "export_verification_key": 1.3496504835784435, + "download_trusted_setup_file": 0.003846803680062294 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:16.204Z", - "perform_verify": false, + "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:38.135Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.137641S", - "compute_time_sec": 0.137641, + "compute_time": "P0DT00H00M07.490694S", + "compute_time_sec": 7.490694, "compute_times": { - "prove": 0.0947769220219925, - "total": 0.14389025000855327, - "queued": 0.224558, - "clean_up": 0.012663225992582738, - "file_setup": 0.03437299397774041, - "save_results": 0.0016881220508366823 + "total": 7.569987336173654, + "queued": 1.179116, + "clean_up": 0.002130907028913498, + "create_cpp": 0.04748098365962505, + "file_setup": 0.2508866246789694, + "compile_cpp": 4.549122573807836, + "create_r1cs": 0.01635313406586647, + "save_results": 0.006561141461133957, + "get_r1cs_info": 0.0007531233131885529, + "groth16_setup": 1.3041542451828718, + "export_verification_key": 1.389599822461605, + "download_trusted_setup_file": 0.002447204664349556 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:14.654Z", - "perform_verify": false, + "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:25.337Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.130554S", - "compute_time_sec": 0.130554, + "compute_time": "P0DT00H00M07.714617S", + "compute_time_sec": 7.714617, "compute_times": { - "prove": 0.07754861598368734, - "total": 0.1364057119935751, - "queued": 0.181242, - "clean_up": 0.01912771293427795, - "file_setup": 0.03766816493589431, - "save_results": 0.0017138230614364147 + "total": 7.78945274092257, + "queued": 1.109203, + "clean_up": 0.0014195535331964493, + "create_cpp": 0.0532410591840744, + "file_setup": 0.2293473482131958, + "compile_cpp": 4.6692238971591, + "create_r1cs": 0.011476732790470123, + "save_results": 0.0056864432990550995, + "get_r1cs_info": 0.0009230468422174454, + "groth16_setup": 1.4699061587452888, + "export_verification_key": 1.3452017772942781, + "download_trusted_setup_file": 0.0025169849395751953 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:13.059Z", - "perform_verify": false, + "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:07.305Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105571S", - "compute_time_sec": 0.105571, + "compute_time": "P0DT00H00M07.675740S", + "compute_time_sec": 7.67574, "compute_times": { - "prove": 0.07499144691973925, - "total": 0.11162168602459133, - "queued": 0.211993, - "clean_up": 0.004386739106848836, - "file_setup": 0.030089835869148374, - "save_results": 0.0017889870796352625 + "total": 7.751045668497682, + "queued": 1.129433, + "clean_up": 0.0018131695687770844, + "create_cpp": 0.04765470325946808, + "file_setup": 0.24081012606620789, + "compile_cpp": 4.558540068566799, + "create_r1cs": 0.01800389215350151, + "save_results": 0.005974184721708298, + "get_r1cs_info": 0.0006712991744279861, + "groth16_setup": 1.373840706422925, + "export_verification_key": 1.500656010583043, + "download_trusted_setup_file": 0.002558337524533272 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null - }, - { - "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:11.558Z", - "perform_verify": false, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:19:55.212Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104533S", - "compute_time_sec": 0.104533, + "compute_time": "P0DT00H00M08.062178S", + "compute_time_sec": 8.062178, "compute_times": { - "prove": 0.07792208204045892, - "total": 0.11210504802875221, - "queued": 0.217616, - "clean_up": 0.007965726079419255, - "file_setup": 0.024172692908905447, - "save_results": 0.0016238619573414326 + "total": 8.142503958195448, + "queued": 1.149423, + "clean_up": 0.0018021930009126663, + "create_cpp": 0.04863681085407734, + "file_setup": 0.23515266925096512, + "compile_cpp": 5.073512123897672, + "create_r1cs": 0.018286654725670815, + "save_results": 0.004714170470833778, + "get_r1cs_info": 0.0007165037095546722, + "groth16_setup": 1.3629947770386934, + "export_verification_key": 1.3937593009322882, + "download_trusted_setup_file": 0.0024403519928455353 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:10.032Z", - "perform_verify": false, + "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:49.431Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.120359S", - "compute_time_sec": 0.120359, + "compute_time": "P0DT00H00M07.693335S", + "compute_time_sec": 7.693335, "compute_times": { - "prove": 0.07663809997029603, - "total": 0.12461252498906106, - "queued": 0.140378, - "clean_up": 0.02126628893893212, - "file_setup": 0.02467076701577753, - "save_results": 0.0017215840052813292 + "total": 7.781858703121543, + "queued": 1.116293, + "clean_up": 0.0017208773642778397, + "create_cpp": 0.05256185121834278, + "file_setup": 0.2557890061289072, + "compile_cpp": 4.588302677497268, + "create_r1cs": 0.010025406256318092, + "save_results": 0.0073493290692567825, + "get_r1cs_info": 0.0005155783146619797, + "groth16_setup": 1.4648161549121141, + "export_verification_key": 1.3988297637552023, + "download_trusted_setup_file": 0.0014446470886468887 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:08.462Z", - "perform_verify": false, + "circuit_id": "315b9559-c461-49ab-b089-885151347107", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:35.546Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111685S", - "compute_time_sec": 0.111685, + "compute_time": "P0DT00H00M07.469497S", + "compute_time_sec": 7.469497, "compute_times": { - "prove": 0.08040205901488662, - "total": 0.11877126502804458, - "queued": 0.199786, - "clean_up": 0.0037285531871020794, - "file_setup": 0.0324579190928489, - "save_results": 0.0017784868832677603 + "total": 7.547948880121112, + "queued": 1.248019, + "clean_up": 0.0015904363244771957, + "create_cpp": 0.0542209018021822, + "file_setup": 0.23366319201886654, + "compile_cpp": 4.586157588288188, + "create_r1cs": 0.018297061324119568, + "save_results": 0.005786450579762459, + "get_r1cs_info": 0.0006671342998743057, + "groth16_setup": 1.364309385418892, + "export_verification_key": 1.2802996914833784, + "download_trusted_setup_file": 0.002457818016409874 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:06.935Z", - "perform_verify": false, + "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:17:44.931Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104458S", - "compute_time_sec": 0.104458, + "compute_time": "P0DT00H00M07.473321S", + "compute_time_sec": 7.473321, "compute_times": { - "prove": 0.07790789101272821, - "total": 0.11097153997980058, - "queued": 0.207337, - "clean_up": 0.007473509991541505, - "file_setup": 0.023695859010331333, - "save_results": 0.0015444039599969983 + "total": 7.547661663964391, + "queued": 1.119777, + "clean_up": 0.000894695520401001, + "create_cpp": 0.05381825938820839, + "file_setup": 0.24185010977089405, + "compile_cpp": 4.524175513535738, + "create_r1cs": 0.017902396619319916, + "save_results": 0.004841597750782967, + "get_r1cs_info": 0.0008537471294403076, + "groth16_setup": 1.3410304505378008, + "export_verification_key": 1.3593134097754955, + "download_trusted_setup_file": 0.0025420039892196655 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:05.334Z", - "perform_verify": false, + "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:28.531Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174494S", - "compute_time_sec": 0.174494, + "compute_time": "P0DT00H00M07.690520S", + "compute_time_sec": 7.69052, "compute_times": { - "prove": 0.13656924897804856, - "total": 0.1803733000997454, - "queued": 0.159095, - "clean_up": 0.00582932005636394, - "file_setup": 0.035943722003139555, - "save_results": 0.0016814139671623707 + "total": 7.770463544875383, + "queued": 5.453395, + "clean_up": 0.0014936216175556183, + "create_cpp": 0.05430406704545021, + "file_setup": 0.23710034973919392, + "compile_cpp": 4.83283169940114, + "create_r1cs": 0.019483311101794243, + "save_results": 0.0048837121576070786, + "get_r1cs_info": 0.0006661657243967056, + "groth16_setup": 1.3555313758552074, + "export_verification_key": 1.2612487897276878, + "download_trusted_setup_file": 0.0024483725428581238 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:03.737Z", - "perform_verify": false, + "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:22.368Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094572S", - "compute_time_sec": 0.094572, + "compute_time": "P0DT00H00M07.866076S", + "compute_time_sec": 7.866076, "compute_times": { - "prove": 0.07406232389621437, - "total": 0.10051628504879773, - "queued": 0.192337, - "clean_up": 0.00337238609790802, - "file_setup": 0.020903730997815728, - "save_results": 0.0018227370455861092 + "total": 7.941894210875034, + "queued": 2.535538, + "clean_up": 0.0015988927334547043, + "create_cpp": 0.047808632254600525, + "file_setup": 0.27344413474202156, + "compile_cpp": 4.95066586881876, + "create_r1cs": 0.018682880327105522, + "save_results": 0.005130548030138016, + "get_r1cs_info": 0.0007092785090208054, + "groth16_setup": 1.3249204363673925, + "export_verification_key": 1.3161130715161562, + "download_trusted_setup_file": 0.0024131685495376587 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:02.220Z", - "perform_verify": false, + "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:14.715Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111599S", - "compute_time_sec": 0.111599, + "compute_time": "P0DT00H00M07.791801S", + "compute_time_sec": 7.791801, "compute_times": { - "prove": 0.08133828500285745, - "total": 0.11800080502871424, - "queued": 0.22429, - "clean_up": 0.004713690024800599, - "file_setup": 0.029832501895725727, - "save_results": 0.001725762034766376 + "total": 7.869745476171374, + "queued": 1.134289, + "clean_up": 0.001745712012052536, + "create_cpp": 0.05209941044449806, + "file_setup": 0.2489724848419428, + "compile_cpp": 4.845416411757469, + "create_r1cs": 0.019992178305983543, + "save_results": 0.005489939823746681, + "get_r1cs_info": 0.0008604265749454498, + "groth16_setup": 1.321467338129878, + "export_verification_key": 1.3704753294587135, + "download_trusted_setup_file": 0.002767615020275116 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:00.620Z", - "perform_verify": false, + "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:40.405Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114347S", - "compute_time_sec": 0.114347, + "compute_time": "P0DT00H00M07.405829S", + "compute_time_sec": 7.405829, "compute_times": { - "prove": 0.0749998859828338, - "total": 0.11923162802122533, - "queued": 0.187559, - "clean_up": 0.00959215103648603, - "file_setup": 0.032431255909614265, - "save_results": 0.0015854650409892201 + "total": 7.476599719375372, + "queued": 1.131337, + "clean_up": 0.0016632992774248123, + "create_cpp": 0.047042084857821465, + "file_setup": 0.2487345952540636, + "compile_cpp": 4.6313931327313185, + "create_r1cs": 0.015436878427863121, + "save_results": 0.0051026009023189545, + "get_r1cs_info": 0.0007460527122020721, + "groth16_setup": 1.2485730070620775, + "export_verification_key": 1.274957099929452, + "download_trusted_setup_file": 0.002432204782962799 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:59.069Z", - "perform_verify": false, + "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:12.201Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.100689S", - "compute_time_sec": 0.100689, + "compute_time": "P0DT00H00M07.489214S", + "compute_time_sec": 7.489214, "compute_times": { - "prove": 0.07633324712514877, - "total": 0.10863703698851168, - "queued": 0.172422, - "clean_up": 0.0039177220314741135, - "file_setup": 0.026381932897493243, - "save_results": 0.0016446078661829233 + "total": 7.565977169200778, + "queued": 1.146208, + "clean_up": 0.0016220677644014359, + "create_cpp": 0.0601615309715271, + "file_setup": 0.23689182102680206, + "compile_cpp": 4.628598712384701, + "create_r1cs": 0.01757240854203701, + "save_results": 0.005794510245323181, + "get_r1cs_info": 0.0007582679390907288, + "groth16_setup": 1.3360584639012814, + "export_verification_key": 1.2756301537156105, + "download_trusted_setup_file": 0.0024445243179798126 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:57.502Z", - "perform_verify": false, + "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:11:41.174Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141413S", - "compute_time_sec": 0.141413, + "compute_time": "P0DT00H00M07.580861S", + "compute_time_sec": 7.580861, "compute_times": { - "prove": 0.07754256599582732, - "total": 0.1476239999756217, - "queued": 0.170377, - "clean_up": 0.01235142897348851, - "file_setup": 0.05578526598401368, - "save_results": 0.0016236520605161786 + "total": 7.656488731503487, + "queued": 1.097627, + "clean_up": 0.0016867052763700485, + "create_cpp": 0.04802015610039234, + "file_setup": 0.24031525664031506, + "compile_cpp": 4.603576384484768, + "create_r1cs": 0.016298340633511543, + "save_results": 0.005427641794085503, + "get_r1cs_info": 0.0008495114743709564, + "groth16_setup": 1.44757186062634, + "export_verification_key": 1.2892759256064892, + "download_trusted_setup_file": 0.0029640905559062958 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:55.884Z", - "perform_verify": false, + "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:06:12.999Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110891S", - "compute_time_sec": 0.110891, + "compute_time": "P0DT00H00M07.468363S", + "compute_time_sec": 7.468363, "compute_times": { - "prove": 0.07763317495118827, - "total": 0.11661336896941066, - "queued": 0.143468, - "clean_up": 0.0035630339989438653, - "file_setup": 0.0330983359599486, - "save_results": 0.0019896290032193065 + "total": 7.544480819255114, + "queued": 1.143003, + "clean_up": 0.0016008112579584122, + "create_cpp": 0.05341379716992378, + "file_setup": 0.22887434996664524, + "compile_cpp": 4.706471795216203, + "create_r1cs": 0.01654653809964657, + "save_results": 0.006104299798607826, + "get_r1cs_info": 0.0004962123930454254, + "groth16_setup": 1.2300675436854362, + "export_verification_key": 1.299116501584649, + "download_trusted_setup_file": 0.0012989863753318787 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:54.264Z", - "perform_verify": false, + "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:05:23.917Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099387S", - "compute_time_sec": 0.099387, + "compute_time": "P0DT00H00M07.759975S", + "compute_time_sec": 7.759975, "compute_times": { - "prove": 0.07505850703455508, - "total": 0.10617876495234668, - "queued": 0.194099, - "clean_up": 0.0034724250435829163, - "file_setup": 0.025419748853892088, - "save_results": 0.001774586969986558 + "total": 7.83847594819963, + "queued": 1.10425, + "clean_up": 0.001688338816165924, + "create_cpp": 0.04832325503230095, + "file_setup": 0.2314634695649147, + "compile_cpp": 4.819877410307527, + "create_r1cs": 0.015260979533195496, + "save_results": 0.006293922662734985, + "get_r1cs_info": 0.0006519351154565811, + "groth16_setup": 1.3941991496831179, + "export_verification_key": 1.3179172277450562, + "download_trusted_setup_file": 0.0024711433798074722 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:52.472Z", - "perform_verify": false, + "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:04:56.095Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.127179S", - "compute_time_sec": 0.127179, + "compute_time": "P0DT00H00M07.406479S", + "compute_time_sec": 7.406479, "compute_times": { - "prove": 0.08727552101481706, - "total": 0.13350528001319617, - "queued": 0.199888, - "clean_up": 0.006217173999175429, - "file_setup": 0.038007476017810404, - "save_results": 0.0016796219861134887 + "total": 7.483620099723339, + "queued": 1.177252, + "clean_up": 0.001823868602514267, + "create_cpp": 0.045437244698405266, + "file_setup": 0.24590439908206463, + "compile_cpp": 4.595620075240731, + "create_r1cs": 0.016566921025514603, + "save_results": 0.005170263350009918, + "get_r1cs_info": 0.00036842189729213715, + "groth16_setup": 1.3206052239984274, + "export_verification_key": 1.2503768727183342, + "download_trusted_setup_file": 0.0012859292328357697 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:50.941Z", - "perform_verify": false, + "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:02:24.098Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122591S", - "compute_time_sec": 0.122591, + "compute_time": "P0DT00H00M07.616668S", + "compute_time_sec": 7.616668, "compute_times": { - "prove": 0.08476738398894668, - "total": 0.1283225070219487, - "queued": 0.166336, - "clean_up": 0.004483919939957559, - "file_setup": 0.03699059609789401, - "save_results": 0.0017628020141273737 + "total": 7.693107321858406, + "queued": 1.109472, + "clean_up": 0.0016501452773809433, + "create_cpp": 0.05231943354010582, + "file_setup": 0.23242460750043392, + "compile_cpp": 4.745099242776632, + "create_r1cs": 0.019039543345570564, + "save_results": 0.0055495090782642365, + "get_r1cs_info": 0.0005333274602890015, + "groth16_setup": 1.285587765276432, + "export_verification_key": 1.3491349909454584, + "download_trusted_setup_file": 0.0012811962515115738 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:49.312Z", - "perform_verify": false, + "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:40.573Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141097S", - "compute_time_sec": 0.141097, + "compute_time": "P0DT00H00M07.484601S", + "compute_time_sec": 7.484601, "compute_times": { - "prove": 0.0733918990008533, - "total": 0.14723626291379333, - "queued": 0.218888, - "clean_up": 0.023661232087761164, - "file_setup": 0.04160579387098551, - "save_results": 0.008111441973596811 + "total": 7.560129789635539, + "queued": 1.111989, + "clean_up": 0.0016574747860431671, + "create_cpp": 0.04680110327899456, + "file_setup": 0.23556585423648357, + "compile_cpp": 4.649155827239156, + "create_r1cs": 0.0172688327729702, + "save_results": 0.0043340642005205154, + "get_r1cs_info": 0.0007321778684854507, + "groth16_setup": 1.310708336532116, + "export_verification_key": 1.2910060994327068, + "download_trusted_setup_file": 0.002450576052069664 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:47.661Z", - "perform_verify": false, + "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:12.249Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105830S", - "compute_time_sec": 0.10583, + "compute_time": "P0DT00H00M07.651112S", + "compute_time_sec": 7.651112, "compute_times": { - "prove": 0.07938949600793421, - "total": 0.11207641800865531, - "queued": 0.206942, - "clean_up": 0.00690544699318707, - "file_setup": 0.02367080794647336, - "save_results": 0.001770041068084538 + "total": 7.727200584486127, + "queued": 1.123557, + "clean_up": 0.0017795618623495102, + "create_cpp": 0.05026000365614891, + "file_setup": 0.2426721192896366, + "compile_cpp": 4.745914597064257, + "create_r1cs": 0.010544411838054657, + "save_results": 0.006228795275092125, + "get_r1cs_info": 0.0007463283836841583, + "groth16_setup": 1.2904645502567291, + "export_verification_key": 1.375608079135418, + "download_trusted_setup_file": 0.002477342262864113 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:46.099Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164153S", - "compute_time_sec": 0.164153, + "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:00:46.395Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.560954S", + "compute_time_sec": 7.560954, "compute_times": { - "prove": 0.10050884890370071, - "total": 0.16989507200196385, - "queued": 0.137523, - "clean_up": 0.0296879590023309, - "file_setup": 0.033167905057780445, - "save_results": 0.006188624072819948 + "total": 7.63792067207396, + "queued": 1.118023, + "clean_up": 0.0011309515684843063, + "create_cpp": 0.05688653700053692, + "file_setup": 0.24240840040147305, + "compile_cpp": 4.653197390958667, + "create_r1cs": 0.01638108491897583, + "save_results": 0.005740107968449593, + "get_r1cs_info": 0.0008277762681245804, + "groth16_setup": 1.3475805260241032, + "export_verification_key": 1.3108154106885195, + "download_trusted_setup_file": 0.0024681556969881058 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:44.552Z", - "perform_verify": false, + "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:57.004Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129635S", - "compute_time_sec": 0.129635, + "compute_time": "P0DT00H00M07.474006S", + "compute_time_sec": 7.474006, "compute_times": { - "prove": 0.07830019295215607, - "total": 0.13494652090594172, - "queued": 0.221517, - "clean_up": 0.018889005994424224, - "file_setup": 0.035788336070254445, - "save_results": 0.001614188076928258 + "total": 7.551057329401374, + "queued": 1.13943, + "clean_up": 0.0015815366059541702, + "create_cpp": 0.04650958999991417, + "file_setup": 0.2340244445949793, + "compile_cpp": 4.627846229821444, + "create_r1cs": 0.01713145151734352, + "save_results": 0.005708448588848114, + "get_r1cs_info": 0.0004803799092769623, + "groth16_setup": 1.2327740285545588, + "export_verification_key": 1.3827583715319633, + "download_trusted_setup_file": 0.001740090548992157 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:42.989Z", - "perform_verify": false, + "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:11.428Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109912S", - "compute_time_sec": 0.109912, + "compute_time": "P0DT00H00M07.631306S", + "compute_time_sec": 7.631306, "compute_times": { - "prove": 0.08981344511266798, - "total": 0.11624708399176598, - "queued": 0.223804, - "clean_up": 0.003414363949559629, - "file_setup": 0.021206943900324404, - "save_results": 0.0014059050008654594 + "total": 7.710235442966223, + "queued": 1.386075, + "clean_up": 0.002034531906247139, + "create_cpp": 0.04852190800011158, + "file_setup": 0.24500983953475952, + "compile_cpp": 4.704880395904183, + "create_r1cs": 0.010721936821937561, + "save_results": 0.0055764298886060715, + "get_r1cs_info": 0.0006168503314256668, + "groth16_setup": 1.448454624041915, + "export_verification_key": 1.2422269843518734, + "download_trusted_setup_file": 0.0016173608601093292 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:41.451Z", - "perform_verify": false, + "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:58:05.906Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115519S", - "compute_time_sec": 0.115519, + "compute_time": "P0DT00H00M07.838875S", + "compute_time_sec": 7.838875, "compute_times": { - "prove": 0.07633757498115301, - "total": 0.1204413790255785, - "queued": 0.742162, - "clean_up": 0.016363205038942397, - "file_setup": 0.025892338017001748, - "save_results": 0.0014968069735914469 + "total": 7.916816979646683, + "queued": 1.13646, + "clean_up": 0.0017937906086444855, + "create_cpp": 0.04604017175734043, + "file_setup": 0.25198566168546677, + "compile_cpp": 4.960162149742246, + "create_r1cs": 0.017025411128997803, + "save_results": 0.006269412115216255, + "get_r1cs_info": 0.0005705077201128006, + "groth16_setup": 1.3184205926954746, + "export_verification_key": 1.312853867188096, + "download_trusted_setup_file": 0.0013548657298088074 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:39.456Z", - "perform_verify": false, + "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:10:36.167Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108406S", - "compute_time_sec": 0.108406, + "compute_time": "P0DT00H00M07.494759S", + "compute_time_sec": 7.494759, "compute_times": { - "prove": 0.0791304879821837, - "total": 0.11538788001053035, - "queued": 0.190948, - "clean_up": 0.003850993001833558, - "file_setup": 0.030011237133294344, - "save_results": 0.0017656770069152117 + "total": 7.577943356707692, + "queued": 15.661842, + "clean_up": 0.0015942566096782684, + "create_cpp": 0.046944042667746544, + "file_setup": 0.23811103031039238, + "compile_cpp": 4.708118129521608, + "create_r1cs": 0.01638900674879551, + "save_results": 0.00562669150531292, + "get_r1cs_info": 0.0006911307573318481, + "groth16_setup": 1.2832315117120743, + "export_verification_key": 1.2741688843816519, + "download_trusted_setup_file": 0.0024611055850982666 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:37.847Z", - "perform_verify": false, + "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-19T00:01:17.518Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092359S", - "compute_time_sec": 0.092359, + "compute_time": "P0DT00H00M14.829640S", + "compute_time_sec": 14.82964, "compute_times": { - "prove": 0.07222839200403541, - "total": 0.09727117500733584, - "queued": 0.185071, - "clean_up": 0.003502683015540242, - "file_setup": 0.019683361053466797, - "save_results": 0.0015406029997393489 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "total": 16.11652692966163, + "queued": 21.506947, + "clean_up": 0.00970545969903469, + "create_cpp": 0.07700999267399311, + "file_setup": 1.6147372927516699, + "compile_cpp": 7.614376271143556, + "create_r1cs": 0.154385132715106, + "save_results": 0.005050705745816231, + "get_r1cs_info": 0.0008396394550800323, + "groth16_setup": 3.3179074060171843, + "export_verification_key": 3.320323884487152, + "download_trusted_setup_file": 0.0015841908752918243 + }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:36.258Z", - "perform_verify": false, + "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:44:10.716Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112020S", - "compute_time_sec": 0.11202, + "compute_time": "P0DT00H00M08.500698S", + "compute_time_sec": 8.500698, "compute_times": { - "prove": 0.06998628401197493, - "total": 0.11816900398116559, - "queued": 0.159585, - "clean_up": 0.00885792204644531, - "file_setup": 0.037621396011672914, - "save_results": 0.0013648279709741473 + "total": 9.787439923733473, + "queued": 1.294188, + "clean_up": 0.013815293088555336, + "create_cpp": 0.06775672547519207, + "file_setup": 1.5670747924596071, + "compile_cpp": 5.217347398400307, + "create_r1cs": 0.03056485578417778, + "save_results": 0.006023731082677841, + "get_r1cs_info": 0.0007077902555465698, + "groth16_setup": 1.4515825044363737, + "export_verification_key": 1.4297321401536465, + "download_trusted_setup_file": 0.0024385377764701843 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:34.681Z", - "perform_verify": false, + "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:42:13.949Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.161413S", - "compute_time_sec": 0.161413, + "compute_time": "P0DT00H00M13.803270S", + "compute_time_sec": 13.80327, "compute_times": { - "prove": 0.12939074099995196, - "total": 0.16822218499146402, - "queued": 0.231644, - "clean_up": 0.0037453039549291134, - "file_setup": 0.03296162514016032, - "save_results": 0.0017324970103800297 + "total": 15.069168468937278, + "queued": 1.279988, + "clean_up": 0.010122904554009438, + "create_cpp": 0.12114278227090836, + "file_setup": 1.5526539776474237, + "compile_cpp": 7.2996343690901995, + "create_r1cs": 0.07337300851941109, + "save_results": 0.10131139867007732, + "get_r1cs_info": 0.0005603395402431488, + "groth16_setup": 2.957974351942539, + "export_verification_key": 2.9508997034281492, + "download_trusted_setup_file": 0.0010457858443260193 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:33.146Z", - "perform_verify": false, + "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:36:30.574Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104014S", - "compute_time_sec": 0.104014, + "compute_time": "P0DT00H00M13.521983S", + "compute_time_sec": 13.521983, "compute_times": { - "prove": 0.06997583503834903, - "total": 0.11030748602934182, - "queued": 0.190603, - "clean_up": 0.013490295968949795, - "file_setup": 0.025196701986715198, - "save_results": 0.0012690169969573617 + "total": 14.785143690183759, + "queued": 27.741822, + "clean_up": 0.00823935680091381, + "create_cpp": 0.10304738581180573, + "file_setup": 1.505700759589672, + "compile_cpp": 7.270766986533999, + "create_r1cs": 0.07485816441476345, + "save_results": 0.0029987990856170654, + "get_r1cs_info": 0.0006173755973577499, + "groth16_setup": 2.891835331916809, + "export_verification_key": 2.924815448001027, + "download_trusted_setup_file": 0.0017245206981897354 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1719981, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:31.611Z", - "perform_verify": false, + "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-17T19:35:22.108Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095778S", - "compute_time_sec": 0.095778, + "compute_time": "P0DT00H00M13.399840S", + "compute_time_sec": 13.39984, "compute_times": { - "prove": 0.07503506389912218, - "total": 0.10164016194175929, - "queued": 0.139381, - "clean_up": 0.0031234719790518284, - "file_setup": 0.021389488014392555, - "save_results": 0.001648124074563384 + "total": 14.661026014015079, + "queued": 20.325028, + "clean_up": 0.005762990564107895, + "create_cpp": 0.07418840192258358, + "file_setup": 1.5508117154240608, + "compile_cpp": 7.441567042842507, + "create_r1cs": 0.0411736685782671, + "save_results": 0.003770258277654648, + "get_r1cs_info": 0.0007237941026687622, + "groth16_setup": 2.749024560675025, + "export_verification_key": 2.7917208038270473, + "download_trusted_setup_file": 0.0016946438699960709 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1650609, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:30.068Z", - "perform_verify": false, + "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", + "circuit_name": "my-circuit", + "circuit_type": "noir", + "date_created": "2023-12-17T18:49:58.483Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117298S", - "compute_time_sec": 0.117298, + "compute_time": "P0DT00H00M04.373831S", + "compute_time_sec": 4.373831, "compute_times": { - "prove": 0.08094484405592084, - "total": 0.1229423270560801, - "queued": 0.187289, - "clean_up": 0.0036458540707826614, - "file_setup": 0.03630347200669348, - "save_results": 0.0017006490379571915 + "total": 5.606248481199145, + "queued": 17.784967, + "clean_up": 0.000952577218413353, + "file_setup": 1.4592411685734987, + "nargo_checks": 4.145449373871088 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 724, + "uploaded_file_name": "my-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_circuit", + "noir_version": "0.17.0" }, { - "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:28.546Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:44:44.083Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117620S", - "compute_time_sec": 0.11762, + "compute_time": "P0DT00H00M00.215446S", + "compute_time_sec": 0.215446, "compute_times": { - "prove": 0.08068329095840454, - "total": 0.12468839401844889, - "queued": 0.209765, - "clean_up": 0.016898180008865893, - "file_setup": 0.024950645049102604, - "save_results": 0.001741672051139176 + "total": 1.39835050329566, + "queued": 1.360483, + "file_setup": 1.395031625404954, + "nargo_checks": 0.003077572211623192 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 742, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null + "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:27.002Z", - "perform_verify": false, + "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:51.455Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104327S", - "compute_time_sec": 0.104327, + "compute_time": "P0DT00H00M01.479235S", + "compute_time_sec": 1.479235, "compute_times": { - "prove": 0.08132059802301228, - "total": 0.1113810408860445, - "queued": 0.179005, - "clean_up": 0.0032090198947116733, - "file_setup": 0.024714926024898887, - "save_results": 0.0017327630193904042 + "total": 2.6415348909795284, + "queued": 1.942949, + "clean_up": 0.0005522631108760834, + "file_setup": 1.3729195687919855, + "nargo_checks": 1.2678131125867367 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 741, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "Hi2noir_Hi", + "noir_version": "0.17.0" }, { - "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:25.415Z", - "perform_verify": false, + "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:04.488Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124274S", - "compute_time_sec": 0.124274, + "compute_time": "P0DT00H00M01.415435S", + "compute_time_sec": 1.415435, "compute_times": { - "prove": 0.08284180099144578, - "total": 0.1500206938944757, - "queued": 0.246817, - "clean_up": 0.008343180874362588, - "file_setup": 0.037750212009996176, - "save_results": 0.0018301969394087791 + "total": 2.570197055116296, + "queued": 1.245783, + "clean_up": 0.00041295401751995087, + "file_setup": 1.3385441917926073, + "nargo_checks": 1.2309921570122242 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 737, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_Hi", + "noir_version": "0.17.0" }, { - "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:23.831Z", - "perform_verify": false, + "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:44.606Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118182S", - "compute_time_sec": 0.118182, + "compute_time": "P0DT00H00M01.405646S", + "compute_time_sec": 1.405646, "compute_times": { - "prove": 0.08728135202545673, - "total": 0.12324785895179957, - "queued": 0.220211, - "clean_up": 0.004102245904505253, - "file_setup": 0.03006090992130339, - "save_results": 0.0014706840738654137 + "total": 2.5658690985292196, + "queued": 1.186038, + "clean_up": 0.00047394633293151855, + "file_setup": 1.3717324659228325, + "nargo_checks": 1.1934157982468605 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 736, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_hi", + "noir_version": "0.17.0" }, { - "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:22.258Z", - "perform_verify": false, + "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:17.783Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.090207S", - "compute_time_sec": 0.090207, + "compute_time": "P0DT00H00M01.462830S", + "compute_time_sec": 1.46283, "compute_times": { - "prove": 0.06559745199047029, - "total": 0.0960762290051207, - "queued": 0.164689, - "clean_up": 0.0039045800222083926, - "file_setup": 0.024623307050205767, - "save_results": 0.0015745849814265966 + "total": 2.6199891455471516, + "queued": 1.25179, + "clean_up": 0.00041804835200309753, + "file_setup": 1.3820457514375448, + "nargo_checks": 1.2372824884951115 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 739, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "_noir_hi", + "noir_version": "0.17.0" }, { - "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:20.735Z", - "perform_verify": false, + "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:41:44.867Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108537S", - "compute_time_sec": 0.108537, + "compute_time": "P0DT00H00M01.422583S", + "compute_time_sec": 1.422583, "compute_times": { - "prove": 0.08191155781969428, - "total": 0.11576922796666622, - "queued": 0.172262, - "clean_up": 0.0039061829447746277, - "file_setup": 0.027977181132882833, - "save_results": 0.0015976580325514078 + "total": 2.580868471413851, + "queued": 1.187135, + "clean_up": 0.00045336224138736725, + "file_setup": 1.360721966251731, + "nargo_checks": 1.2194277700036764 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 727, + "uploaded_file_name": "_2noir-hi.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_hi", + "noir_version": "0.17.0" }, { - "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:19.166Z", - "perform_verify": false, + "circuit_id": "9c8a486c-4c18-4a7a-8e79-8100500a2660", + "circuit_name": "_2halo-hi", + "circuit_type": "halo2", + "date_created": "2023-12-13T16:37:57.886Z", + "num_proofs": 0, + "proving_scheme": "shplonk", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117779S", - "compute_time_sec": 0.117779, + "compute_time": "P0DT00H01M28.284700S", + "compute_time_sec": 88.2847, "compute_times": { - "prove": 0.08095375797711313, - "total": 0.12441346701234579, - "queued": 0.148608, - "clean_up": 0.01458131498657167, - "file_setup": 0.027128741960041225, - "save_results": 0.0013865360524505377 + "total": 89.44666199572384, + "queued": 2.165129, + "compile": 87.56292228028178, + "clean_up": 0.07346387021243572, + "file_setup": 1.3726620227098465, + "save_results": 0.04124521091580391, + "generate_keys": 0.3959560953080654, + "download_trusted_setup_file": 0.00015112943947315216 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 44933087, + "uploaded_file_name": "_2halo-hi.tar.gz", "verification_key": null, - "error": null + "error": null, + "class_name": "_2halo_hi::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, { - "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:17.494Z", - "perform_verify": false, + "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", + "circuit_name": "_noir-circuit-32", + "circuit_type": "noir", + "date_created": "2023-12-13T16:31:57.140Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106302S", - "compute_time_sec": 0.106302, + "compute_time": "P0DT00H00M06.154282S", + "compute_time_sec": 6.154282, "compute_times": { - "prove": 0.07591444090940058, - "total": 0.11228657700121403, - "queued": 0.146001, - "clean_up": 0.003584724967367947, - "file_setup": 0.03080855100415647, - "save_results": 0.0016646140720695257 + "total": 7.310710787773132, + "queued": 18.86527, + "clean_up": 0.00043790414929389954, + "file_setup": 1.3356177434325218, + "nargo_checks": 5.974256757646799 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 736, + "uploaded_file_name": "_noir-circuit-32.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit_32", + "noir_version": "0.17.0" }, { - "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:15.887Z", - "perform_verify": false, + "circuit_id": "ec12dd1d-75be-4729-bdd4-0ae924f2c8e6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T22:14:30.186Z", + "num_proofs": 0, + "proving_scheme": "shplonk", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106448S", - "compute_time_sec": 0.106448, + "compute_time": "P0DT00H01M20.814859S", + "compute_time_sec": 80.814859, "compute_times": { - "prove": 0.07768534799106419, - "total": 0.11450353683903813, - "queued": 0.211473, - "clean_up": 0.0034573860466480255, - "file_setup": 0.031260548159480095, - "save_results": 0.0016783778555691242 + "total": 82.05906438827515, + "queued": 1.410777, + "compile": 80.08948761411011, + "clean_up": 0.08174648880958557, + "file_setup": 1.495840536430478, + "save_results": 0.04187909886240959, + "generate_keys": 0.3492503445595503, + "download_trusted_setup_file": 0.00032539665699005127 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 44934523, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, { - "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:14.188Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "14124f66-b386-4da6-94c3-7c9504e59b55", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T21:21:17.813Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102464S", - "compute_time_sec": 0.102464, + "compute_time": "P0DT00H00M01.609091S", + "compute_time_sec": 1.609091, "compute_times": { - "prove": 0.0763863769825548, - "total": 0.10999432997778058, - "queued": 0.174275, - "clean_up": 0.004134346963837743, - "file_setup": 0.02737189899198711, - "save_results": 0.0017699809977784753 + "total": 1.430661918129772, + "queued": 1.232619, + "file_setup": 1.4302852991968393 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 6518, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: cargo --quiet build --release stdout: stderr: error: package `colored v2.1.0` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.69.0-nightly\nEither upgrade to rustc 1.70 or newer, or use\ncargo update -p colored@2.1.0 --precise ver\nwhere `ver` is the latest version of `colored` supporting rustc 1.69.0-nightly\n", + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, { - "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:12.610Z", - "perform_verify": false, + "circuit_id": "180aaddd-e613-42ba-a7d0-2b023e582fa6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T21:38:35.968Z", + "num_proofs": 0, + "proving_scheme": "shplonk", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113569S", - "compute_time_sec": 0.113569, + "compute_time": "P0DT00H02M31.452475S", + "compute_time_sec": 151.452475, "compute_times": { - "prove": 0.07715794199611992, - "total": 0.11932651698589325, - "queued": 0.146457, - "clean_up": 0.0038819999899715185, - "file_setup": 0.036451552994549274, - "save_results": 0.001485317014157772 + "total": 152.61581724137068, + "queued": 16.679736, + "compile": 150.85432086326182, + "clean_up": 0.08890871703624725, + "file_setup": 1.3426462803035975, + "save_results": 0.055491913110017776, + "generate_keys": 0.27397330291569233, + "download_trusted_setup_file": 0.00015251711010932922 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 44942284, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, { - "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:11.068Z", - "perform_verify": false, + "circuit_id": "1a12a25a-6ee5-48eb-96bb-2be6c57fe8a8", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T20:56:40.952Z", + "num_proofs": 0, + "proving_scheme": "shplonk", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106394S", - "compute_time_sec": 0.106394, + "compute_time": "P0DT00H02M47.087177S", + "compute_time_sec": 167.087177, "compute_times": { - "prove": 0.0750561070162803, - "total": 0.11352195288054645, - "queued": 0.24047, - "clean_up": 0.003913701977580786, - "file_setup": 0.03255474800243974, - "save_results": 0.0015891690272837877 + "total": 168.2553534731269, + "queued": 15.969391, + "compile": 166.52114362455904, + "clean_up": 0.08557339012622833, + "file_setup": 1.3397669158875942, + "save_results": 0.023856762796640396, + "generate_keys": 0.28439050912857056, + "download_trusted_setup_file": 0.00015943683683872223 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 44943541, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" }, { - "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:09.525Z", - "perform_verify": false, + "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:26:39.713Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109649S", - "compute_time_sec": 0.109649, + "compute_time": "P0DT00H00M01.813118S", + "compute_time_sec": 1.813118, "compute_times": { - "prove": 0.08671194792259485, - "total": 0.11610554496292025, - "queued": 0.204141, - "clean_up": 0.003892548964358866, - "file_setup": 0.02370181807782501, - "save_results": 0.0014596240362152457 + "total": 3.01790676638484, + "queued": 1.305567, + "clean_up": 0.000589149072766304, + "file_setup": 1.37160237506032, + "nargo_checks": 1.6454425044357777 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3951, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, { - "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:07.842Z", - "perform_verify": false, + "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:23:01.975Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098328S", - "compute_time_sec": 0.098328, + "compute_time": "P0DT00H00M04.488323S", + "compute_time_sec": 4.488323, "compute_times": { - "prove": 0.07331796106882393, - "total": 0.10486690199468285, - "queued": 0.18668, - "clean_up": 0.003999138018116355, - "file_setup": 0.02532154694199562, - "save_results": 0.0018700809450820088 + "total": 5.69258569739759, + "queued": 19.825139, + "clean_up": 0.0005774423480033875, + "file_setup": 1.3714763727039099, + "nargo_checks": 4.320127023383975 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 706, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, { - "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:06.256Z", - "perform_verify": false, + "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:09:13.111Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093768S", - "compute_time_sec": 0.093768, + "compute_time": "P0DT00H00M04.592621S", + "compute_time_sec": 4.592621, "compute_times": { - "prove": 0.07298256200738251, - "total": 0.09930887399241328, - "queued": 0.193559, - "clean_up": 0.003266245825216174, - "file_setup": 0.02109808987006545, - "save_results": 0.0015898591373115778 + "total": 5.8083343375474215, + "queued": 20.40929, + "clean_up": 0.0006539653986692429, + "file_setup": 1.3848200682550669, + "nargo_checks": 4.422410562634468 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3746, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" }, { - "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:04.726Z", - "perform_verify": false, + "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:46:56.192Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114898S", - "compute_time_sec": 0.114898, + "compute_time": "P0DT00H00M01.901192S", + "compute_time_sec": 1.901192, "compute_times": { - "prove": 0.08792952506337315, - "total": 0.12101772194728255, - "queued": 0.198222, - "clean_up": 0.003449682961218059, - "file_setup": 0.0276323159923777, - "save_results": 0.001681591966189444 + "total": 3.042013813741505, + "queued": 1.216309, + "clean_up": 0.0005592899397015572, + "file_setup": 1.3641308145597577, + "nargo_checks": 1.6769273420795798 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 646, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" }, { - "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:03.182Z", - "perform_verify": false, + "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:36.302Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106309S", - "compute_time_sec": 0.106309, + "compute_time": "P0DT00H00M03.854306S", + "compute_time_sec": 3.854306, "compute_times": { - "prove": 0.08149053400848061, - "total": 0.11204789008479565, - "queued": 0.144459, - "clean_up": 0.005163350026123226, - "file_setup": 0.023657753015868366, - "save_results": 0.0014256179565563798 + "total": 5.005337344482541, + "queued": 1.049939, + "clean_up": 0.0004933271557092667, + "file_setup": 1.3198325717821717, + "nargo_checks": 3.684743066318333 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 646, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" }, { - "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:01.643Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:01.042Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103945S", - "compute_time_sec": 0.103945, + "compute_time": "P0DT00H00M01.321372S", + "compute_time_sec": 1.321372, "compute_times": { - "prove": 0.07686708308756351, - "total": 0.11076140310615301, - "queued": 0.215168, - "clean_up": 0.0034544861409813166, - "file_setup": 0.028191099874675274, - "save_results": 0.001841096905991435 + "total": 2.4821140887215734, + "queued": 1.147771, + "file_setup": 1.3312397608533502, + "nargo_checks": 1.1506206970661879 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 649, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:59.991Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:42:50.433Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124189S", - "compute_time_sec": 0.124189, + "compute_time": "P0DT00H00M01.254776S", + "compute_time_sec": 1.254776, "compute_times": { - "prove": 0.07686379295773804, - "total": 0.12877459998708218, - "queued": 0.184586, - "clean_up": 0.00445067195687443, - "file_setup": 0.04572292300872505, - "save_results": 0.001407155068591237 + "total": 2.4055077601224184, + "queued": 1.040189, + "file_setup": 1.3746437635272741, + "nargo_checks": 1.0305692087858915 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 653, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:58.419Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:40:12.889Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115030S", - "compute_time_sec": 0.11503, + "compute_time": "P0DT00H00M02.165442S", + "compute_time_sec": 2.165442, "compute_times": { - "prove": 0.08519456698559225, - "total": 0.12087315297685564, - "queued": 0.141676, - "clean_up": 0.004536350024864078, - "file_setup": 0.02909989806357771, - "save_results": 0.0016625439748167992 + "total": 3.31729419529438, + "queued": 18.785446, + "file_setup": 1.312557090073824, + "nargo_checks": 2.004337651655078 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 642, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" }, { - "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:56.855Z", - "perform_verify": false, + "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:14:03.406Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116590S", - "compute_time_sec": 0.11659, + "compute_time": "P0DT00H00M02.700449S", + "compute_time_sec": 2.700449, "compute_times": { - "prove": 0.07413527299650013, - "total": 0.12391416006721556, - "queued": 0.170496, - "clean_up": 0.008216062095016241, - "file_setup": 0.03923204098828137, - "save_results": 0.0018532369285821915 + "total": 3.862834582105279, + "queued": 1.240923, + "clean_up": 0.0048230309039354324, + "file_setup": 1.4248666781932116, + "create_r1cs": 0.019674228504300117, + "create_wasm": 0.02921307645738125, + "save_results": 0.003329528495669365, + "get_r1cs_info": 0.00027392804622650146, + "groth16_setup": 1.1982815023511648, + "export_verification_key": 1.1812070365995169, + "download_trusted_setup_file": 0.0009372644126415253 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1537235, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:55.300Z", - "perform_verify": false, + "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:12:15.898Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.169733S", - "compute_time_sec": 0.169733, + "compute_time": "P0DT00H00M07.249043S", + "compute_time_sec": 7.249043, "compute_times": { - "prove": 0.13065553095657378, - "total": 0.17512868694029748, - "queued": 0.20835, - "clean_up": 0.010724585969001055, - "file_setup": 0.031707562040537596, - "save_results": 0.0017158209811896086 + "total": 8.408733254298568, + "queued": 1.325923, + "clean_up": 0.006613824516534805, + "create_cpp": 0.05350269004702568, + "file_setup": 1.4143117368221283, + "compile_cpp": 4.4514400865882635, + "create_r1cs": 0.020590879023075104, + "save_results": 0.002988070249557495, + "get_r1cs_info": 0.00036310404539108276, + "groth16_setup": 1.2632708046585321, + "export_verification_key": 1.1944759152829647, + "download_trusted_setup_file": 0.0009543616324663162 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1719868, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:53.639Z", - "perform_verify": false, + "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:08:10.932Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106419S", - "compute_time_sec": 0.106419, + "compute_time": "P0DT00H00M07.128823S", + "compute_time_sec": 7.128823, "compute_times": { - "prove": 0.07485338707920164, - "total": 0.11183754401281476, - "queued": 0.190518, - "clean_up": 0.006780734984204173, - "file_setup": 0.02835355990100652, - "save_results": 0.0015155170112848282 + "total": 8.290217800065875, + "queued": 1.176634, + "clean_up": 0.006579896435141563, + "create_cpp": 0.049633922055363655, + "file_setup": 1.407272644340992, + "compile_cpp": 4.411186024546623, + "create_r1cs": 0.020449023693799973, + "save_results": 0.0031916871666908264, + "get_r1cs_info": 0.0003460422158241272, + "groth16_setup": 1.1822046767920256, + "export_verification_key": 1.2081128470599651, + "download_trusted_setup_file": 0.0009996052831411362 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1719871, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.345Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:03:13.779Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095006S", - "compute_time_sec": 0.095006, + "compute_time": "P0DT00H00M00.214778S", + "compute_time_sec": 0.214778, "compute_times": { - "prove": 0.07408645702525973, - "total": 0.1002384020248428, - "queued": 1.425728, - "clean_up": 0.0037696199724450707, - "file_setup": 0.020419865963049233, - "save_results": 0.0015785649884492159 + "total": 1.39355612359941, + "queued": 1.091083, + "create_cpp": 0.005528604611754417, + "file_setup": 1.387480080127716 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1086, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.240Z", - "perform_verify": false, + "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:52.720Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122299S", - "compute_time_sec": 0.122299, + "compute_time": "P0DT00H00M07.127570S", + "compute_time_sec": 7.12757, "compute_times": { - "prove": 0.07692208106163889, - "total": 0.1297405599616468, - "queued": 0.908851, - "clean_up": 0.004496873007155955, - "file_setup": 0.04598465096205473, - "save_results": 0.002022817963734269 + "total": 8.300101362168789, + "queued": 1.180095, + "clean_up": 0.006741989403963089, + "create_cpp": 0.04977302439510822, + "file_setup": 1.3937485367059708, + "compile_cpp": 4.4108633529394865, + "create_r1cs": 0.020317360758781433, + "save_results": 0.003299059346318245, + "get_r1cs_info": 0.0003479979932308197, + "groth16_setup": 1.2352007273584604, + "export_verification_key": 1.1786142773926258, + "download_trusted_setup_file": 0.0009277686476707458 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1720407, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", - "perform_verify": false, + "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:30.461Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097774S", - "compute_time_sec": 0.097774, + "compute_time": "P0DT00H00M07.186269S", + "compute_time_sec": 7.186269, "compute_times": { - "prove": 0.07189441099762917, - "total": 0.10323353402782232, - "queued": 0.808925, - "clean_up": 0.008474385016597807, - "file_setup": 0.02089866902679205, - "save_results": 0.0015711949672549963 + "total": 8.347925985231996, + "queued": 1.11165, + "clean_up": 0.006883986294269562, + "create_cpp": 0.055882176384329796, + "file_setup": 1.3711591251194477, + "compile_cpp": 4.481259575113654, + "create_r1cs": 0.020169200375676155, + "save_results": 0.003566296771168709, + "get_r1cs_info": 0.00035143643617630005, + "groth16_setup": 1.192156182602048, + "export_verification_key": 1.2153031043708324, + "download_trusted_setup_file": 0.0009823162108659744 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 1720386, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:38.256Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118593S", - "compute_time_sec": 0.118593, + "compute_time": "P0DT00H00M00.180372S", + "compute_time_sec": 0.180372, "compute_times": { - "prove": 0.08002680214121938, - "total": 0.12483585509471595, - "queued": 1.709023, - "clean_up": 0.00412439089268446, - "file_setup": 0.03829952888190746, - "save_results": 0.00203027599491179 + "total": 1.3365695010870695, + "queued": 1.087627, + "create_cpp": 0.005229467526078224, + "file_setup": 1.331127068027854 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4524, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.112Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:05.065Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094018S", - "compute_time_sec": 0.094018, + "compute_time": "P0DT00H00M00.227270S", + "compute_time_sec": 0.22727, "compute_times": { - "prove": 0.07305821299087256, - "total": 0.09998789592646062, - "queued": 0.155203, - "clean_up": 0.0034407159546390176, - "file_setup": 0.021631687064655125, - "save_results": 0.001554804970510304 + "total": 1.387567725032568, + "queued": 1.200424, + "create_cpp": 0.005518514662981033, + "file_setup": 1.3818144612014294 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4516, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:39.613Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:49:50.199Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140531S", - "compute_time_sec": 0.140531, + "compute_time": "P0DT00H00M00.208167S", + "compute_time_sec": 0.208167, "compute_times": { - "prove": 0.09558549302164465, - "total": 0.146603410015814, - "queued": 0.185159, - "clean_up": 0.008305710973218083, - "file_setup": 0.040469719911925495, - "save_results": 0.0019295590464025736 + "total": 1.3689671531319618, + "queued": 1.304207, + "create_cpp": 0.005460506305098534, + "file_setup": 1.3632374834269285 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4516, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:38.083Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:47:15.011Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105803S", - "compute_time_sec": 0.105803, + "compute_time": "P0DT00H00M00.174086S", + "compute_time_sec": 0.174086, "compute_times": { - "prove": 0.0777802390512079, - "total": 0.11145833018235862, - "queued": 0.19316, - "clean_up": 0.0037183440290391445, - "file_setup": 0.02760996390134096, - "save_results": 0.0019434860441833735 + "total": 1.3330576121807098, + "queued": 19.864284, + "create_cpp": 0.005246447399258614, + "file_setup": 1.3275200203061104 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4483, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:36.595Z", - "perform_verify": false, + "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:05:13.309Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098145S", - "compute_time_sec": 0.098145, + "compute_time": "P0DT00H00M02.546964S", + "compute_time_sec": 2.546964, "compute_times": { - "prove": 0.0734365259995684, - "total": 0.10388228402007371, - "queued": 0.160378, - "clean_up": 0.004396509961225092, - "file_setup": 0.024077828973531723, - "save_results": 0.001595085021108389 + "total": 3.7097523529082537, + "queued": 1.209301, + "clean_up": 0.0005107801407575607, + "file_setup": 1.3446728140115738, + "create_r1cs": 0.007440237328410149, + "create_wasm": 0.016755376011133194, + "save_results": 0.0036186836659908295, + "get_r1cs_info": 0.00025043077766895294, + "groth16_setup": 1.1559293158352375, + "export_verification_key": 1.1794348638504744, + "download_trusted_setup_file": 0.0008941646665334702 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 54024, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:35.046Z", - "perform_verify": false, + "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:03:06.093Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102485S", - "compute_time_sec": 0.102485, + "compute_time": "P0DT00H00M02.578866S", + "compute_time_sec": 2.578866, "compute_times": { - "prove": 0.07241792895365506, - "total": 0.1082481580087915, - "queued": 0.195278, - "clean_up": 0.0035996510414406657, - "file_setup": 0.03052784502506256, - "save_results": 0.00135330599732697 + "total": 3.752036551013589, + "queued": 19.44917, + "clean_up": 0.0005340799689292908, + "file_setup": 1.3582166992127895, + "create_r1cs": 0.007758324965834618, + "create_wasm": 0.01886793226003647, + "save_results": 0.0029870178550481796, + "get_r1cs_info": 0.0002993810921907425, + "groth16_setup": 1.1675188429653645, + "export_verification_key": 1.1944289654493332, + "download_trusted_setup_file": 0.0009995810687541962 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 54024, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:33.547Z", - "perform_verify": false, + "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T19:28:31.237Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113940S", - "compute_time_sec": 0.11394, + "compute_time": "P0DT00H00M02.697079S", + "compute_time_sec": 2.697079, "compute_times": { - "prove": 0.08348662802018225, - "total": 0.12036114698275924, - "queued": 0.231884, - "clean_up": 0.00535669201053679, - "file_setup": 0.029328602133318782, - "save_results": 0.001801566919311881 + "total": 3.860771119594574, + "queued": 45.887615, + "clean_up": 0.0005786605179309845, + "file_setup": 1.3233154714107513, + "create_r1cs": 0.007670976221561432, + "create_wasm": 0.017503729090094566, + "save_results": 0.04876627214252949, + "get_r1cs_info": 0.0002490133047103882, + "groth16_setup": 1.2176049146801233, + "export_verification_key": 1.2436372973024845, + "download_trusted_setup_file": 0.0010085124522447586 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 54024, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:40.710Z", - "perform_verify": false, + "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:31:32.434Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108535S", - "compute_time_sec": 0.108535, + "compute_time": "P0DT00H00M02.383253S", + "compute_time_sec": 2.383253, "compute_times": { - "prove": 0.07331131701357663, - "total": 0.11277111305389553, - "queued": 0.17423, - "clean_up": 0.005777769023552537, - "file_setup": 0.031883755000308156, - "save_results": 0.0014830770669505 + "total": 3.5439179949462414, + "queued": 1.183641, + "clean_up": 0.0006380276754498482, + "file_setup": 1.3339016744866967, + "create_r1cs": 0.007884668186306953, + "create_wasm": 0.01797499507665634, + "save_results": 0.004143344238400459, + "get_r1cs_info": 0.000565793365240097, + "groth16_setup": 1.0339104048907757, + "export_verification_key": 1.1432477626949549, + "download_trusted_setup_file": 0.0013524582609534264 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 54025, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:39.000Z", - "perform_verify": false, + "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:27:06.804Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112695S", - "compute_time_sec": 0.112695, + "compute_time": "P0DT00H00M07.387682S", + "compute_time_sec": 7.387682, "compute_times": { - "prove": 0.07820799702312797, - "total": 0.1174575500190258, - "queued": 0.223544, - "clean_up": 0.004070866969414055, - "file_setup": 0.032682382967323065, - "save_results": 0.0021686870604753494 + "total": 8.548618336208165, + "queued": 18.71772, + "clean_up": 0.0012578116729855537, + "create_cpp": 0.04181432072073221, + "file_setup": 1.3276818674057722, + "compile_cpp": 5.035406060516834, + "create_r1cs": 0.008279835805296898, + "save_results": 0.003593659959733486, + "get_r1cs_info": 0.0006254948675632477, + "groth16_setup": 1.091116052120924, + "export_verification_key": 1.0372483730316162, + "download_trusted_setup_file": 0.0012065665796399117 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 229069, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 }, { - "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:37.260Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:12.963Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.107491S", - "compute_time_sec": 0.107491, + "compute_time": "P0DT00H00M00.167528S", + "compute_time_sec": 0.167528, "compute_times": { - "prove": 0.07868116302415729, - "total": 0.11423451104201376, - "queued": 0.210564, - "clean_up": 0.007490226998925209, - "file_setup": 0.025845387019217014, - "save_results": 0.0018579070456326008 + "total": 1.3633314277976751, + "queued": 1.187746, + "create_cpp": 0.005508816801011562, + "file_setup": 1.3575280215591192 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3143, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:35.691Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:02.472Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104645S", - "compute_time_sec": 0.104645, + "compute_time": "P0DT00H00M00.364457S", + "compute_time_sec": 0.364457, "compute_times": { - "prove": 0.07283521501813084, - "total": 0.11231476906687021, - "queued": 0.168258, - "clean_up": 0.0050119999796152115, - "file_setup": 0.032517564948648214, - "save_results": 0.0015029560308903456 + "total": 1.5177692053839564, + "queued": 1.273971, + "create_cpp": 0.0061752675101161, + "file_setup": 1.5113406758755445 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3149, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:34.182Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:14:05.849Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.101546S", - "compute_time_sec": 0.101546, + "compute_time": "P0DT00H00M00.285739S", + "compute_time_sec": 0.285739, "compute_times": { - "prove": 0.07385058398358524, - "total": 0.10622004000470042, - "queued": 0.214401, - "clean_up": 0.003409723984077573, - "file_setup": 0.02646243793424219, - "save_results": 0.0021518670255318284 + "total": 1.433143719099462, + "queued": 1.368079, + "create_cpp": 0.00570196658372879, + "file_setup": 1.4271633345633745 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3146, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:32.679Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:11:33.616Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122334S", - "compute_time_sec": 0.122334, + "compute_time": "P0DT00H00M00.190295S", + "compute_time_sec": 0.190295, "compute_times": { - "prove": 0.0876556090079248, - "total": 0.1313655290286988, - "queued": 0.230724, - "clean_up": 0.005932067055255175, - "file_setup": 0.03352665202692151, - "save_results": 0.0016483389772474766 + "total": 1.3479114715009928, + "queued": 1.174311, + "create_cpp": 0.006716226227581501, + "file_setup": 1.3409330770373344 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3148, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:31.191Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:09:43.690Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093953S", - "compute_time_sec": 0.093953, + "compute_time": "P0DT00H00M00.180634S", + "compute_time_sec": 0.180634, "compute_times": { - "prove": 0.07118937093764544, - "total": 0.09999781497754157, - "queued": 0.582409, - "clean_up": 0.0037945699878036976, - "file_setup": 0.023232951993122697, - "save_results": 0.0014598669949918985 + "total": 1.3301707739010453, + "queued": 1.267544, + "create_cpp": 0.00672531221061945, + "file_setup": 1.3231740267947316 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3140, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:29.642Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:08:33.991Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.183122S", - "compute_time_sec": 0.183122, + "compute_time": "P0DT00H00M00.182958S", + "compute_time_sec": 0.182958, "compute_times": { - "prove": 0.1029208250110969, - "total": 0.18900623894296587, - "queued": 0.193648, - "clean_up": 0.02979127294383943, - "file_setup": 0.051961387041956186, - "save_results": 0.0037548099644482136 + "total": 1.3482676716521382, + "queued": 23.976753, + "create_cpp": 0.005651121959090233, + "file_setup": 1.3422273648902774 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3141, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:27.981Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:48:47.509Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.202523S", - "compute_time_sec": 0.202523, + "compute_time": "P0DT00H00M00.247686S", + "compute_time_sec": 0.247686, "compute_times": { - "prove": 0.11456152913160622, - "total": 0.20906984992325306, - "queued": 0.208536, - "clean_up": 0.03386854100972414, - "file_setup": 0.05412821704521775, - "save_results": 0.006115625845268369 + "total": 1.4311082614585757, + "queued": 1.440336, + "create_cpp": 0.0059531861916184425, + "file_setup": 1.4248412810266018 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3144, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:26.328Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:48.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135499S", - "compute_time_sec": 0.135499, + "compute_time": "P0DT00H00M00.186337S", + "compute_time_sec": 0.186337, "compute_times": { - "prove": 0.07793003402184695, - "total": 0.14023755700327456, - "queued": 0.175288, - "clean_up": 0.0037696800427511334, - "file_setup": 0.0566352519672364, - "save_results": 0.0015117370057851076 + "total": 1.3291292237117887, + "queued": 1.389798, + "create_cpp": 0.005445321090519428, + "file_setup": 1.3232828453183174 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3144, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:54.687Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:16.025Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135335S", - "compute_time_sec": 0.135335, + "compute_time": "P0DT00H00M00.203844S", + "compute_time_sec": 0.203844, "compute_times": { - "prove": 0.07691952004097402, - "total": 0.14003189594950527, - "queued": 0.198802, - "clean_up": 0.00467289995867759, - "file_setup": 0.05562937702052295, - "save_results": 0.002484833006747067 + "total": 1.358934978954494, + "queued": 1.23962, + "create_cpp": 0.005131745710968971, + "file_setup": 1.3535515246912837 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3147, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:52.059Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:44:43.907Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138890S", - "compute_time_sec": 0.13889, + "compute_time": "P0DT00H00M00.211198S", + "compute_time_sec": 0.211198, "compute_times": { - "prove": 0.07692233612760901, - "total": 0.14497115998528898, - "queued": 0.215231, - "clean_up": 0.021985383005812764, - "file_setup": 0.044280862901359797, - "save_results": 0.0014082398265600204 + "total": 1.3726867232471704, + "queued": 21.28569, + "create_cpp": 0.04041997902095318, + "file_setup": 1.3318777102977037 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3118, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, { - "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:49.557Z", - "perform_verify": false, + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:58:52.961Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106026S", - "compute_time_sec": 0.106026, + "compute_time": "P0DT00H00M30.485776S", + "compute_time_sec": 30.485776, "compute_times": { - "prove": 0.07399564690422267, - "total": 0.11187266802880913, - "queued": 0.162814, - "clean_up": 0.0033016889356076717, - "file_setup": 0.03273502003867179, - "save_results": 0.0014213580871000886 + "total": 31.713325195014477, + "queued": 1.53179, + "clean_up": 0.0050907619297504425, + "create_cpp": 0.5502202846109867, + "file_setup": 1.4041321221739054, + "compile_cpp": 8.600912608206272, + "create_r1cs": 0.5660600401461124, + "save_results": 0.015263739973306656, + "get_r1cs_info": 0.0007791165262460709, + "groth16_setup": 18.966865327209234, + "export_verification_key": 1.5605580545961857, + "download_trusted_setup_file": 0.043034087866544724 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:47.111Z", - "perform_verify": false, + "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:57:39.629Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122971S", - "compute_time_sec": 0.122971, + "compute_time": "P0DT00H00M30.503827S", + "compute_time_sec": 30.503827, "compute_times": { - "prove": 0.07989700802136213, - "total": 0.12778416695073247, - "queued": 0.231593, - "clean_up": 0.004338543978519738, - "file_setup": 0.04149695695377886, - "save_results": 0.001680911984294653 + "total": 31.731675423681736, + "queued": 1.329617, + "clean_up": 0.005224447697401047, + "create_cpp": 0.5869219042360783, + "file_setup": 1.396010784432292, + "compile_cpp": 8.755487740039825, + "create_r1cs": 0.6137677505612373, + "save_results": 0.015961000695824623, + "get_r1cs_info": 0.0007797814905643463, + "groth16_setup": 18.781834876164794, + "export_verification_key": 1.5326797477900982, + "download_trusted_setup_file": 0.04255225136876106 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:44.587Z", - "perform_verify": false, + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:53:41.285Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128014S", - "compute_time_sec": 0.128014, + "compute_time": "P0DT00H00M29.404746S", + "compute_time_sec": 29.404746, "compute_times": { - "prove": 0.08263401291333139, - "total": 0.13507452490739524, - "queued": 0.233086, - "clean_up": 0.008105588844045997, - "file_setup": 0.04211885016411543, - "save_results": 0.0017826261464506388 + "total": 30.63611113280058, + "queued": 1.393016, + "clean_up": 0.004741033539175987, + "create_cpp": 0.5701096802949905, + "file_setup": 1.4058604761958122, + "compile_cpp": 8.18474044650793, + "create_r1cs": 0.5578694771975279, + "save_results": 0.012727703899145126, + "get_r1cs_info": 0.0007434040307998657, + "groth16_setup": 18.383400244638324, + "export_verification_key": 1.4725701548159122, + "download_trusted_setup_file": 0.042938267812132835 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:32.787Z", - "perform_verify": false, + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:50:43.511Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164615S", - "compute_time_sec": 0.164615, + "compute_time": "P0DT00H00M28.987369S", + "compute_time_sec": 28.987369, "compute_times": { - "prove": 0.11053177795838565, - "total": 0.17059254297055304, - "queued": 0.171935, - "clean_up": 0.004258243017829955, - "file_setup": 0.053978779003955424, - "save_results": 0.00145844800863415 + "total": 30.219565767794847, + "queued": 73.815898, + "clean_up": 0.005328845232725143, + "create_cpp": 0.5412574652582407, + "file_setup": 1.408054981380701, + "compile_cpp": 7.979971516877413, + "create_r1cs": 0.5340761709958315, + "save_results": 0.10810003615915775, + "get_r1cs_info": 0.0008541643619537354, + "groth16_setup": 18.02999261394143, + "export_verification_key": 1.5689898952841759, + "download_trusted_setup_file": 0.04256066307425499 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 7382369, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 }, { - "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", + "circuit_name": "my-circuit", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:29.506Z", - "perform_verify": false, - "status": "Ready", + "date_created": "2023-12-02T00:28:21.086Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.289266S", - "compute_time_sec": 0.289266, + "compute_time": "P0DT00H00M12.293107S", + "compute_time_sec": 12.293107, "compute_times": { - "prove": 0.08642632805276662, - "total": 0.29704258195124567, - "queued": 0.183331, - "clean_up": 0.15804533392656595, - "file_setup": 0.05037923192139715, - "save_results": 0.0017682620091363788 + "total": 1.540343570522964, + "queued": 1.149716, + "file_setup": 1.5400111814960837 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3876, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", + "curve": "bls24-315", + "gnark_version": "v0.9.0" }, { - "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", + "circuit_name": "my-circuit", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:26.174Z", - "perform_verify": false, + "date_created": "2023-12-02T00:27:16.183Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.178451S", - "compute_time_sec": 0.178451, + "compute_time": "P0DT00H00M16.323835S", + "compute_time_sec": 16.323835, "compute_times": { - "prove": 0.12590954499319196, - "total": 0.18570560100488365, - "queued": 0.238111, - "clean_up": 0.02239793981425464, - "file_setup": 0.03476291592232883, - "save_results": 0.002222753129899502 + "total": 17.493196861818433, + "queued": 20.294201, + "compile": 15.894271181896329, + "clean_up": 0.06409060023725033, + "file_setup": 1.479825496673584, + "save_results": 0.030155125074088573, + "compile_r1cs_and_keygen": 0.024464260786771774 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19740582, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bls24-315", + "gnark_version": "v0.9.0" }, { - "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", + "circuit_name": "gnark", "circuit_type": "gnark", - "date_created": "2024-03-02T21:10:50.403Z", - "perform_verify": false, + "date_created": "2023-12-02T00:02:34.146Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150832S", - "compute_time_sec": 0.150832, + "compute_time": "P0DT00H00M12.571758S", + "compute_time_sec": 12.571758, "compute_times": { - "prove": 0.11755112698301673, - "total": 0.2853551240405068, - "queued": 0.335902, - "clean_up": 0.007708279998041689, - "file_setup": 0.029812542023137212, - "save_results": 0.0016887020319700241 + "total": 13.761676067486405, + "queued": 1.17776, + "compile": 12.108159688301384, + "clean_up": 0.0739858876913786, + "file_setup": 1.5122289564460516, + "save_results": 0.0421032914891839, + "compile_r1cs_and_keygen": 0.02487844880670309 }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19740713, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bw6-633", + "gnark_version": "v0.9.0" }, { - "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", + "circuit_name": "gnark", "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:47.502Z", - "perform_verify": false, + "date_created": "2023-12-01T23:54:25.971Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.078444S", - "compute_time_sec": 0.078444, + "compute_time": "P0DT00H00M15.096119S", + "compute_time_sec": 15.096119, "compute_times": { - "prove": 0.05746597901452333, - "total": 0.08412136998958886, - "queued": 0.181406, - "clean_up": 0.0030666429083794355, - "file_setup": 0.021971813053824008, - "save_results": 0.0012382810236886144 + "total": 16.24127036239952, + "queued": 18.859283, + "compile": 14.711085448041558, + "clean_up": 0.060433197766542435, + "file_setup": 1.4220957215875387, + "save_results": 0.03548778221011162, + "compile_r1cs_and_keygen": 0.011818661354482174 }, - "file_size": 451, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19740996, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", + "circuit_name": "cubic", "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:39.474Z", - "perform_verify": false, + "date_created": "2023-12-01T23:30:10.306Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.085495S", - "compute_time_sec": 0.085495, + "compute_time": "P0DT00H00M11.119803S", + "compute_time_sec": 11.119803, "compute_times": { - "prove": 0.05661044199950993, - "total": 0.08519881102256477, - "queued": 0.2228, - "file_setup": 0.028238292085006833 + "total": 1.4363502692431211, + "queued": 1.930609, + "file_setup": 1.4360267175361514 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19555, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:04:03.037Z", - "perform_verify": false, + "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:26:29.959Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.039789S", - "compute_time_sec": 0.039789, + "compute_time": "P0DT00H00M13.939780S", + "compute_time_sec": 13.93978, "compute_times": { - "total": 0.04271465499186888, - "queued": 0.225284, - "file_setup": 0.01975348498672247, - "generate_witness_c": 0.022592113993596286 + "total": 1.4325123187154531, + "queued": 47.459123, + "file_setup": 1.4321166425943375 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3976, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:02:47.565Z", - "perform_verify": false, + "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:11:51.697Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.083115S", - "compute_time_sec": 0.083115, + "compute_time": "P0DT00H00M13.350788S", + "compute_time_sec": 13.350788, "compute_times": { - "total": 0.08423641003901139, - "queued": 0.18931, - "file_setup": 0.047118005983065814, - "generate_witness_c": 0.03662721102591604 + "total": 1.6208326760679483, + "queued": 19.954132, + "file_setup": 1.6202213428914547 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3976, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:02:37.757Z", - "perform_verify": false, - "status": "Failed", + "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:56:28.365Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.060050S", - "compute_time_sec": 0.06005, + "compute_time": "P0DT00H00M11.241851S", + "compute_time_sec": 11.241851, "compute_times": { - "total": 0.12728848890401423, - "queued": 0.250848, - "file_setup": 0.09145022416487336, - "generate_witness_c": 0.03525270987302065 + "total": 12.474130183458328, + "queued": 1.420551, + "compile": 10.825671127066016, + "clean_up": 0.061418959870934486, + "file_setup": 1.5227604731917381, + "save_results": 0.04108254425227642, + "compile_r1cs_and_keygen": 0.022699812427163124 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19741724, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:00:37.596Z", - "perform_verify": false, - "status": "Failed", + "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:55:10.340Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.056679S", - "compute_time_sec": 0.056679, + "compute_time": "P0DT00H00M11.246401S", + "compute_time_sec": 11.246401, "compute_times": { - "total": 0.12009319197386503, - "queued": 0.559087, - "file_setup": 0.08946515002753586, - "generate_witness_c": 0.030112746986560524 + "total": 12.475918658077717, + "queued": 1.465348, + "compile": 10.844971090555191, + "clean_up": 0.05561045743525028, + "file_setup": 1.5209588538855314, + "save_results": 0.032638829201459885, + "compile_r1cs_and_keygen": 0.021452149376273155 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19741716, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", - "circuit_name": "hash-checker", - "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", - "circuit_type": "circom", - "date_created": "2024-02-16T16:46:40.976Z", - "perform_verify": false, + "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:53:46.296Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.341615S", - "compute_time_sec": 5.341615, + "compute_time": "P0DT00H00M11.258641S", + "compute_time_sec": 11.258641, "compute_times": { - "prove": 5.2774561159312725, - "total": 5.348625190556049, - "queued": 0.208614, - "clean_up": 0.005355444736778736, - "file_setup": 0.0357542559504509, - "save_results": 0.0016373288817703724, - "generate_witness_c": 0.02802356705069542 + "total": 12.491810835897923, + "queued": 1.516986, + "compile": 10.808460559695959, + "clean_up": 0.06728884018957615, + "file_setup": 1.5511275846511126, + "save_results": 0.04296918027102947, + "compile_r1cs_and_keygen": 0.021483000367879868 }, - "file_size": 789, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19741716, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_type": "circom", - "date_created": "2024-02-15T19:09:39.253Z", - "perform_verify": false, - "status": "Failed", + "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:52:51.464Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.042131S", - "compute_time_sec": 0.042131, + "compute_time": "P0DT00H00M11.176662S", + "compute_time_sec": 11.176662, "compute_times": { - "total": 0.04482376802479848, - "queued": 0.207543, - "file_setup": 0.023827903962228447, - "generate_witness_c": 0.020594758039806038 + "total": 12.414811408147216, + "queued": 1.367679, + "compile": 10.73251723125577, + "clean_up": 0.08182202465832233, + "file_setup": 1.5543472524732351, + "save_results": 0.023770425468683243, + "compile_r1cs_and_keygen": 0.021878626197576523 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 19741718, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_type": "circom", - "date_created": "2024-02-15T19:08:49.137Z", - "perform_verify": false, + "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:50:44.245Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055379S", - "compute_time_sec": 0.055379, + "compute_time": "P0DT00H00M14.090040S", + "compute_time_sec": 14.09004, "compute_times": { - "total": 0.0464545710128732, - "queued": 0.187821, - "file_setup": 0.023604326997883618, - "generate_witness_c": 0.022402279020752758 + "total": 1.543837545439601, + "queued": 21.153753, + "file_setup": 1.5434527061879635 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4148, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:53:18.626Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:29:14.159Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.674886S", - "compute_time_sec": 1.674886, + "compute_time": "P0DT00H00M10.460622S", + "compute_time_sec": 10.460622, "compute_times": { - "prove": 1.6106855850666761, - "total": 1.682134603150189, - "queued": 0.21114, - "clean_up": 0.015362400561571121, - "file_setup": 0.038011837750673294, - "save_results": 0.0016225874423980713, - "generate_witness_c": 0.016064194962382317 + "total": 1.5692181382328272, + "queued": 1.442896, + "file_setup": 1.568734273314476 }, - "file_size": 713, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4148, + "uploaded_file_name": "", "verification_key": null, - "error": null + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:49:33.830Z", - "perform_verify": false, + "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:21:25.657Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.049663S", - "compute_time_sec": 0.049663, - "compute_times": { - "total": 0.05284719355404377, - "queued": 0.217998, - "file_setup": 0.04036730155348778, - "generate_witness_c": 0.012098094448447227 + "compute_time": "P0DT00H00M14.046979S", + "compute_time_sec": 14.046979, + "compute_times": { + "total": 1.551876936107874, + "queued": 18.025252, + "file_setup": 1.5510845798999071 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 4143, + "uploaded_file_name": "", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" }, { - "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", + "circuit_name": "multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:48:55.324Z", + "date_created": "2023-12-01T19:22:16.230Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.920270S", + "compute_time_sec": 7.92027, + "compute_times": { + "total": 9.144548835232854, + "queued": 26.442871, + "clean_up": 0.0016796644777059555, + "create_cpp": 0.05204322002828121, + "file_setup": 1.3975976463407278, + "compile_cpp": 4.545235302299261, + "create_r1cs": 0.008858315646648407, + "save_results": 0.005187435075640678, + "get_r1cs_info": 0.0006442461162805557, + "groth16_setup": 1.5628649536520243, + "export_verification_key": 1.5673195589333773, + "download_trusted_setup_file": 0.0025161877274513245 + }, + "file_size": 225511, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + } + ], + "rawHeaders": [ + "Content-Length", + "238519", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_smart_contract_calldata=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "441c1d46-a6e4-4e73-98be-1c87e892c9bb", + "circuit_name": "circom-multiplier2", + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:58.370Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.052811S", - "compute_time_sec": 0.052811, + "compute_time": "P0DT00H00M04.948502S", + "compute_time_sec": 4.948502, "compute_times": { - "total": 0.05608381051570177, - "queued": 0.226522, - "file_setup": 0.03871022444218397, - "generate_witness_c": 0.01696752943098545 + "prove": 4.804858028001036, + "total": 4.954793066997809, + "queued": 4.113693, + "clean_up": 0.005270341996947536, + "file_setup": 0.01681686499796342, + "save_results": 0.0022578030002478044, + "export_calldata": 0.10960615099975257, + "generate_witness_c": 0.015163871001277585 }, - "file_size": null, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "proof_id": "bfe813bc-8ba4-4c16-88bd-4460709b37b4", + "circuit_name": "circom-multiplier2", + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", "circuit_type": "circom", - "date_created": "2024-02-15T16:47:58.610Z", + "date_created": "2024-03-14T20:01:57.254Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.057437S", - "compute_time_sec": 0.057437, + "compute_time": "P0DT00H00M05.744789S", + "compute_time_sec": 5.744789, "compute_times": { - "total": 0.05853192321956158, - "queued": 0.205516, - "file_setup": 0.043163422495126724, - "generate_witness_c": 0.014894634485244751 + "prove": 5.5894722339980945, + "total": 5.752321984997252, + "queued": 0.442669, + "clean_up": 0.004489405997446738, + "file_setup": 0.022617268001340562, + "save_results": 0.001973251000890741, + "export_calldata": 0.11522039000192308, + "generate_witness_c": 0.01802813399990555 }, - "file_size": null, + "file_size": 1351, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "proof_id": "57b86e24-c6ed-440d-b889-d830850742d4", + "circuit_name": "circom-multiplier2", + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", "circuit_type": "circom", - "date_created": "2024-02-15T16:47:01.336Z", + "date_created": "2024-03-14T20:01:57.234Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055829S", - "compute_time_sec": 0.055829, + "compute_time": "P0DT00H00M03.776612S", + "compute_time_sec": 3.776612, "compute_times": { - "total": 0.05997238401323557, - "queued": 0.250181, - "file_setup": 0.04254392720758915, - "generate_witness_c": 0.01698323991149664 + "prove": 3.6362894689991663, + "total": 3.7815391939984693, + "queued": 0.526972, + "clean_up": 0.0036153680011921097, + "file_setup": 0.018255920000228798, + "save_results": 0.0018909639984485693, + "export_calldata": 0.10398840000198106, + "generate_witness_c": 0.017069464000087464 }, - "file_size": null, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", - "circuit_name": "semaphore", - "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "proof_id": "249f452d-2c55-4148-97ea-bc05b735e041", + "circuit_name": "circom-multiplier2", + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", "circuit_type": "circom", - "date_created": "2024-02-15T16:45:59.082Z", + "date_created": "2024-03-14T20:01:57.171Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.074886S", - "compute_time_sec": 0.074886, + "compute_time": "P0DT00H00M05.603900S", + "compute_time_sec": 5.6039, "compute_times": { - "total": 0.07638306729495525, - "queued": 0.222935, - "file_setup": 0.05688828695565462, - "generate_witness_c": 0.019095703959465027 + "prove": 5.459078328000032, + "total": 5.610627756999747, + "queued": 0.420203, + "clean_up": 0.004868047999480041, + "file_setup": 0.02211545399768511, + "save_results": 0.0022768349990656134, + "export_calldata": 0.10511248600232648, + "generate_witness_c": 0.01666070999999647 }, - "file_size": null, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "proof_id": "3ee89584-01a2-4d8f-ac17-7502e50a8781", + "circuit_name": "circom-multiplier2", + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", "circuit_type": "circom", - "date_created": "2024-02-12T16:08:49.852Z", + "date_created": "2024-03-14T20:01:00.995Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118463S", - "compute_time_sec": 0.118463, + "compute_time": "P0DT00H00M03.405317S", + "compute_time_sec": 3.405317, "compute_times": { - "total": 0.11371562909334898, - "queued": 0.165321, - "file_setup": 0.02585006970912218, - "generate_witness_wasm": 0.08747230330482125 + "prove": 3.257512511998357, + "total": 3.412531285001023, + "queued": 0.445626, + "clean_up": 0.003913354001269909, + "file_setup": 0.02324151900029392, + "save_results": 0.0026117130000784528, + "export_calldata": 0.10888770000019576, + "generate_witness_c": 0.015812714998901356 }, - "file_size": null, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "proof_id": "efaa6bf4-3645-4880-a193-d6bd116274c7", + "circuit_name": "circom-multiplier2", + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", "circuit_type": "circom", - "date_created": "2024-02-12T16:08:15.347Z", + "date_created": "2024-03-14T20:00:52.681Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087104S", - "compute_time_sec": 0.087104, + "compute_time": "P0DT00H00M05.934746S", + "compute_time_sec": 5.934746, "compute_times": { - "total": 0.08892976585775614, - "queued": 0.188521, - "file_setup": 0.02122315624728799, - "generate_witness_wasm": 0.06728191487491131 + "prove": 5.787349419999373, + "total": 5.939744459999929, + "queued": 0.495867, + "clean_up": 0.0040207270030805375, + "file_setup": 0.019113056998321554, + "save_results": 0.0023805119999451563, + "export_calldata": 0.10894711299988558, + "generate_witness_c": 0.017442213000322226 }, - "file_size": null, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "proof_id": "dcb84b60-ecdf-4ea0-94da-4900d30aabab", + "circuit_name": "circom-multiplier2", + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", "circuit_type": "circom", - "date_created": "2024-02-12T16:07:32.862Z", + "date_created": "2024-03-14T20:00:41.570Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.629850S", - "compute_time_sec": 0.62985, + "compute_time": "P0DT00H00M05.617362S", + "compute_time_sec": 5.617362, "compute_times": { - "total": 0.699215236119926, - "queued": 20.443074, - "file_setup": 0.08142021484673023, - "generate_witness_wasm": 0.6153158713132143 + "prove": 5.474078178998752, + "total": 5.622463510000671, + "queued": 0.418167, + "clean_up": 0.00803620700025931, + "file_setup": 0.018854406000173185, + "save_results": 0.0017511790028947871, + "export_calldata": 0.10220659499827889, + "generate_witness_c": 0.01688886800184264 }, - "file_size": null, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", - "circuit_name": "hashchecker", - "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "proof_id": "8e5c7aaa-802e-4745-9bf2-66019dd1a601", + "circuit_name": "circom-multiplier2", + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", "circuit_type": "circom", - "date_created": "2024-02-11T19:51:56.269Z", + "date_created": "2024-03-14T20:00:22.558Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.556787S", - "compute_time_sec": 3.556787, + "compute_time": "P0DT00H00M03.001802S", + "compute_time_sec": 3.001802, "compute_times": { - "total": 3.282685193931684, - "queued": 31.156839, - "file_setup": 0.9440451499540359, - "generate_witness_wasm": 2.1537286299280822 + "prove": 2.850486497001839, + "total": 3.0079437349995715, + "queued": 0.429195, + "clean_up": 0.00477394299741718, + "file_setup": 0.02143064499978209, + "save_results": 0.002050779999990482, + "export_calldata": 0.11096191999968141, + "generate_witness_c": 0.017688288000499597 }, - "file_size": null, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", - "circuit_name": "hashchecker", - "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "proof_id": "6f9d5bd9-f691-4665-8ba8-1fc3ad30f4da", + "circuit_name": "circom-multiplier2", + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", "circuit_type": "circom", - "date_created": "2024-02-11T19:35:59.958Z", + "date_created": "2024-03-14T20:00:03.354Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.786155S", - "compute_time_sec": 5.786155, + "compute_time": "P0DT00H00M05.965728S", + "compute_time_sec": 5.965728, "compute_times": { - "prove": 1.6357202199287713, - "total": 5.85425769793801, - "queued": 1.584852, - "clean_up": 0.9189370227977633, - "file_setup": 0.8701981450431049, - "save_results": 0.24538314412347972, - "generate_witness_wasm": 2.1234320180956274 + "prove": 5.812987373999931, + "total": 5.971253014999093, + "queued": 0.495867, + "clean_up": 0.005065063000074588, + "file_setup": 0.025277897002524696, + "save_results": 0.002423641999484971, + "export_calldata": 0.10757091800041962, + "generate_witness_c": 0.017406072998710442 }, - "file_size": 712, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "proof_id": "6281a4c2-09a1-4945-84bc-b550dccd7a50", + "circuit_name": "circom-multiplier2", + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", "circuit_type": "circom", - "date_created": "2024-02-11T19:34:56.907Z", + "date_created": "2024-03-14T19:53:16.126Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.387894S", - "compute_time_sec": 2.387894, + "compute_time": "P0DT00H00M02.228147S", + "compute_time_sec": 2.228147, "compute_times": { - "total": 1.9064474820625037, - "queued": 1.557474, - "file_setup": 0.8709360021166503, - "generate_witness_wasm": 0.9751034409273416 + "prove": 2.077421851001418, + "total": 2.234921953000594, + "queued": 0.418659, + "clean_up": 0.003966344000218669, + "file_setup": 0.030404459001147188, + "save_results": 0.0023475250018236693, + "export_calldata": 0.10374246599894832, + "generate_witness_c": 0.016470030997879803 }, - "file_size": null, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "proof_id": "2dc6b159-345d-4f56-8b8f-d8bb8628fa63", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", "circuit_type": "circom", - "date_created": "2024-02-11T19:34:33.443Z", + "date_created": "2024-03-14T19:52:45.755Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.213770S", - "compute_time_sec": 2.21377, + "compute_time": "P0DT00H00M05.721447S", + "compute_time_sec": 5.721447, "compute_times": { - "total": 1.6578402749728411, - "queued": 1.501643, - "file_setup": 0.8060235111042857, - "generate_witness_wasm": 0.791354832937941 + "prove": 5.535044663996814, + "total": 5.726598596997064, + "queued": 0.422717, + "clean_up": 0.03942027899756795, + "file_setup": 0.019663279999804217, + "save_results": 0.002537604003009619, + "export_calldata": 0.11143504299980123, + "generate_witness_c": 0.018077863001963124 }, - "file_size": null, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "proof_id": "c7c29d0f-2294-4c56-9115-58e4f88a74af", + "circuit_name": "circom-multiplier2", + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", "circuit_type": "circom", - "date_created": "2024-02-11T19:33:12.169Z", + "date_created": "2024-03-14T19:52:35.490Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.888816S", - "compute_time_sec": 5.888816, + "compute_time": "P0DT00H00M05.927519S", + "compute_time_sec": 5.927519, "compute_times": { - "total": 5.5928051138762385, - "queued": 20.021632, - "file_setup": 0.9408337560016662, - "generate_witness_wasm": 4.466476025991142 + "prove": 5.770760945000802, + "total": 5.933365464999952, + "queued": 0.861562, + "clean_up": 0.003432298999541672, + "file_setup": 0.026692643001297256, + "save_results": 0.0025084219996642787, + "export_calldata": 0.105197737000708, + "generate_witness_c": 0.024245210999652045 }, - "file_size": null, + "file_size": 1347, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "proof_id": "e008931a-4064-414d-accb-aac8b3205dd3", "circuit_name": "circom-multiplier2", - "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", "circuit_type": "circom", - "date_created": "2024-01-31T18:16:21.991Z", + "date_created": "2024-03-14T19:52:24.665Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.895357S", - "compute_time_sec": 0.895357, + "compute_time": "P0DT00H00M05.632578S", + "compute_time_sec": 5.632578, "compute_times": { - "prove": 0.6790756830014288, - "total": 0.968905714340508, - "queued": 0.662781, - "clean_up": 0.00029797712340950966, - "file_setup": 0.2733065038919449, - "save_results": 0.003135905135422945, - "generate_witness_c": 0.012809758074581623 + "prove": 5.469727709001745, + "total": 5.638864864002244, + "queued": 0.416688, + "clean_up": 0.00552048399913474, + "file_setup": 0.034471152001060545, + "save_results": 0.0021238860026642215, + "export_calldata": 0.1107287599988922, + "generate_witness_c": 0.015849075996811735 }, - "file_size": 712, + "file_size": 1345, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "proof_id": "62ef1d39-1cc1-41e2-8b05-ae3cf2c6bafa", "circuit_name": "circom-multiplier2", - "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:45.826Z", + "date_created": "2024-03-14T19:46:54.345Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.942551S", - "compute_time_sec": 0.942551, + "compute_time": "P0DT00H00M01.864568S", + "compute_time_sec": 1.864568, "compute_times": { - "prove": 0.7584659070707858, - "total": 1.0125216851010919, - "queued": 13.788636, - "clean_up": 0.00025292718783020973, - "file_setup": 0.24108529277145863, - "save_results": 0.0026897299103438854, - "generate_witness_c": 0.009630681946873665 + "prove": 1.6979890130023705, + "total": 1.8710837769976933, + "queued": 0.420843, + "clean_up": 0.004697303000284592, + "file_setup": 0.03166239900019718, + "save_results": 0.0022494080003525596, + "export_calldata": 0.11624086399751832, + "generate_witness_c": 0.017705917998682708 }, - "file_size": 712, + "file_size": 1353, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "proof_id": "b0e83342-ed0f-4847-a564-7e1189f9ddec", "circuit_name": "circom-multiplier2", - "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:26.403Z", + "date_created": "2024-03-14T19:46:50.463Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.306255S", - "compute_time_sec": 3.306255, + "compute_time": "P0DT00H00M05.917205S", + "compute_time_sec": 5.917205, "compute_times": { - "prove": 2.568090456072241, - "total": 3.37676440179348, - "queued": 28.788691, - "clean_up": 0.0003418959677219391, - "file_setup": 0.241387109272182, - "save_results": 0.002813168801367283, - "generate_witness_c": 0.5637943758629262 + "prove": 5.76882896099778, + "total": 5.923281269002473, + "queued": 0.473413, + "clean_up": 0.004220196002279408, + "file_setup": 0.023053355002048193, + "save_results": 0.002412202000414254, + "export_calldata": 0.11001600300005521, + "generate_witness_c": 0.014210194000042975 }, - "file_size": 713, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "proof_id": "31737430-a60c-4afa-a802-ab9745a50855", "circuit_name": "circom-multiplier2", - "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:18.014Z", + "date_created": "2024-03-14T19:46:29.388Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.490489S", - "compute_time_sec": 5.490489, + "compute_time": "P0DT00H00M03.190486S", + "compute_time_sec": 3.190486, "compute_times": { - "prove": 5.2387496647425, - "total": 5.556455092970282, - "queued": 30.599597, - "clean_up": 0.000279237050563097, - "file_setup": 0.23077922780066729, - "save_results": 0.006773914210498333, - "generate_witness_c": 0.07928962633013725 + "prove": 3.0487610410018533, + "total": 3.1961618709974573, + "queued": 0.433578, + "clean_up": 0.005094486998132197, + "file_setup": 0.019373082999663893, + "save_results": 0.002381483998760814, + "export_calldata": 0.1057304940004542, + "generate_witness_c": 0.01445452500047395 }, - "file_size": 711, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", - "circuit_name": "sudoku", - "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "proof_id": "1d3b53dd-df47-4eac-a4a8-63e8dcb4fba0", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", "circuit_type": "circom", - "date_created": "2023-12-02T03:59:27.851Z", + "date_created": "2024-03-14T19:46:29.327Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.854809S", - "compute_time_sec": 7.854809, + "compute_time": "P0DT00H00M05.765340S", + "compute_time_sec": 5.76534, "compute_times": { - "prove": 4.957428568042815, - "total": 9.034430680796504, - "queued": 0.697877, - "clean_up": 0.001238434575498104, - "file_setup": 3.9956598421558738, - "save_results": 0.07156617846339941, - "generate_witness_c": 0.008326929062604904 + "prove": 5.587391068998841, + "total": 5.7718329329982225, + "queued": 0.447915, + "clean_up": 0.0038716149974789005, + "file_setup": 0.020665116000600392, + "save_results": 0.0016502670005138498, + "export_calldata": 0.140346321000834, + "generate_witness_c": 0.01741997200224432 }, - "file_size": 1037, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", - "circuit_name": "sudoku", - "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "proof_id": "6db92f74-636d-4113-a191-016d31af5a60", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2023-12-02T03:54:14.687Z", + "date_created": "2024-03-14T19:40:56.709Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.475101S", - "compute_time_sec": 8.475101, + "compute_time": "P0DT00H00M06.111263S", + "compute_time_sec": 6.111263, "compute_times": { - "prove": 5.822698147967458, - "total": 9.663341652601957, - "queued": 0.474116, - "clean_up": 0.0010337075218558311, - "file_setup": 3.76318403147161, - "save_results": 0.06816541589796543, - "generate_witness_c": 0.007991122081875801 + "prove": 5.801642374000949, + "total": 6.118132268999034, + "queued": 0.417176, + "clean_up": 0.15879904399844236, + "file_setup": 0.028945090998604428, + "save_results": 0.002337395002541598, + "export_calldata": 0.10591289899821277, + "generate_witness_c": 0.020032639000419294 }, - "file_size": 1037, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", - "circuit_name": "sudoku", - "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", - "circuit_type": "circom", - "date_created": "2023-12-02T03:52:28.815Z", + "proof_id": "28c4506e-ccd4-443c-90f3-adb25eb4ad03", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:40:37.936Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.662090S", - "compute_time_sec": 6.66209, + "compute_time": "P0DT00H00M08.087169S", + "compute_time_sec": 8.087169, "compute_times": { - "prove": 5.845281148329377, - "total": 7.817341674119234, - "queued": 28.321561, - "clean_up": 0.0009510181844234467, - "file_setup": 1.8957333201542497, - "save_results": 0.06738575547933578, - "generate_witness_c": 0.007616886869072914 + "total": 8.095745701000851, + "queued": 0.430515, + "clean_up": 6.9514737549980055, + "file_setup": 0.5215178199978254, + "create_proof": 0.6202040329990268, + "save_results": 0.0021520290029002354 }, - "file_size": 1037, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "187148", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727978614b3251373269376d357547497a590d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727978614b3251373269376d357547497a590d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727978614b3251373269376d357547497a592d2d0d0a", - "status": 201, - "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", - "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "554", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/list?include_verification_key=false", - "body": "", - "status": 200, - "response": [ + }, { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "proof_id": "854a000e-771d-4f12-b0a7-72860557d1b4", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:35:35.367Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_time": "P0DT00H00M05.625640S", + "compute_time_sec": 5.62564, + "compute_times": { + "total": 5.63317780899888, + "queued": 0.426409, + "clean_up": 4.479961421999178, + "file_setup": 0.563317954998638, + "create_proof": 0.587274489000265, + "save_results": 0.002000247000978561 + }, + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", - "circuit_name": "circom-multiplier2", + "proof_id": "38d6cdd9-8ae0-4bba-a019-be7beb4676a0", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T19:15:59.739Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_time": "P0DT00H00M08.028110S", + "compute_time_sec": 8.02811, + "compute_times": { + "prove": 5.743801852000615, + "total": 8.034273915996891, + "queued": 0.418479, + "clean_up": 1.4221806829991692, + "file_setup": 0.026719098001194652, + "save_results": 0.0024404450014117174, + "verify_check": 0.7168494949983142, + "export_calldata": 0.1096146449999651, + "generate_witness_c": 0.011982872998487437 + }, + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "dca14000-9c8e-4010-84a0-6ee0f8141c63", "circuit_name": "circom-multiplier2", + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T19:13:48.590Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_time": "P0DT00H00M05.853836S", + "compute_time_sec": 5.853836, + "compute_times": { + "prove": 5.50850399599949, + "total": 5.85873119399912, + "queued": 0.429635, + "clean_up": 0.19279620100132888, + "file_setup": 0.018208794001111528, + "save_results": 0.0019690720000653528, + "export_calldata": 0.12116290699850651, + "generate_witness_c": 0.015544702000624966 + }, + "file_size": 1350, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "proof_id": "b29866d5-6977-44a1-b53a-b59bd5f07c5e", "circuit_name": "circom-multiplier2", + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", - "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "date_created": "2024-03-14T19:13:47.134Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.759570S", + "compute_time_sec": 6.75957, + "compute_times": { + "prove": 5.7691859059996204, + "total": 6.76582350299941, + "queued": 0.573203, + "clean_up": 0.8512933130004967, + "file_setup": 0.020217060002323706, + "save_results": 0.002654211999470135, + "export_calldata": 0.10469743599969661, + "generate_witness_c": 0.017217937998793786 + }, + "file_size": 1348, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "proof_id": "a0774be2-3c41-4cbc-addc-edd9b4e2956d", "circuit_name": "circom-multiplier2", + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T19:13:15.491Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_time": "P0DT00H00M03.638381S", + "compute_time_sec": 3.638381, + "compute_times": { + "prove": 2.0563713180017658, + "total": 3.6447121650016925, + "queued": 0.435142, + "clean_up": 1.4359558040014235, + "file_setup": 0.029414451997581637, + "save_results": 0.0022407860014936887, + "export_calldata": 0.10466101899874047, + "generate_witness_c": 0.015545509999356 + }, + "file_size": 1345, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "proof_id": "bfdae09a-dab8-4925-983a-cb36fe9e1968", "circuit_name": "circom-multiplier2", + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T19:12:35.111Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_time": "P0DT00H00M05.950247S", + "compute_time_sec": 5.950247, + "compute_times": { + "prove": 5.542268355002307, + "total": 5.956350837001082, + "queued": 0.455803, + "clean_up": 0.2413153500019689, + "file_setup": 0.024655373999848962, + "save_results": 0.0029602979993796907, + "export_calldata": 0.11759848699875874, + "generate_witness_c": 0.027109548998851096 + }, + "file_size": 1351, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", - "circuit_name": "circom-multiplier2", + "proof_id": "ca34a20e-17fa-4996-a25b-57e051f3e75e", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T19:05:54.268Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_time": "P0DT00H00M08.257042S", + "compute_time_sec": 8.257042, + "compute_times": { + "prove": 6.118464802002563, + "total": 8.263815338999848, + "queued": 1.300164, + "clean_up": 1.2629296249979234, + "file_setup": 0.03202529799818876, + "save_results": 0.002139272997737862, + "verify_check": 0.7154526120029914, + "export_calldata": 0.11000840099950437, + "generate_witness_c": 0.02232845999969868 + }, + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", - "circuit_name": "circom-multiplier2", + "proof_id": "a72071e5-5478-4ad9-bc50-91d5a41899bd", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "In Progress", + "date_created": "2024-03-14T19:05:33.736Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, + "compute_time": "P0DT00H00M06.362972S", + "compute_time_sec": 6.362972, "compute_times": { - "total": 0.0004733838140964508, - "queued": 0.748407 + "prove": 4.702792235999368, + "total": 6.368291856000724, + "queued": 0.427813, + "clean_up": 0.7771713300026022, + "file_setup": 0.04098392900050385, + "save_results": 0.0022858249976707157, + "verify_check": 0.7296507020000718, + "export_calldata": 0.10327137200147263, + "generate_witness_c": 0.011696364999806974 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", - "circuit_name": "circom-multiplier2", + "proof_id": "9996c901-990d-4579-97f2-8f554f15751a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "In Progress", + "date_created": "2024-03-14T19:02:41.057Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, + "compute_time": "P0DT00H00M07.442956S", + "compute_time_sec": 7.442956, "compute_times": { - "total": 0.00038475729525089264, - "queued": 0.480293 + "prove": 5.836867563997657, + "total": 7.448100458001136, + "queued": 0.429533, + "clean_up": 1.4180766429999494, + "file_setup": 0.02162611599851516, + "save_results": 0.0026051640015793964, + "export_calldata": 0.1440555890003452, + "generate_witness_c": 0.024428758002613904 }, - "file_size": 495, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 1424, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_name": "poseidon", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:08:55.369Z", - "num_proofs": 229, - "proving_scheme": "groth16", + "proof_id": "33b06218-90bc-4d41-88b5-750c59905bf3", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:55:14.653Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M20.064560S", - "compute_time_sec": 20.06456, + "compute_time": "P0DT00H00M06.661497S", + "compute_time_sec": 6.661497, "compute_times": { - "total": 20.07014292757958, - "queued": 0.281108, - "compile": 12.642420304007828, - "clean_up": 5.060501893050969, - "file_setup": 2.2013850677758455, - "save_results": 0.036197442561388016, - "compile_r1cs_and_keygen": 0.12922980543226004 + "prove": 6.102268026999809, + "total": 6.6664216089993715, + "queued": 0.565714, + "clean_up": 0.4257688830002735, + "file_setup": 0.017482515999290626, + "save_results": 0.0023082420011633076, + "export_calldata": 0.10708153700034018, + "generate_witness_c": 0.011075884998717811 }, - "file_size": 30921195, - "uploaded_file_name": "poseidon.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", - "circuit_name": "my-circuit", - "circuit_type": "gnark", - "date_created": "2024-02-28T18:01:02.213Z", - "num_proofs": 2, - "proving_scheme": "groth16", + "proof_id": "3a2c08aa-8eab-4520-8ca6-c3c3d0a83be2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:50:30.630Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.157686S", - "compute_time_sec": 14.157686, + "compute_time": "P0DT00H00M03.081448S", + "compute_time_sec": 3.081448, "compute_times": { - "total": 14.164283829275519, - "queued": 0.242197, - "compile": 9.50105039961636, - "clean_up": 2.131474153138697, - "file_setup": 2.504877657163888, - "save_results": 0.007419941946864128, - "compile_r1cs_and_keygen": 0.018980357330292463 + "prove": 2.9426032099981967, + "total": 3.088212900001963, + "queued": 0.420681, + "clean_up": 0.004887817001872463, + "file_setup": 0.02144401899931836, + "save_results": 0.0024966839991975576, + "export_calldata": 0.10602649100110284, + "generate_witness_c": 0.010342882000259124 }, - "file_size": 19726986, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 1421, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", - "circuit_name": "my-circuit", + "proof_id": "bceefee1-b2fb-499e-85e7-faadbacd3530", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-28T16:06:54.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:47:57.110Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.680331S", - "compute_time_sec": 2.680331, + "compute_time": "P0DT00H00M06.079750S", + "compute_time_sec": 6.07975, "compute_times": { - "total": 2.6865532309748232, - "queued": 0.278162, - "clean_up": 0.15621905494481325, - "file_setup": 0.07576264115050435, - "create_r1cs": 0.02499393606558442, - "create_wasm": 0.037889659870415926, - "save_results": 0.006284092087298632, - "get_r1cs_info": 0.0003155169542878866, - "groth16_setup": 1.1963414950296283, - "export_verification_key": 1.1868828509468585, - "download_trusted_setup_file": 0.0014421690721064806 + "prove": 5.86737551600163, + "total": 6.154982070998813, + "queued": 0.429452, + "clean_up": 0.05597285499970894, + "file_setup": 0.09039897099864902, + "save_results": 0.002586843998869881, + "export_calldata": 0.10872890400059987, + "generate_witness_c": 0.02942450800037477 }, - "file_size": 1467971, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", - "circuit_name": "my-circuit", + "proof_id": "43e7d4c5-e79e-4cde-8216-16da4f7affd2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-28T16:06:28.625Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:43:03.195Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.723950S", - "compute_time_sec": 2.72395, + "compute_time": "P0DT00H00M07.389227S", + "compute_time_sec": 7.389227, "compute_times": { - "total": 2.730448425281793, - "queued": 0.24759, - "clean_up": 0.03860751632601023, - "file_setup": 0.08125918405130506, - "create_r1cs": 0.025404677726328373, - "create_wasm": 0.03741568187251687, - "save_results": 0.007240877952426672, - "get_r1cs_info": 0.00033877836540341377, - "groth16_setup": 1.2571284701116383, - "export_verification_key": 1.2813060129992664, - "download_trusted_setup_file": 0.0013454826548695564 + "prove": 6.096696715001599, + "total": 7.464751903000433, + "queued": 0.511846, + "clean_up": 1.1190660020001815, + "file_setup": 0.11400084699926083, + "save_results": 0.002097641001455486, + "export_calldata": 0.1070670169974619, + "generate_witness_c": 0.025039165000634966 }, - "file_size": 1467971, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_name": "hash-checker", + "proof_id": "62da79ad-66f8-48b2-aee6-00576b9ef803", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-27T01:57:59.411Z", - "num_proofs": 4, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:42:16.730Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.843744S", - "compute_time_sec": 36.843744, + "compute_time": "P0DT00H00M04.470973S", + "compute_time_sec": 4.470973, "compute_times": { - "total": 36.91908207698725, - "queued": 0.286679, - "clean_up": 0.03467807709239423, - "create_cpp": 0.7680627549998462, - "file_setup": 0.1394905720371753, - "compile_cpp": 28.152615127852187, - "create_r1cs": 0.34302311204373837, - "save_results": 0.006143820006400347, - "get_r1cs_info": 0.0005576841067522764, - "groth16_setup": 4.3415444530546665, - "export_verification_key": 1.252952174982056, - "download_trusted_setup_file": 1.879397285869345 + "prove": 4.176840074000211, + "total": 4.543050677002611, + "queued": 0.442897, + "clean_up": 0.13250841900298838, + "file_setup": 0.08925071300109266, + "save_results": 0.0035124769965477753, + "export_calldata": 0.10352052000234835, + "generate_witness_c": 0.03679126799761434 }, - "file_size": 3870229, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "proof_id": "92dafcbd-cf27-417d-9327-f7b96ba3b622", "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-26T02:32:51.263Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:20:49.783Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.040985S", - "compute_time_sec": 0.040985, + "compute_time": "P0DT00H00M03.433125S", + "compute_time_sec": 3.433125, "compute_times": { - "total": 0.03328296495601535, - "queued": 0.306452, - "file_setup": 0.02101697097532451, - "create_wasm": 0.011749706929549575 + "prove": 2.5336668719537556, + "total": 3.4394880742765963, + "queued": 0.489776, + "clean_up": 0.7611926682293415, + "file_setup": 0.026595874689519405, + "save_results": 0.002055990044027567, + "export_calldata": 0.10428563365712762, + "generate_witness_c": 0.011344298254698515 }, - "file_size": 1015, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", - "circuit_name": "hash-checker", + "proof_id": "0dbdebd4-cb75-4d8e-a42b-70325cda5352", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-25T21:21:18.316Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:20:14.514Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.116953S", - "compute_time_sec": 36.116953, + "compute_time": "P0DT00H00M03.528936S", + "compute_time_sec": 3.528936, "compute_times": { - "total": 36.12258589011617, - "queued": 0.280658, - "clean_up": 0.045256566954776645, - "create_cpp": 0.7550635728985071, - "file_setup": 0.055438351118937135, - "compile_cpp": 27.543986437143758, - "create_r1cs": 0.34856289392337203, - "save_results": 0.005512146046385169, - "get_r1cs_info": 0.0005783189553767443, - "groth16_setup": 4.374077996937558, - "export_verification_key": 1.1806295281276107, - "download_trusted_setup_file": 1.8129089260473847 + "prove": 3.110340188955888, + "total": 3.5351677269209176, + "queued": 0.419368, + "clean_up": 0.268796571996063, + "file_setup": 0.023094948148354888, + "save_results": 0.0035148910246789455, + "export_calldata": 0.11105250404216349, + "generate_witness_c": 0.017875555902719498 }, - "file_size": 3870232, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "proof_id": "3ad09ef0-94cd-426c-9c4a-1b89b70db8bf", "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-25T21:15:00.721Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:20:06.963Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.153850S", - "compute_time_sec": 0.15385, + "compute_time": "P0DT00H00M03.694977S", + "compute_time_sec": 3.694977, "compute_times": { - "total": 0.14053412294015288, - "queued": 0.345862, - "file_setup": 0.12803456606343389, - "create_wasm": 0.01188180991448462 + "prove": 2.1533293740358204, + "total": 3.699435847112909, + "queued": 0.422202, + "clean_up": 1.4061321169137955, + "file_setup": 0.01737229502759874, + "save_results": 0.0022125281393527985, + "export_calldata": 0.10844748793169856, + "generate_witness_c": 0.011587816989049315 }, - "file_size": 1004, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1424, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "proof_id": "5e53039b-53bb-4341-9f40-66ce2cfdaf8a", "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-22T00:02:35.495Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:19:26.279Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.105806S", - "compute_time_sec": 8.105806, + "compute_time": "P0DT00H00M07.017894S", + "compute_time_sec": 7.017894, "compute_times": { - "total": 8.111726151080802, - "queued": 0.299859, - "clean_up": 0.03814816800877452, - "create_cpp": 0.11785020097158849, - "file_setup": 0.07184063596650958, - "compile_cpp": 4.999685499118641, - "create_r1cs": 0.027501144912093878, - "save_results": 0.0056748660281300545, - "get_r1cs_info": 0.0003923040349036455, - "groth16_setup": 1.33484046603553, - "export_verification_key": 1.5138321269769222, - "download_trusted_setup_file": 0.0013768889475613832 + "prove": 6.257673634216189, + "total": 7.024433021899313, + "queued": 0.481265, + "clean_up": 0.5901032220572233, + "file_setup": 0.04931790102273226, + "save_results": 0.0018759206868708134, + "export_calldata": 0.11300898808985949, + "generate_witness_c": 0.01208030991256237 }, - "file_size": 1650685, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1421, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "proof_id": "97802862-57ba-4ac2-86fc-1bd7a769868d", "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-21T23:58:37.180Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:18:50.915Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.050622S", - "compute_time_sec": 7.050622, + "compute_time": "P0DT00H00M07.471731S", + "compute_time_sec": 7.471731, "compute_times": { - "total": 7.057020629988983, - "queued": 0.29724, - "clean_up": 0.062270441092550755, - "create_cpp": 0.06243468704633415, - "file_setup": 0.07652567396871746, - "compile_cpp": 4.485646587098017, - "create_r1cs": 0.02570242597721517, - "save_results": 0.00595727888867259, - "get_r1cs_info": 0.00039725680835545063, - "groth16_setup": 1.17986157303676, - "export_verification_key": 1.1563023570924997, - "download_trusted_setup_file": 0.0012368990574032068 + "prove": 5.5631270671729, + "total": 7.477051115129143, + "queued": 0.423981, + "clean_up": 1.7722250861115754, + "file_setup": 0.01894038007594645, + "save_results": 0.0025429960805922747, + "export_calldata": 0.10855428781360388, + "generate_witness_c": 0.011164190946146846 }, - "file_size": 1651141, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1418, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", - "circuit_name": "hash-checker", + "proof_id": "e9ef60c8-8edf-43b7-920b-013f9c1ae340", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-16T16:44:06.247Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:16:21.616Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M35.940220S", - "compute_time_sec": 35.94022, + "compute_time": "P0DT00H00M06.389568S", + "compute_time_sec": 6.389568, "compute_times": { - "total": 35.94744881300721, - "queued": 0.255393, - "clean_up": 0.0907127889804542, - "create_cpp": 0.8199345880420879, - "file_setup": 0.08025214297231287, - "compile_cpp": 27.603134420933202, - "create_r1cs": 0.38317175407428294, - "save_results": 0.009111783001571894, - "get_r1cs_info": 0.0010840859031304717, - "groth16_setup": 4.134320180979557, - "export_verification_key": 1.0508651459822431, - "download_trusted_setup_file": 1.7740050770808011 + "prove": 6.163996509974822, + "total": 6.394594549899921, + "queued": 0.723067, + "clean_up": 0.09152333298698068, + "file_setup": 0.01897246716544032, + "save_results": 0.001845130929723382, + "export_calldata": 0.10672607109881938, + "generate_witness_c": 0.011156109860166907 }, - "file_size": 3869586, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 1, - "num_private_inputs": 4, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_name": "hash-checker", + "proof_id": "c91fc9d9-2377-489e-b08b-00746d7349a5", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-15T19:07:26.262Z", - "num_proofs": 2, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:15:57.683Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M35.144392S", - "compute_time_sec": 35.144392, + "compute_time": "P0DT00H00M07.686728S", + "compute_time_sec": 7.686728, "compute_times": { - "total": 35.15089295199141, - "queued": 0.226366, - "clean_up": 0.11753120506182313, - "create_cpp": 0.7529647811315954, - "file_setup": 0.06330146407708526, - "compile_cpp": 28.331635219044983, - "create_r1cs": 0.34842015197500587, - "save_results": 0.010279993992298841, - "get_r1cs_info": 0.0006776847876608372, - "groth16_setup": 4.291510064154863, - "export_verification_key": 1.2317856717854738, - "download_trusted_setup_file": 0.002070905175060034 + "prove": 5.851301555056125, + "total": 7.692835888359696, + "queued": 0.476854, + "clean_up": 0.9100839020684361, + "file_setup": 0.04193206364288926, + "save_results": 0.00230186665430665, + "verify_check": 0.755525354295969, + "export_calldata": 0.10952348494902253, + "generate_witness_c": 0.021680005360394716 }, - "file_size": 3870226, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1421, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_name": "semaphore", + "proof_id": "e9843a60-d317-461a-9cd4-42fee37b8061", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-15T16:46:44.192Z", - "num_proofs": 5, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:13:58.884Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.775219S", - "compute_time_sec": 6.775219, + "compute_time": "P0DT00H00M03.367759S", + "compute_time_sec": 3.367759, "compute_times": { - "total": 6.786237360094674, - "queued": 0.306632, - "clean_up": 0.02926708501763642, - "create_cpp": 0.06894711602944881, - "file_setup": 0.06364756193943322, - "compile_cpp": 4.536427660030313, - "create_r1cs": 0.0257944610202685, - "save_results": 0.008142217062413692, - "get_r1cs_info": 0.000770728918723762, - "groth16_setup": 1.0133657020051032, - "export_verification_key": 1.0354817470069975, - "download_trusted_setup_file": 0.003386533004231751 + "prove": 2.230404970003292, + "total": 3.3720264660660177, + "queued": 0.431842, + "clean_up": 0.10493400786072016, + "file_setup": 0.0387162861879915, + "save_results": 0.002680066041648388, + "verify_check": 0.8437124330084771, + "export_calldata": 0.11436670809052885, + "generate_witness_c": 0.036693086847662926 }, - "file_size": 232969, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1420, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", - "circuit_name": "semaphore", + "proof_id": "903672bf-1424-4074-879f-dc3d8bcf7b09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-15T16:44:21.936Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:13:15.498Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.525882S", - "compute_time_sec": 7.525882, + "compute_time": "P0DT00H00M02.740057S", + "compute_time_sec": 2.740057, "compute_times": { - "total": 7.532384330872446, - "queued": 0.273291, - "clean_up": 0.41135954577475786, - "create_cpp": 0.044112610165029764, - "file_setup": 0.05311372969299555, - "compile_cpp": 4.545667007099837, - "create_r1cs": 0.021503231953829527, - "save_results": 0.023626559413969517, - "get_r1cs_info": 0.0004302137531340122, - "groth16_setup": 1.2149698357097805, - "export_verification_key": 1.2118688928894699, - "download_trusted_setup_file": 0.004898259416222572 + "prove": 1.747901757946238, + "total": 2.7451698589138687, + "queued": 0.562105, + "clean_up": 0.004073107847943902, + "file_setup": 0.023931312141939998, + "save_results": 0.0021747678983956575, + "verify_check": 0.8415581181179732, + "export_calldata": 0.10904999403283, + "generate_witness_c": 0.016110152937471867 }, - "file_size": 232949, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", - "circuit_name": "hash-checker", + "proof_id": "1bd36420-2d17-4820-b4c0-92bf65f5ac09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-15T16:21:42.338Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T17:58:33.204Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M35.218699S", - "compute_time_sec": 35.218699, + "compute_time": "P0DT00H00M03.362596S", + "compute_time_sec": 3.362596, "compute_times": { - "total": 35.2277638950618, - "queued": 0.317566, - "clean_up": 0.1369406400481239, - "create_cpp": 0.8040473599685356, - "file_setup": 0.1467569509986788, - "compile_cpp": 27.42731417901814, - "create_r1cs": 0.37680110498331487, - "save_results": 0.008219165029004216, - "get_r1cs_info": 0.0012246599653735757, - "groth16_setup": 4.11037651298102, - "export_verification_key": 1.009748816024512, - "download_trusted_setup_file": 1.2047668669838458 + "prove": 3.2148704221472144, + "total": 3.3680821671150625, + "queued": 0.497672, + "clean_up": 0.00455889105796814, + "file_setup": 0.026814193930476904, + "save_results": 0.0023224949836730957, + "export_calldata": 0.10352779598906636, + "generate_witness_c": 0.015558663755655289 }, - "file_size": 3868192, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", - "circuit_name": "hash-checker", - "circuit_type": "circom", - "date_created": "2024-02-15T16:20:47.501Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "f6954f69-c080-4914-8ab1-a172dbf5e08a", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:57:15.133Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M34.701699S", - "compute_time_sec": 34.701699, + "compute_time": "P0DT00H00M08.914962S", + "compute_time_sec": 8.914962, "compute_times": { - "total": 34.707892696838826, - "queued": 0.318933, - "clean_up": 0.09660972375422716, - "create_cpp": 0.7858420582488179, - "file_setup": 0.062256335746496916, - "compile_cpp": 27.987545497715473, - "create_r1cs": 0.3427793183363974, - "save_results": 0.006912626326084137, - "get_r1cs_info": 0.0007053948938846588, - "groth16_setup": 4.240857229102403, - "export_verification_key": 1.1814902885816991, - "download_trusted_setup_file": 0.002157846000045538 + "total": 8.922231239033863, + "queued": 5.602238, + "clean_up": 2.959817972034216, + "file_setup": 5.245855151908472, + "create_proof": 0.7142050580587238, + "save_results": 0.001862589968368411 }, - "file_size": 3868192, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", - "circuit_name": "rate-limiting-nullifier", - "circuit_type": "circom", - "date_created": "2024-02-15T00:37:02.228Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d13035a3-05d0-42d7-8422-6347f69ecd53", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:52.106Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M55.791705S", - "compute_time_sec": 55.791705, + "compute_time": "P0DT00H01M26.708941S", + "compute_time_sec": 86.708941, "compute_times": { - "total": 55.797921964898705, - "queued": 0.257892, - "clean_up": 0.07545234775170684, - "create_cpp": 1.1982138170860708, - "file_setup": 0.0613596779294312, - "compile_cpp": 36.85164702497423, - "create_r1cs": 0.7978045740164816, - "save_results": 0.006434123031795025, - "get_r1cs_info": 0.002160165924578905, - "groth16_setup": 15.61639252398163, - "export_verification_key": 1.167371460236609, - "download_trusted_setup_file": 0.020440288819372654 + "total": 86.71415681904182, + "queued": 0.405661, + "clean_up": 84.75011333706789, + "file_setup": 1.3262775791808963, + "create_proof": 0.6342818099074066, + "save_results": 0.0029313149861991405 }, - "file_size": 7540832, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", - "circuit_name": "rate-limiting-nullifier", - "circuit_type": "circom", - "date_created": "2024-02-14T23:58:52.084Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "fd61e981-bb5c-41e3-9428-705839e2abc8", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:06.075Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M56.901539S", - "compute_time_sec": 56.901539, + "compute_time": "P0DT00H01M26.510069S", + "compute_time_sec": 86.510069, "compute_times": { - "total": 56.907790740951896, - "queued": 0.286676, - "clean_up": 0.1532127452082932, - "create_cpp": 1.1961525329388678, - "file_setup": 0.05804666178300977, - "compile_cpp": 38.085547543130815, - "create_r1cs": 0.8190577877685428, - "save_results": 0.010267478879541159, - "get_r1cs_info": 0.002185516059398651, - "groth16_setup": 15.381996811367571, - "export_verification_key": 1.1801622677594423, - "download_trusted_setup_file": 0.020589394960552454 + "total": 86.51598379341885, + "queued": 0.486451, + "clean_up": 85.12480085203424, + "file_setup": 0.762740237172693, + "create_proof": 0.6256867139600217, + "save_results": 0.002274115104228258 }, - "file_size": 7540785, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "circuit_name": "circom-multiplier2", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_type": "circom", - "date_created": "2024-02-14T23:57:50.289Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:30:14.362Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M56.834710S", - "compute_time_sec": 56.83471, + "compute_time": "P0DT00H00M00.354832S", + "compute_time_sec": 0.354832, "compute_times": { - "total": 56.8432289250195, - "queued": 0.287988, - "clean_up": 0.10309748293366283, - "create_cpp": 1.2134589219931513, - "file_setup": 0.09620017104316503, - "compile_cpp": 38.34681939892471, - "create_r1cs": 0.824894416029565, - "save_results": 0.010392117081210017, - "get_r1cs_info": 0.004026207025162876, - "groth16_setup": 15.126561413053423, - "export_verification_key": 1.0899655069224536, - "download_trusted_setup_file": 0.02710751595441252 + "prove": 0.29524299991317093, + "total": 0.3594474990386516, + "queued": 0.452341, + "clean_up": 0.010387225076556206, + "file_setup": 0.0286204491276294, + "save_results": 0.0014043520204722881, + "generate_witness_c": 0.023333966033533216 }, - "file_size": 7540780, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 714, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "circuit_name": "circom-multiplier2", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_type": "circom", - "date_created": "2024-02-14T23:52:09.320Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:30:13.294Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M57.335290S", - "compute_time_sec": 57.33529, + "compute_time": "P0DT00H00M01.550727S", + "compute_time_sec": 1.550727, "compute_times": { - "total": 57.34173893509433, - "queued": 0.278472, - "clean_up": 0.10366297094151378, - "create_cpp": 1.246839945204556, - "file_setup": 0.06519381469115615, - "compile_cpp": 38.10613914998248, - "create_r1cs": 0.821301891002804, - "save_results": 0.0067642792128026485, - "get_r1cs_info": 0.002133298199623823, - "groth16_setup": 15.753068736288697, - "export_verification_key": 1.2155762687325478, - "download_trusted_setup_file": 0.020359096582978964 + "prove": 1.4871477987617254, + "total": 1.5559976021759212, + "queued": 0.41289, + "clean_up": 0.007122974842786789, + "file_setup": 0.03450894495472312, + "save_results": 0.002017392311245203, + "generate_witness_c": 0.024780604988336563 }, - "file_size": 7540742, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-02-14T23:43:09.159Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:29:28.396Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M54.984651S", - "compute_time_sec": 54.984651, + "compute_time": "P0DT00H00M01.462342S", + "compute_time_sec": 1.462342, "compute_times": { - "total": 54.99341053608805, - "queued": 0.304312, - "clean_up": 0.06826841598376632, - "create_cpp": 1.2764658289961517, - "file_setup": 0.08957945799920708, - "compile_cpp": 36.77387927705422, - "create_r1cs": 0.801689010928385, - "save_results": 0.009336387040093541, - "get_r1cs_info": 0.003953314037062228, - "groth16_setup": 14.896520375041291, - "export_verification_key": 1.0483920950209722, - "download_trusted_setup_file": 0.024622616940177977 + "prove": 1.3968474080320448, + "total": 1.4673558110371232, + "queued": 0.649073, + "clean_up": 0.012919645989313722, + "file_setup": 0.027661754051223397, + "save_results": 0.002378439996391535, + "generate_witness_c": 0.027080354979261756 }, - "file_size": 7540733, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "circuit_name": "circom-multiplier2", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_type": "circom", - "date_created": "2024-02-14T21:42:21.824Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:29:12.038Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M56.975886S", - "compute_time_sec": 56.975886, + "compute_time": "P0DT00H00M00.378782S", + "compute_time_sec": 0.378782, "compute_times": { - "total": 56.984479263890535, - "queued": 0.3222, - "clean_up": 0.071199910948053, - "create_cpp": 1.246658438933082, - "file_setup": 0.08264653407968581, - "compile_cpp": 37.13031674805097, - "create_r1cs": 0.8157099969685078, - "save_results": 0.008955279947258532, - "get_r1cs_info": 0.004004108952358365, - "groth16_setup": 14.917821239912882, - "export_verification_key": 1.06573862710502, - "download_trusted_setup_file": 1.640640855068341 + "prove": 0.3259259192273021, + "total": 0.3832521459553391, + "queued": 0.467242, + "clean_up": 0.004174598027020693, + "file_setup": 0.018889360828325152, + "save_results": 0.0015030219219624996, + "generate_witness_c": 0.032414837973192334 }, - "file_size": 7540735, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 714, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", - "circuit_name": "hash-checker", - "circuit_type": "circom", - "date_created": "2024-02-14T21:41:14.188Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.819064S", - "compute_time_sec": 36.819064, + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, "compute_times": { - "total": 36.826748004648834, - "queued": 0.269335, - "clean_up": 0.11822917684912682, - "create_cpp": 0.7589871259406209, - "file_setup": 0.15491734398528934, - "compile_cpp": 28.743124674074352, - "create_r1cs": 0.35148238157853484, - "save_results": 0.00582153769209981, - "get_r1cs_info": 0.0006839861162006855, - "groth16_setup": 4.374190780799836, - "export_verification_key": 1.1788361864164472, - "download_trusted_setup_file": 1.1384393190965056 + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 }, - "file_size": 3867265, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-14T21:39:50.042Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.062Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M47.319956S", - "compute_time_sec": 47.319956, + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, "compute_times": { - "total": 47.326535122003406, - "queued": 0.256588, - "clean_up": 0.08247739961370826, - "create_cpp": 1.000471537001431, - "file_setup": 0.0585682881064713, - "compile_cpp": 29.038879429921508, - "create_r1cs": 0.6561976410448551, - "save_results": 0.006647040136158466, - "get_r1cs_info": 0.0020793969742953777, - "groth16_setup": 15.312814712058753, - "export_verification_key": 1.1472203098237514, - "download_trusted_setup_file": 0.02056274702772498 + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 }, - "file_size": 6775884, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", - "circuit_name": "Semaphore", - "circuit_type": "circom", - "date_created": "2024-02-14T21:36:56.776Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.018Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M47.874450S", - "compute_time_sec": 47.87445, + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, "compute_times": { - "total": 47.88067169301212, - "queued": 0.241228, - "clean_up": 0.08292657090350986, - "create_cpp": 1.0067430417984724, - "file_setup": 0.060509118251502514, - "compile_cpp": 28.465293834917247, - "create_r1cs": 0.6478999992832541, - "save_results": 0.00611361488699913, - "get_r1cs_info": 0.0020417659543454647, - "groth16_setup": 14.801113961264491, - "export_verification_key": 1.1754452609457076, - "download_trusted_setup_file": 1.6319761737249792 + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 }, - "file_size": 6775882, - "uploaded_file_name": "Semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", - "circuit_name": "email", - "circuit_type": "circom", - "date_created": "2024-02-14T16:08:08.930Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.932Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.897920S", - "compute_time_sec": 2.89792, + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, "compute_times": { - "total": 0.9285368990385905, - "queued": 0.329843, - "create_cpp": 0.04405528900679201, - "file_setup": 0.8838426299626008 + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 }, - "file_size": 24822850, - "uploaded_file_name": "email.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", - "circuit_name": "email", - "circuit_type": "circom", - "date_created": "2024-02-14T16:06:51.116Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.924Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.346644S", - "compute_time_sec": 3.346644, + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, "compute_times": { - "total": 0.8087141560390592, - "queued": 0.273012, - "create_cpp": 0.01664800103753805, - "file_setup": 0.791186569724232 + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 }, - "file_size": 24822792, - "uploaded_file_name": "email.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", - "circuit_name": "email", - "circuit_type": "circom", - "date_created": "2024-02-14T16:02:01.839Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.909Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.017827S", - "compute_time_sec": 3.017827, + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, "compute_times": { - "total": 0.8431280389195308, - "queued": 0.475505, - "create_cpp": 0.03038154193200171, - "file_setup": 0.8116235659690574 + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 }, - "file_size": 24822332, - "uploaded_file_name": "email.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", - "circuit_name": "email", - "circuit_type": "circom", - "date_created": "2024-02-14T16:00:40.414Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.810Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.297335S", - "compute_time_sec": 0.297335, + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, "compute_times": { - "total": 0.11431554611772299, - "queued": 0.292787, - "create_cpp": 0.014114855322986841, - "file_setup": 0.09887601295486093 + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 }, - "file_size": 1416811, - "uploaded_file_name": "email.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", - "circuit_name": "email", - "circuit_type": "circom", - "date_created": "2024-02-14T15:56:00.936Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.800Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.259954S", - "compute_time_sec": 0.259954, + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, "compute_times": { - "total": 0.12665929598733783, - "queued": 0.347236, - "create_cpp": 0.022852880065329373, - "file_setup": 0.10267018002923578 + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 }, - "file_size": 1416809, - "uploaded_file_name": "email.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-12T16:06:15.388Z", - "num_proofs": 3, - "proving_scheme": "groth16", + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.792Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M19.113279S", - "compute_time_sec": 19.113279, + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, "compute_times": { - "total": 19.119710344821215, - "queued": 0.304946, - "clean_up": 0.05678791180253029, - "file_setup": 0.07778294384479523, - "create_r1cs": 0.6835691910237074, - "create_wasm": 1.5261333975940943, - "save_results": 0.01109285093843937, - "get_r1cs_info": 0.002000190317630768, - "groth16_setup": 15.561696534976363, - "export_verification_key": 1.1593163777142763, - "download_trusted_setup_file": 0.04080592654645443 + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 }, - "file_size": 7081817, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-12T00:14:36.781Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.637Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M21.300025S", - "compute_time_sec": 21.300025, + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, "compute_times": { - "total": 21.306767147034407, - "queued": 0.293132, - "clean_up": 0.2600619550794363, - "file_setup": 0.10280199348926544, - "create_r1cs": 0.7014120128005743, - "create_wasm": 1.4916918445378542, - "save_results": 0.018025938421487808, - "get_r1cs_info": 0.003770437091588974, - "groth16_setup": 15.514674112200737, - "export_verification_key": 1.5598135478794575, - "download_trusted_setup_file": 1.654065664857626 + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 }, - "file_size": 7081723, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-12T00:12:50.904Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.620Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.311458S", - "compute_time_sec": 0.311458, + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, "compute_times": { - "total": 0.10177313163876534, - "queued": 0.288724, - "file_setup": 0.08924846164882183, - "create_wasm": 0.011913193389773369 + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 }, - "file_size": 1806552, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-12T00:10:40.331Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.593Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.123483S", - "compute_time_sec": 0.123483, + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, "compute_times": { - "total": 0.10418374836444855, - "queued": 0.24469, - "file_setup": 0.08240349031984806, - "create_wasm": 0.02108948677778244 + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 }, - "file_size": 907287, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T19:51:12.364Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.516Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.887947S", - "compute_time_sec": 36.887947, + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, "compute_times": { - "total": 36.89425963815302, - "queued": 0.257023, - "clean_up": 0.04403446055948734, - "file_setup": 29.98060936667025, - "create_r1cs": 0.3443223936483264, - "create_wasm": 1.05553247500211, - "save_results": 0.006293457001447678, - "get_r1cs_info": 0.000581374391913414, - "groth16_setup": 4.288356346078217, - "export_verification_key": 1.171438716351986, - "download_trusted_setup_file": 0.002127542160451412 + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 }, - "file_size": 4238536, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T19:35:47.834Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.491Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.242908S", - "compute_time_sec": 7.242908, + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, "compute_times": { - "total": 7.252888669259846, - "queued": 0.315189, - "clean_up": 0.24440924916416407, - "file_setup": 0.10320598538964987, - "create_r1cs": 0.3493071682751179, - "create_wasm": 1.0848499182611704, - "save_results": 0.006677108816802502, - "get_r1cs_info": 0.0006677061319351196, - "groth16_setup": 4.277557077817619, - "export_verification_key": 1.1795741403475404, - "download_trusted_setup_file": 0.002051391638815403 + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 }, - "file_size": 4238546, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T19:32:24.516Z", - "num_proofs": 3, - "proving_scheme": "groth16", + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.478Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.502453S", - "compute_time_sec": 8.502453, + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, "compute_times": { - "total": 8.5082988422364, - "queued": 0.290802, - "clean_up": 0.24006511457264423, - "file_setup": 0.10109577886760235, - "create_r1cs": 0.374081764370203, - "create_wasm": 1.0719998348504305, - "save_results": 0.006332419812679291, - "get_r1cs_info": 0.0005895020440220833, - "groth16_setup": 4.342386241070926, - "export_verification_key": 1.097628473304212, - "download_trusted_setup_file": 1.2735503260046244 + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 }, - "file_size": 4238535, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T19:14:59.465Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.414Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.379245S", - "compute_time_sec": 0.379245, + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, "compute_times": { - "total": 0.10352941323071718, - "queued": 0.225145, - "file_setup": 0.0858859121799469, - "create_wasm": 0.016125368885695934 + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 }, - "file_size": 1804057, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T19:09:18.022Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.362Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.300239S", - "compute_time_sec": 0.300239, + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, "compute_times": { - "total": 0.09953181259334087, - "queued": 0.267199, - "file_setup": 0.08270685467869043, - "create_wasm": 0.01634138822555542 + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 }, - "file_size": 1803953, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T19:00:54.135Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.356Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.179718S", - "compute_time_sec": 0.179718, + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, "compute_times": { - "total": 0.10090719535946846, - "queued": 0.251874, - "file_setup": 0.08464208338409662, - "create_wasm": 0.01588864903897047 + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 }, - "file_size": 1803921, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T18:45:44.857Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.294Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.269437S", - "compute_time_sec": 0.269437, + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, "compute_times": { - "total": 0.10417102556675673, - "queued": 0.229957, - "file_setup": 0.0870280647650361, - "create_wasm": 0.016761316917836666 + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 }, - "file_size": 1803870, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", - "circuit_name": "hashchecker", - "circuit_type": "circom", - "date_created": "2024-02-11T18:44:01.720Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.184Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119612S", - "compute_time_sec": 0.119612, + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, "compute_times": { - "total": 0.07268805895000696, - "queued": 0.258881, - "file_setup": 0.056701790541410446, - "create_wasm": 0.015431713312864304 + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 }, - "file_size": 905050, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-11T18:10:12.579Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.144Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.281287S", - "compute_time_sec": 0.281287, + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, "compute_times": { - "total": 0.11563524045050144, - "queued": 0.305225, - "file_setup": 0.10166966635733843, - "create_wasm": 0.01360108982771635 + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 }, - "file_size": 1805983, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-11T18:09:21.301Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.120Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129729S", - "compute_time_sec": 0.129729, + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, "compute_times": { - "total": 0.0997195653617382, - "queued": 0.324444, - "file_setup": 0.08716154284775257, - "create_wasm": 0.01209271140396595 + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 }, - "file_size": 1805970, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", - "circuit_name": "circom-circuit", - "circuit_type": "circom", - "date_created": "2024-01-31T22:08:05.475Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.909178S", - "compute_time_sec": 6.909178, + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.062Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, "compute_times": { - "total": 6.960774548351765, - "queued": 24.976953, - "clean_up": 0.005624564364552498, - "create_cpp": 0.04884001612663269, - "file_setup": 0.23423208110034466, - "compile_cpp": 4.481184393167496, - "create_r1cs": 0.019831592217087746, - "save_results": 0.003675384446978569, - "get_r1cs_info": 0.0003577694296836853, - "groth16_setup": 1.123554177582264, - "export_verification_key": 1.0419799592345953, - "download_trusted_setup_file": 0.0011759810149669647 + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 }, - "file_size": 1651141, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:04.723Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.027Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.286136S", - "compute_time_sec": 7.286136, + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, "compute_times": { - "total": 7.340654090046883, - "queued": 38.074183, - "clean_up": 0.0009148658718913794, - "create_cpp": 0.04542793915607035, - "file_setup": 0.23204711498692632, - "compile_cpp": 4.680376983946189, - "create_r1cs": 0.008409275906160474, - "save_results": 0.0033105541951954365, - "get_r1cs_info": 0.0003685750998556614, - "groth16_setup": 1.178457418922335, - "export_verification_key": 1.1900099229533225, - "download_trusted_setup_file": 0.000988946994766593 + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:04.122Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.006Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.463866S", - "compute_time_sec": 7.463866, + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, "compute_times": { - "total": 7.523294999962673, - "queued": 37.680306, - "clean_up": 0.0007766569033265114, - "create_cpp": 0.04011468309909105, - "file_setup": 0.2518389639444649, - "compile_cpp": 4.806413288926706, - "create_r1cs": 0.008677670964971185, - "save_results": 0.0031781040597707033, - "get_r1cs_info": 0.00039803609251976013, - "groth16_setup": 1.1818688770290464, - "export_verification_key": 1.2287184570450336, - "download_trusted_setup_file": 0.0010086549445986748 + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:03.780Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.963Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.480065S", - "compute_time_sec": 7.480065, + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, "compute_times": { - "total": 7.537460318999365, - "queued": 33.511443, - "clean_up": 0.0008328610565513372, - "create_cpp": 0.03915940411388874, - "file_setup": 0.2353337057866156, - "compile_cpp": 4.872832479886711, - "create_r1cs": 0.009635194204747677, - "save_results": 0.003330645151436329, - "get_r1cs_info": 0.00040896888822317123, - "groth16_setup": 1.243939558044076, - "export_verification_key": 1.1305532888509333, - "download_trusted_setup_file": 0.0010688810143619776 + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:03.625Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.909Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.465790S", - "compute_time_sec": 7.46579, + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, "compute_times": { - "total": 7.517380404053256, - "queued": 32.017107, - "clean_up": 0.000841652974486351, - "create_cpp": 0.04037469998002052, - "file_setup": 0.21061871387064457, - "compile_cpp": 4.7562680810224265, - "create_r1cs": 0.008348200935870409, - "save_results": 0.0034994680900126696, - "get_r1cs_info": 0.000424881000071764, - "groth16_setup": 1.2855071290396154, - "export_verification_key": 1.210078198928386, - "download_trusted_setup_file": 0.0010237020906060934 + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:02.471Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.896Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.143051S", - "compute_time_sec": 7.143051, + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, "compute_times": { - "total": 7.1952535710297525, - "queued": 32.071917, - "clean_up": 0.0009264149703085423, - "create_cpp": 0.037378153996542096, - "file_setup": 0.22291689622215927, - "compile_cpp": 4.493842450901866, - "create_r1cs": 0.00868003792129457, - "save_results": 0.003541851881891489, - "get_r1cs_info": 0.0003536711446940899, - "groth16_setup": 1.202652727952227, - "export_verification_key": 1.2237500881310552, - "download_trusted_setup_file": 0.0009900499135255814 + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:02.067Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.873Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.529084S", - "compute_time_sec": 7.529084, + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, "compute_times": { - "total": 7.584393135970458, - "queued": 30.973415, - "clean_up": 0.00083908811211586, - "create_cpp": 0.04151515499688685, - "file_setup": 0.23193758307024837, - "compile_cpp": 4.9528708211146295, - "create_r1cs": 0.008621205808594823, - "save_results": 0.0033709488343447447, - "get_r1cs_info": 0.0004654980730265379, - "groth16_setup": 1.127253663027659, - "export_verification_key": 1.2159365471452475, - "download_trusted_setup_file": 0.0011964899022132158 + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:01.892Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.817Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.968285S", - "compute_time_sec": 6.968285, + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, "compute_times": { - "total": 7.020302023971453, - "queued": 24.589933, - "clean_up": 0.0007189519237726927, - "create_cpp": 0.039091327926144004, - "file_setup": 0.22075876407325268, - "compile_cpp": 4.478542160009965, - "create_r1cs": 0.008031236007809639, - "save_results": 0.0033459621481597424, - "get_r1cs_info": 0.00031445594504475594, - "groth16_setup": 1.1534762841183692, - "export_verification_key": 1.1147591178305447, - "download_trusted_setup_file": 0.000989275984466076 + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:01.304Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.806Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.959223S", - "compute_time_sec": 6.959223, + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, "compute_times": { - "total": 7.0112608759664, - "queued": 17.111301, - "clean_up": 0.0008735461160540581, - "create_cpp": 0.038755591958761215, - "file_setup": 0.24885913101024926, - "compile_cpp": 4.36299676517956, - "create_r1cs": 0.00803148397244513, - "save_results": 0.01730395178310573, - "get_r1cs_info": 0.0003368018660694361, - "groth16_setup": 1.1180529070552438, - "export_verification_key": 1.2148506320081651, - "download_trusted_setup_file": 0.0009600170888006687 + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:01.000Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.774Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.949886S", - "compute_time_sec": 6.949886, + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, "compute_times": { - "total": 7.000236368039623, - "queued": 1.134467, - "clean_up": 0.0007571689784526825, - "create_cpp": 0.03813181212171912, - "file_setup": 0.39067235100083053, - "compile_cpp": 4.379259012872353, - "create_r1cs": 0.008045257069170475, - "save_results": 0.037871989188715816, - "get_r1cs_info": 0.0003408279735594988, - "groth16_setup": 1.0681434420403093, - "export_verification_key": 1.0757975298911333, - "download_trusted_setup_file": 0.0009711629245430231 + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 }, - "file_size": 225416, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:00.922Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.086134S", - "compute_time_sec": 7.086134, + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, "compute_times": { - "total": 7.139805332990363, - "queued": 9.283956, - "clean_up": 0.0007637820672243834, - "create_cpp": 0.040777466958388686, - "file_setup": 0.22701866691932082, - "compile_cpp": 4.5694026600103825, - "create_r1cs": 0.008620185079053044, - "save_results": 0.009906678926199675, - "get_r1cs_info": 0.0005167280323803425, - "groth16_setup": 1.0815790109336376, - "export_verification_key": 1.1996698069851846, - "download_trusted_setup_file": 0.0012109570670872927 + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2024-01-17T00:39:38.679Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.550840S", - "compute_time_sec": 7.55084, + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, "compute_times": { - "total": 7.629153113812208, - "queued": 15.012343, - "clean_up": 0.011455003172159195, - "create_cpp": 0.054636724293231964, - "file_setup": 0.31103159487247467, - "compile_cpp": 4.492543734610081, - "create_r1cs": 0.0336969792842865, - "save_results": 0.005911210551857948, - "get_r1cs_info": 0.0004208497703075409, - "groth16_setup": 1.3556907046586275, - "export_verification_key": 1.3620027527213097, - "download_trusted_setup_file": 0.0013344846665859222 + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 }, - "file_size": 1650629, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:27:15.352Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.078009S", - "compute_time_sec": 8.078009, + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, "compute_times": { - "total": 8.165162647143006, - "queued": 1.05453, - "clean_up": 0.001927914097905159, - "create_cpp": 0.05209779180586338, - "file_setup": 0.2735048495233059, - "compile_cpp": 4.798323042690754, - "create_r1cs": 0.018848145380616188, - "save_results": 0.00658784992992878, - "get_r1cs_info": 0.0008379388600587845, - "groth16_setup": 1.6222364120185375, - "export_verification_key": 1.38789046369493, - "download_trusted_setup_file": 0.0024561677128076553 + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:27:14.083Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.904210S", - "compute_time_sec": 7.90421, + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, "compute_times": { - "total": 7.990685863420367, - "queued": 1.148767, - "clean_up": 0.0017737876623868942, - "create_cpp": 0.04771621339023113, - "file_setup": 0.2793459966778755, - "compile_cpp": 4.619792276993394, - "create_r1cs": 0.00932052917778492, - "save_results": 0.006265198811888695, - "get_r1cs_info": 0.0004815235733985901, - "groth16_setup": 1.4397705420851707, - "export_verification_key": 1.584412407130003, - "download_trusted_setup_file": 0.0015385709702968597 + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:27:14.042Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.840020S", - "compute_time_sec": 7.84002, + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, "compute_times": { - "total": 7.916158145293593, - "queued": 1.103501, - "clean_up": 0.001588582992553711, - "create_cpp": 0.05656779184937477, - "file_setup": 0.2618618682026863, - "compile_cpp": 4.655229337513447, - "create_r1cs": 0.010038148611783981, - "save_results": 0.005318811163306236, - "get_r1cs_info": 0.0004153270274400711, - "groth16_setup": 1.3863549754023552, - "export_verification_key": 1.5370171926915646, - "download_trusted_setup_file": 0.0013035386800765991 + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:26:26.125Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.895332S", - "compute_time_sec": 7.895332, + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, "compute_times": { - "total": 7.985105384141207, - "queued": 1.097711, - "clean_up": 0.0017092283815145493, - "create_cpp": 0.05560790188610554, - "file_setup": 0.27359912544488907, - "compile_cpp": 4.84467164054513, - "create_r1cs": 0.01020035706460476, - "save_results": 0.00596289336681366, - "get_r1cs_info": 0.0003344062715768814, - "groth16_setup": 1.3516457378864288, - "export_verification_key": 1.4395998753607273, - "download_trusted_setup_file": 0.001010250300168991 + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:26:25.495Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.731496S", - "compute_time_sec": 7.731496, + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, "compute_times": { - "total": 7.827601557597518, - "queued": 1.26957, - "clean_up": 0.002000821754336357, - "create_cpp": 0.04701829329133034, - "file_setup": 0.2621183265000582, - "compile_cpp": 4.725081695243716, - "create_r1cs": 0.011297162622213364, - "save_results": 0.005976244807243347, - "get_r1cs_info": 0.0006684809923171997, - "groth16_setup": 1.4255939163267612, - "export_verification_key": 1.3449707236140966, - "download_trusted_setup_file": 0.0024210847914218903 + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 }, - "file_size": 225430, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:31:55.438Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.586921S", - "compute_time_sec": 7.586921, + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, "compute_times": { - "total": 7.663304785266519, - "queued": 1.132337, - "clean_up": 0.0015752892941236496, - "create_cpp": 0.049899373203516006, - "file_setup": 0.22959892638027668, - "compile_cpp": 4.780468979850411, - "create_r1cs": 0.017419403418898582, - "save_results": 0.0054653361439704895, - "get_r1cs_info": 0.0007719267159700394, - "groth16_setup": 1.2644738126546144, - "export_verification_key": 1.310561291873455, - "download_trusted_setup_file": 0.0026084203273057938 + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:27:56.593Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.801205S", - "compute_time_sec": 7.801205, + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, "compute_times": { - "total": 7.875548103824258, - "queued": 1.098988, - "clean_up": 0.0017300937324762344, - "create_cpp": 0.05396237596869469, - "file_setup": 0.2385635208338499, - "compile_cpp": 4.6406055726110935, - "create_r1cs": 0.016733812168240547, - "save_results": 0.004983868449926376, - "get_r1cs_info": 0.0006270240992307663, - "groth16_setup": 1.3868273310363293, - "export_verification_key": 1.528601661324501, - "download_trusted_setup_file": 0.002437632530927658 + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:27:42.490Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.531215S", - "compute_time_sec": 7.531215, + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, "compute_times": { - "total": 7.6094263680279255, - "queued": 1.133009, - "clean_up": 0.001713564619421959, - "create_cpp": 0.04710027575492859, - "file_setup": 0.23515290580689907, - "compile_cpp": 4.696669522672892, - "create_r1cs": 0.017408769577741623, - "save_results": 0.005742281675338745, - "get_r1cs_info": 0.0006468463689088821, - "groth16_setup": 1.3201909139752388, - "export_verification_key": 1.2817781921476126, - "download_trusted_setup_file": 0.0024629440158605576 + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:27:26.943Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.713700S", - "compute_time_sec": 7.7137, + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, "compute_times": { - "total": 7.7915890868753195, - "queued": 1.17603, - "clean_up": 0.001603648066520691, - "create_cpp": 0.04629753343760967, - "file_setup": 0.2314635906368494, - "compile_cpp": 4.7291872799396515, - "create_r1cs": 0.016094380989670753, - "save_results": 0.005229661241173744, - "get_r1cs_info": 0.0004699360579252243, - "groth16_setup": 1.3847032357007265, - "export_verification_key": 1.3747948426753283, - "download_trusted_setup_file": 0.0012649912387132645 + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:24:25.201Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.782942S", - "compute_time_sec": 7.782942, + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, "compute_times": { - "total": 7.858149649575353, - "queued": 1.192228, - "clean_up": 0.0016285404562950134, - "create_cpp": 0.04751185514032841, - "file_setup": 0.22963756695389748, - "compile_cpp": 4.810557749122381, - "create_r1cs": 0.011191016063094139, - "save_results": 0.0053499843925237656, - "get_r1cs_info": 0.0006842408329248428, - "groth16_setup": 1.305834548547864, - "export_verification_key": 1.4425791203975677, - "download_trusted_setup_file": 0.0027836784720420837 + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:24:08.702Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.712942S", - "compute_time_sec": 7.712942, + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, "compute_times": { - "total": 7.788311326876283, - "queued": 1.222064, - "clean_up": 0.0015964601188898087, - "create_cpp": 0.048168059438467026, - "file_setup": 0.24294559471309185, - "compile_cpp": 4.80493832193315, - "create_r1cs": 0.01979799196124077, - "save_results": 0.005484664812684059, - "get_r1cs_info": 0.0007523689419031143, - "groth16_setup": 1.360052939504385, - "export_verification_key": 1.3015912808477879, - "download_trusted_setup_file": 0.00248897448182106 + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:23:55.055Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.504987S", - "compute_time_sec": 7.504987, + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, "compute_times": { - "total": 7.582275737076998, - "queued": 1.111203, - "clean_up": 0.00203564390540123, - "create_cpp": 0.04740658402442932, - "file_setup": 0.2326672412455082, - "compile_cpp": 4.5253369603306055, - "create_r1cs": 0.015371032059192657, - "save_results": 0.0063849929720163345, - "get_r1cs_info": 0.0003808550536632538, - "groth16_setup": 1.3611575067043304, - "export_verification_key": 1.3897777944803238, - "download_trusted_setup_file": 0.0012431517243385315 + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:23:31.285Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.404341S", - "compute_time_sec": 7.404341, + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, "compute_times": { - "total": 7.481531243771315, - "queued": 1.164668, - "clean_up": 0.001758268103003502, - "create_cpp": 0.054409828037023544, - "file_setup": 0.228825144469738, - "compile_cpp": 4.561935219913721, - "create_r1cs": 0.01824786141514778, - "save_results": 0.005484595894813538, - "get_r1cs_info": 0.000652119517326355, - "groth16_setup": 1.3237749002873898, - "export_verification_key": 1.2835038527846336, - "download_trusted_setup_file": 0.0024792589247226715 + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:23:11.647Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.506243S", - "compute_time_sec": 7.506243, + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, "compute_times": { - "total": 7.5825384352356195, - "queued": 1.123872, - "clean_up": 0.0020943544805049896, - "create_cpp": 0.055948369204998016, - "file_setup": 0.2336848620325327, - "compile_cpp": 4.572340337559581, - "create_r1cs": 0.011611813679337502, - "save_results": 0.006018133834004402, - "get_r1cs_info": 0.000943819060921669, - "groth16_setup": 1.345878291875124, - "export_verification_key": 1.3496504835784435, - "download_trusted_setup_file": 0.003846803680062294 + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:21:38.135Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.490694S", - "compute_time_sec": 7.490694, + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, "compute_times": { - "total": 7.569987336173654, - "queued": 1.179116, - "clean_up": 0.002130907028913498, - "create_cpp": 0.04748098365962505, - "file_setup": 0.2508866246789694, - "compile_cpp": 4.549122573807836, - "create_r1cs": 0.01635313406586647, - "save_results": 0.006561141461133957, - "get_r1cs_info": 0.0007531233131885529, - "groth16_setup": 1.3041542451828718, - "export_verification_key": 1.389599822461605, - "download_trusted_setup_file": 0.002447204664349556 + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:21:25.337Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.714617S", - "compute_time_sec": 7.714617, + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, "compute_times": { - "total": 7.78945274092257, - "queued": 1.109203, - "clean_up": 0.0014195535331964493, - "create_cpp": 0.0532410591840744, - "file_setup": 0.2293473482131958, - "compile_cpp": 4.6692238971591, - "create_r1cs": 0.011476732790470123, - "save_results": 0.0056864432990550995, - "get_r1cs_info": 0.0009230468422174454, - "groth16_setup": 1.4699061587452888, - "export_verification_key": 1.3452017772942781, - "download_trusted_setup_file": 0.0025169849395751953 + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:21:07.305Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.675740S", - "compute_time_sec": 7.67574, + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, "compute_times": { - "total": 7.751045668497682, - "queued": 1.129433, - "clean_up": 0.0018131695687770844, - "create_cpp": 0.04765470325946808, - "file_setup": 0.24081012606620789, - "compile_cpp": 4.558540068566799, - "create_r1cs": 0.01800389215350151, - "save_results": 0.005974184721708298, - "get_r1cs_info": 0.0006712991744279861, - "groth16_setup": 1.373840706422925, - "export_verification_key": 1.500656010583043, - "download_trusted_setup_file": 0.002558337524533272 + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:19:55.212Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.062178S", - "compute_time_sec": 8.062178, + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, "compute_times": { - "total": 8.142503958195448, - "queued": 1.149423, - "clean_up": 0.0018021930009126663, - "create_cpp": 0.04863681085407734, - "file_setup": 0.23515266925096512, - "compile_cpp": 5.073512123897672, - "create_r1cs": 0.018286654725670815, - "save_results": 0.004714170470833778, - "get_r1cs_info": 0.0007165037095546722, - "groth16_setup": 1.3629947770386934, - "export_verification_key": 1.3937593009322882, - "download_trusted_setup_file": 0.0024403519928455353 + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:18:49.431Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.693335S", - "compute_time_sec": 7.693335, + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, "compute_times": { - "total": 7.781858703121543, - "queued": 1.116293, - "clean_up": 0.0017208773642778397, - "create_cpp": 0.05256185121834278, - "file_setup": 0.2557890061289072, - "compile_cpp": 4.588302677497268, - "create_r1cs": 0.010025406256318092, - "save_results": 0.0073493290692567825, - "get_r1cs_info": 0.0005155783146619797, - "groth16_setup": 1.4648161549121141, - "export_verification_key": 1.3988297637552023, - "download_trusted_setup_file": 0.0014446470886468887 + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "315b9559-c461-49ab-b089-885151347107", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:18:35.546Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.469497S", - "compute_time_sec": 7.469497, + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, "compute_times": { - "total": 7.547948880121112, - "queued": 1.248019, - "clean_up": 0.0015904363244771957, - "create_cpp": 0.0542209018021822, - "file_setup": 0.23366319201886654, - "compile_cpp": 4.586157588288188, - "create_r1cs": 0.018297061324119568, - "save_results": 0.005786450579762459, - "get_r1cs_info": 0.0006671342998743057, - "groth16_setup": 1.364309385418892, - "export_verification_key": 1.2802996914833784, - "download_trusted_setup_file": 0.002457818016409874 + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:17:44.931Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.473321S", - "compute_time_sec": 7.473321, + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, "compute_times": { - "total": 7.547661663964391, - "queued": 1.119777, - "clean_up": 0.000894695520401001, - "create_cpp": 0.05381825938820839, - "file_setup": 0.24185010977089405, - "compile_cpp": 4.524175513535738, - "create_r1cs": 0.017902396619319916, - "save_results": 0.004841597750782967, - "get_r1cs_info": 0.0008537471294403076, - "groth16_setup": 1.3410304505378008, - "export_verification_key": 1.3593134097754955, - "download_trusted_setup_file": 0.0025420039892196655 + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:16:28.531Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.690520S", - "compute_time_sec": 7.69052, + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, "compute_times": { - "total": 7.770463544875383, - "queued": 5.453395, - "clean_up": 0.0014936216175556183, - "create_cpp": 0.05430406704545021, - "file_setup": 0.23710034973919392, - "compile_cpp": 4.83283169940114, - "create_r1cs": 0.019483311101794243, - "save_results": 0.0048837121576070786, - "get_r1cs_info": 0.0006661657243967056, - "groth16_setup": 1.3555313758552074, - "export_verification_key": 1.2612487897276878, - "download_trusted_setup_file": 0.0024483725428581238 + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:16:22.368Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.866076S", - "compute_time_sec": 7.866076, + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, "compute_times": { - "total": 7.941894210875034, - "queued": 2.535538, - "clean_up": 0.0015988927334547043, - "create_cpp": 0.047808632254600525, - "file_setup": 0.27344413474202156, - "compile_cpp": 4.95066586881876, - "create_r1cs": 0.018682880327105522, - "save_results": 0.005130548030138016, - "get_r1cs_info": 0.0007092785090208054, - "groth16_setup": 1.3249204363673925, - "export_verification_key": 1.3161130715161562, - "download_trusted_setup_file": 0.0024131685495376587 + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:16:14.715Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.791801S", - "compute_time_sec": 7.791801, + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, "compute_times": { - "total": 7.869745476171374, - "queued": 1.134289, - "clean_up": 0.001745712012052536, - "create_cpp": 0.05209941044449806, - "file_setup": 0.2489724848419428, - "compile_cpp": 4.845416411757469, - "create_r1cs": 0.019992178305983543, - "save_results": 0.005489939823746681, - "get_r1cs_info": 0.0008604265749454498, - "groth16_setup": 1.321467338129878, - "export_verification_key": 1.3704753294587135, - "download_trusted_setup_file": 0.002767615020275116 + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:13:40.405Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.405829S", - "compute_time_sec": 7.405829, + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, "compute_times": { - "total": 7.476599719375372, - "queued": 1.131337, - "clean_up": 0.0016632992774248123, - "create_cpp": 0.047042084857821465, - "file_setup": 0.2487345952540636, - "compile_cpp": 4.6313931327313185, - "create_r1cs": 0.015436878427863121, - "save_results": 0.0051026009023189545, - "get_r1cs_info": 0.0007460527122020721, - "groth16_setup": 1.2485730070620775, - "export_verification_key": 1.274957099929452, - "download_trusted_setup_file": 0.002432204782962799 + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:13:12.201Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.489214S", - "compute_time_sec": 7.489214, + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, "compute_times": { - "total": 7.565977169200778, - "queued": 1.146208, - "clean_up": 0.0016220677644014359, - "create_cpp": 0.0601615309715271, - "file_setup": 0.23689182102680206, - "compile_cpp": 4.628598712384701, - "create_r1cs": 0.01757240854203701, - "save_results": 0.005794510245323181, - "get_r1cs_info": 0.0007582679390907288, - "groth16_setup": 1.3360584639012814, - "export_verification_key": 1.2756301537156105, - "download_trusted_setup_file": 0.0024445243179798126 + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:11:41.174Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.580861S", - "compute_time_sec": 7.580861, + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.549Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, "compute_times": { - "total": 7.656488731503487, - "queued": 1.097627, - "clean_up": 0.0016867052763700485, - "create_cpp": 0.04802015610039234, - "file_setup": 0.24031525664031506, - "compile_cpp": 4.603576384484768, - "create_r1cs": 0.016298340633511543, - "save_results": 0.005427641794085503, - "get_r1cs_info": 0.0008495114743709564, - "groth16_setup": 1.44757186062634, - "export_verification_key": 1.2892759256064892, - "download_trusted_setup_file": 0.0029640905559062958 + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:06:12.999Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.468363S", - "compute_time_sec": 7.468363, + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, "compute_times": { - "total": 7.544480819255114, - "queued": 1.143003, - "clean_up": 0.0016008112579584122, - "create_cpp": 0.05341379716992378, - "file_setup": 0.22887434996664524, - "compile_cpp": 4.706471795216203, - "create_r1cs": 0.01654653809964657, - "save_results": 0.006104299798607826, - "get_r1cs_info": 0.0004962123930454254, - "groth16_setup": 1.2300675436854362, - "export_verification_key": 1.299116501584649, - "download_trusted_setup_file": 0.0012989863753318787 + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:05:23.917Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.759975S", - "compute_time_sec": 7.759975, + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, "compute_times": { - "total": 7.83847594819963, - "queued": 1.10425, - "clean_up": 0.001688338816165924, - "create_cpp": 0.04832325503230095, - "file_setup": 0.2314634695649147, - "compile_cpp": 4.819877410307527, - "create_r1cs": 0.015260979533195496, - "save_results": 0.006293922662734985, - "get_r1cs_info": 0.0006519351154565811, - "groth16_setup": 1.3941991496831179, - "export_verification_key": 1.3179172277450562, - "download_trusted_setup_file": 0.0024711433798074722 + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:04:56.095Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.406479S", - "compute_time_sec": 7.406479, + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, "compute_times": { - "total": 7.483620099723339, - "queued": 1.177252, - "clean_up": 0.001823868602514267, - "create_cpp": 0.045437244698405266, - "file_setup": 0.24590439908206463, - "compile_cpp": 4.595620075240731, - "create_r1cs": 0.016566921025514603, - "save_results": 0.005170263350009918, - "get_r1cs_info": 0.00036842189729213715, - "groth16_setup": 1.3206052239984274, - "export_verification_key": 1.2503768727183342, - "download_trusted_setup_file": 0.0012859292328357697 + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:02:24.098Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.616668S", - "compute_time_sec": 7.616668, + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, "compute_times": { - "total": 7.693107321858406, - "queued": 1.109472, - "clean_up": 0.0016501452773809433, - "create_cpp": 0.05231943354010582, - "file_setup": 0.23242460750043392, - "compile_cpp": 4.745099242776632, - "create_r1cs": 0.019039543345570564, - "save_results": 0.0055495090782642365, - "get_r1cs_info": 0.0005333274602890015, - "groth16_setup": 1.285587765276432, - "export_verification_key": 1.3491349909454584, - "download_trusted_setup_file": 0.0012811962515115738 + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:01:40.573Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.484601S", - "compute_time_sec": 7.484601, + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, "compute_times": { - "total": 7.560129789635539, - "queued": 1.111989, - "clean_up": 0.0016574747860431671, - "create_cpp": 0.04680110327899456, - "file_setup": 0.23556585423648357, - "compile_cpp": 4.649155827239156, - "create_r1cs": 0.0172688327729702, - "save_results": 0.0043340642005205154, - "get_r1cs_info": 0.0007321778684854507, - "groth16_setup": 1.310708336532116, - "export_verification_key": 1.2910060994327068, - "download_trusted_setup_file": 0.002450576052069664 + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:01:12.249Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.651112S", - "compute_time_sec": 7.651112, + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, "compute_times": { - "total": 7.727200584486127, - "queued": 1.123557, - "clean_up": 0.0017795618623495102, - "create_cpp": 0.05026000365614891, - "file_setup": 0.2426721192896366, - "compile_cpp": 4.745914597064257, - "create_r1cs": 0.010544411838054657, - "save_results": 0.006228795275092125, - "get_r1cs_info": 0.0007463283836841583, - "groth16_setup": 1.2904645502567291, - "export_verification_key": 1.375608079135418, - "download_trusted_setup_file": 0.002477342262864113 + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:00:46.395Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.560954S", - "compute_time_sec": 7.560954, + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, "compute_times": { - "total": 7.63792067207396, - "queued": 1.118023, - "clean_up": 0.0011309515684843063, - "create_cpp": 0.05688653700053692, - "file_setup": 0.24240840040147305, - "compile_cpp": 4.653197390958667, - "create_r1cs": 0.01638108491897583, - "save_results": 0.005740107968449593, - "get_r1cs_info": 0.0008277762681245804, - "groth16_setup": 1.3475805260241032, - "export_verification_key": 1.3108154106885195, - "download_trusted_setup_file": 0.0024681556969881058 + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:59:57.004Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.474006S", - "compute_time_sec": 7.474006, + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, "compute_times": { - "total": 7.551057329401374, - "queued": 1.13943, - "clean_up": 0.0015815366059541702, - "create_cpp": 0.04650958999991417, - "file_setup": 0.2340244445949793, - "compile_cpp": 4.627846229821444, - "create_r1cs": 0.01713145151734352, - "save_results": 0.005708448588848114, - "get_r1cs_info": 0.0004803799092769623, - "groth16_setup": 1.2327740285545588, - "export_verification_key": 1.3827583715319633, - "download_trusted_setup_file": 0.001740090548992157 + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:59:11.428Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.631306S", - "compute_time_sec": 7.631306, + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, "compute_times": { - "total": 7.710235442966223, - "queued": 1.386075, - "clean_up": 0.002034531906247139, - "create_cpp": 0.04852190800011158, - "file_setup": 0.24500983953475952, - "compile_cpp": 4.704880395904183, - "create_r1cs": 0.010721936821937561, - "save_results": 0.0055764298886060715, - "get_r1cs_info": 0.0006168503314256668, - "groth16_setup": 1.448454624041915, - "export_verification_key": 1.2422269843518734, - "download_trusted_setup_file": 0.0016173608601093292 + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:58:05.906Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.838875S", - "compute_time_sec": 7.838875, + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, "compute_times": { - "total": 7.916816979646683, - "queued": 1.13646, - "clean_up": 0.0017937906086444855, - "create_cpp": 0.04604017175734043, - "file_setup": 0.25198566168546677, - "compile_cpp": 4.960162149742246, - "create_r1cs": 0.017025411128997803, - "save_results": 0.006269412115216255, - "get_r1cs_info": 0.0005705077201128006, - "groth16_setup": 1.3184205926954746, - "export_verification_key": 1.312853867188096, - "download_trusted_setup_file": 0.0013548657298088074 + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:10:36.167Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.494759S", - "compute_time_sec": 7.494759, + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, "compute_times": { - "total": 7.577943356707692, - "queued": 15.661842, - "clean_up": 0.0015942566096782684, - "create_cpp": 0.046944042667746544, - "file_setup": 0.23811103031039238, - "compile_cpp": 4.708118129521608, - "create_r1cs": 0.01638900674879551, - "save_results": 0.00562669150531292, - "get_r1cs_info": 0.0006911307573318481, - "groth16_setup": 1.2832315117120743, - "export_verification_key": 1.2741688843816519, - "download_trusted_setup_file": 0.0024611055850982666 + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-19T00:01:17.518Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.829640S", - "compute_time_sec": 14.82964, + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, "compute_times": { - "total": 16.11652692966163, - "queued": 21.506947, - "clean_up": 0.00970545969903469, - "create_cpp": 0.07700999267399311, - "file_setup": 1.6147372927516699, - "compile_cpp": 7.614376271143556, - "create_r1cs": 0.154385132715106, - "save_results": 0.005050705745816231, - "get_r1cs_info": 0.0008396394550800323, - "groth16_setup": 3.3179074060171843, - "export_verification_key": 3.320323884487152, - "download_trusted_setup_file": 0.0015841908752918243 + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 }, - "file_size": 1719996, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-18T23:44:10.716Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.500698S", - "compute_time_sec": 8.500698, + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, "compute_times": { - "total": 9.787439923733473, - "queued": 1.294188, - "clean_up": 0.013815293088555336, - "create_cpp": 0.06775672547519207, - "file_setup": 1.5670747924596071, - "compile_cpp": 5.217347398400307, - "create_r1cs": 0.03056485578417778, - "save_results": 0.006023731082677841, - "get_r1cs_info": 0.0007077902555465698, - "groth16_setup": 1.4515825044363737, - "export_verification_key": 1.4297321401536465, - "download_trusted_setup_file": 0.0024385377764701843 + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 }, - "file_size": 1719996, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-18T23:42:13.949Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.803270S", - "compute_time_sec": 13.80327, + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, "compute_times": { - "total": 15.069168468937278, - "queued": 1.279988, - "clean_up": 0.010122904554009438, - "create_cpp": 0.12114278227090836, - "file_setup": 1.5526539776474237, - "compile_cpp": 7.2996343690901995, - "create_r1cs": 0.07337300851941109, - "save_results": 0.10131139867007732, - "get_r1cs_info": 0.0005603395402431488, - "groth16_setup": 2.957974351942539, - "export_verification_key": 2.9508997034281492, - "download_trusted_setup_file": 0.0010457858443260193 + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 }, - "file_size": 1719996, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-18T23:36:30.574Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.521983S", - "compute_time_sec": 13.521983, + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, "compute_times": { - "total": 14.785143690183759, - "queued": 27.741822, - "clean_up": 0.00823935680091381, - "create_cpp": 0.10304738581180573, - "file_setup": 1.505700759589672, - "compile_cpp": 7.270766986533999, - "create_r1cs": 0.07485816441476345, - "save_results": 0.0029987990856170654, - "get_r1cs_info": 0.0006173755973577499, - "groth16_setup": 2.891835331916809, - "export_verification_key": 2.924815448001027, - "download_trusted_setup_file": 0.0017245206981897354 + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 }, - "file_size": 1719981, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-17T19:35:22.108Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.399840S", - "compute_time_sec": 13.39984, + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, "compute_times": { - "total": 14.661026014015079, - "queued": 20.325028, - "clean_up": 0.005762990564107895, - "create_cpp": 0.07418840192258358, - "file_setup": 1.5508117154240608, - "compile_cpp": 7.441567042842507, - "create_r1cs": 0.0411736685782671, - "save_results": 0.003770258277654648, - "get_r1cs_info": 0.0007237941026687622, - "groth16_setup": 2.749024560675025, - "export_verification_key": 2.7917208038270473, - "download_trusted_setup_file": 0.0016946438699960709 + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 }, - "file_size": 1650609, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", - "circuit_name": "my-circuit", - "circuit_type": "noir", - "date_created": "2023-12-17T18:49:58.483Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M04.373831S", - "compute_time_sec": 4.373831, + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, "compute_times": { - "total": 5.606248481199145, - "queued": 17.784967, - "clean_up": 0.000952577218413353, - "file_setup": 1.4592411685734987, - "nargo_checks": 4.145449373871088 + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 }, - "file_size": 724, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "my_circuit", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:44:44.083Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.215446S", - "compute_time_sec": 0.215446, + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, "compute_times": { - "total": 1.39835050329566, - "queued": 1.360483, - "file_setup": 1.395031625404954, - "nargo_checks": 0.003077572211623192 + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 }, - "file_size": 742, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:43:51.455Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.479235S", - "compute_time_sec": 1.479235, + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, "compute_times": { - "total": 2.6415348909795284, - "queued": 1.942949, - "clean_up": 0.0005522631108760834, - "file_setup": 1.3729195687919855, - "nargo_checks": 1.2678131125867367 + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 }, - "file_size": 741, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "Hi2noir_Hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:43:04.488Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.415435S", - "compute_time_sec": 1.415435, + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, "compute_times": { - "total": 2.570197055116296, - "queued": 1.245783, - "clean_up": 0.00041295401751995087, - "file_setup": 1.3385441917926073, - "nargo_checks": 1.2309921570122242 + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 }, - "file_size": 737, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "2noir_Hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:42:44.606Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.405646S", - "compute_time_sec": 1.405646, + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, "compute_times": { - "total": 2.5658690985292196, - "queued": 1.186038, - "clean_up": 0.00047394633293151855, - "file_setup": 1.3717324659228325, - "nargo_checks": 1.1934157982468605 + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 }, - "file_size": 736, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "2noir_hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:42:17.783Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.462830S", - "compute_time_sec": 1.46283, + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, "compute_times": { - "total": 2.6199891455471516, - "queued": 1.25179, - "clean_up": 0.00041804835200309753, - "file_setup": 1.3820457514375448, - "nargo_checks": 1.2372824884951115 + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 }, - "file_size": 739, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "_noir_hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:41:44.867Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.422583S", - "compute_time_sec": 1.422583, + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, "compute_times": { - "total": 2.580868471413851, - "queued": 1.187135, - "clean_up": 0.00045336224138736725, - "file_setup": 1.360721966251731, - "nargo_checks": 1.2194277700036764 + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 }, - "file_size": 727, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "noir_hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "9c8a486c-4c18-4a7a-8e79-8100500a2660", - "circuit_name": "_2halo-hi", - "circuit_type": "halo2", - "date_created": "2023-12-13T16:37:57.886Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H01M28.284700S", - "compute_time_sec": 88.2847, + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, "compute_times": { - "total": 89.44666199572384, - "queued": 2.165129, - "compile": 87.56292228028178, - "clean_up": 0.07346387021243572, - "file_setup": 1.3726620227098465, - "save_results": 0.04124521091580391, - "generate_keys": 0.3959560953080654, - "download_trusted_setup_file": 0.00015112943947315216 + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 }, - "file_size": 44933087, - "uploaded_file_name": "_2halo-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "_2halo_hi::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", - "circuit_name": "_noir-circuit-32", - "circuit_type": "noir", - "date_created": "2023-12-13T16:31:57.140Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.154282S", - "compute_time_sec": 6.154282, + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, "compute_times": { - "total": 7.310710787773132, - "queued": 18.86527, - "clean_up": 0.00043790414929389954, - "file_setup": 1.3356177434325218, - "nargo_checks": 5.974256757646799 + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 }, - "file_size": 736, - "uploaded_file_name": "_noir-circuit-32.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "noir_circuit_32", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "ec12dd1d-75be-4729-bdd4-0ae924f2c8e6", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-11T22:14:30.186Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H01M20.814859S", - "compute_time_sec": 80.814859, + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, "compute_times": { - "total": 82.05906438827515, - "queued": 1.410777, - "compile": 80.08948761411011, - "clean_up": 0.08174648880958557, - "file_setup": 1.495840536430478, - "save_results": 0.04187909886240959, - "generate_keys": 0.3492503445595503, - "download_trusted_setup_file": 0.00032539665699005127 + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 }, - "file_size": 44934523, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "14124f66-b386-4da6-94c3-7c9504e59b55", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-11T21:21:17.813Z", - "num_proofs": 0, - "proving_scheme": "shplonk", - "status": "Failed", + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.609091S", - "compute_time_sec": 1.609091, + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, "compute_times": { - "total": 1.430661918129772, - "queued": 1.232619, - "file_setup": 1.4302852991968393 + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 }, - "file_size": 6518, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: cargo --quiet build --release stdout: stderr: error: package `colored v2.1.0` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.69.0-nightly\nEither upgrade to rustc 1.70 or newer, or use\ncargo update -p colored@2.1.0 --precise ver\nwhere `ver` is the latest version of `colored` supporting rustc 1.69.0-nightly\n", - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "180aaddd-e613-42ba-a7d0-2b023e582fa6", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-05T21:38:35.968Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H02M31.452475S", - "compute_time_sec": 151.452475, + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, "compute_times": { - "total": 152.61581724137068, - "queued": 16.679736, - "compile": 150.85432086326182, - "clean_up": 0.08890871703624725, - "file_setup": 1.3426462803035975, - "save_results": 0.055491913110017776, - "generate_keys": 0.27397330291569233, - "download_trusted_setup_file": 0.00015251711010932922 + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 }, - "file_size": 44942284, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "1a12a25a-6ee5-48eb-96bb-2be6c57fe8a8", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-05T20:56:40.952Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H02M47.087177S", - "compute_time_sec": 167.087177, + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, "compute_times": { - "total": 168.2553534731269, - "queued": 15.969391, - "compile": 166.52114362455904, - "clean_up": 0.08557339012622833, - "file_setup": 1.3397669158875942, - "save_results": 0.023856762796640396, - "generate_keys": 0.28439050912857056, - "download_trusted_setup_file": 0.00015943683683872223 + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 }, - "file_size": 44943541, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T20:26:39.713Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.813118S", - "compute_time_sec": 1.813118, + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, "compute_times": { - "total": 3.01790676638484, - "queued": 1.305567, - "clean_up": 0.000589149072766304, - "file_setup": 1.37160237506032, - "nargo_checks": 1.6454425044357777 + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 }, - "file_size": 3951, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "noir", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T20:23:01.975Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M04.488323S", - "compute_time_sec": 4.488323, + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, "compute_times": { - "total": 5.69258569739759, - "queued": 19.825139, - "clean_up": 0.0005774423480033875, - "file_setup": 1.3714763727039099, - "nargo_checks": 4.320127023383975 + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 }, - "file_size": 706, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "noir", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T20:09:13.111Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M04.592621S", - "compute_time_sec": 4.592621, + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, "compute_times": { - "total": 5.8083343375474215, - "queued": 20.40929, - "clean_up": 0.0006539653986692429, - "file_setup": 1.3848200682550669, - "nargo_checks": 4.422410562634468 + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 }, - "file_size": 3746, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "noir", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:46:56.192Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.901192S", - "compute_time_sec": 1.901192, + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, "compute_times": { - "total": 3.042013813741505, - "queued": 1.216309, - "clean_up": 0.0005592899397015572, - "file_setup": 1.3641308145597577, - "nargo_checks": 1.6769273420795798 + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 }, - "file_size": 646, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "pagerank", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:44:36.302Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.854306S", - "compute_time_sec": 3.854306, + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, "compute_times": { - "total": 5.005337344482541, - "queued": 1.049939, - "clean_up": 0.0004933271557092667, - "file_setup": 1.3198325717821717, - "nargo_checks": 3.684743066318333 + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 }, - "file_size": 646, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "pagerank", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:44:01.042Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.321372S", - "compute_time_sec": 1.321372, + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, "compute_times": { - "total": 2.4821140887215734, - "queued": 1.147771, - "file_setup": 1.3312397608533502, - "nargo_checks": 1.1506206970661879 + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 }, - "file_size": 649, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:42:50.433Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.254776S", - "compute_time_sec": 1.254776, + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, "compute_times": { - "total": 2.4055077601224184, - "queued": 1.040189, - "file_setup": 1.3746437635272741, - "nargo_checks": 1.0305692087858915 + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 }, - "file_size": 653, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:40:12.889Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.165442S", - "compute_time_sec": 2.165442, + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, "compute_times": { - "total": 3.31729419529438, - "queued": 18.785446, - "file_setup": 1.312557090073824, - "nargo_checks": 2.004337651655078 + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 }, - "file_size": 642, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:14:03.406Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.700449S", - "compute_time_sec": 2.700449, + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, "compute_times": { - "total": 3.862834582105279, - "queued": 1.240923, - "clean_up": 0.0048230309039354324, - "file_setup": 1.4248666781932116, - "create_r1cs": 0.019674228504300117, - "create_wasm": 0.02921307645738125, - "save_results": 0.003329528495669365, - "get_r1cs_info": 0.00027392804622650146, - "groth16_setup": 1.1982815023511648, - "export_verification_key": 1.1812070365995169, - "download_trusted_setup_file": 0.0009372644126415253 + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 }, - "file_size": 1537235, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:12:15.898Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.249043S", - "compute_time_sec": 7.249043, + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, "compute_times": { - "total": 8.408733254298568, - "queued": 1.325923, - "clean_up": 0.006613824516534805, - "create_cpp": 0.05350269004702568, - "file_setup": 1.4143117368221283, - "compile_cpp": 4.4514400865882635, - "create_r1cs": 0.020590879023075104, - "save_results": 0.002988070249557495, - "get_r1cs_info": 0.00036310404539108276, - "groth16_setup": 1.2632708046585321, - "export_verification_key": 1.1944759152829647, - "download_trusted_setup_file": 0.0009543616324663162 + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 }, - "file_size": 1719868, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:08:10.932Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.128823S", - "compute_time_sec": 7.128823, + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, "compute_times": { - "total": 8.290217800065875, - "queued": 1.176634, - "clean_up": 0.006579896435141563, - "create_cpp": 0.049633922055363655, - "file_setup": 1.407272644340992, - "compile_cpp": 4.411186024546623, - "create_r1cs": 0.020449023693799973, - "save_results": 0.0031916871666908264, - "get_r1cs_info": 0.0003460422158241272, - "groth16_setup": 1.1822046767920256, - "export_verification_key": 1.2081128470599651, - "download_trusted_setup_file": 0.0009996052831411362 + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 }, - "file_size": 1719871, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:03:13.779Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.214778S", - "compute_time_sec": 0.214778, + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, "compute_times": { - "total": 1.39355612359941, - "queued": 1.091083, - "create_cpp": 0.005528604611754417, - "file_setup": 1.387480080127716 - }, - "file_size": 1086, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:54:52.720Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.127570S", - "compute_time_sec": 7.12757, + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, "compute_times": { - "total": 8.300101362168789, - "queued": 1.180095, - "clean_up": 0.006741989403963089, - "create_cpp": 0.04977302439510822, - "file_setup": 1.3937485367059708, - "compile_cpp": 4.4108633529394865, - "create_r1cs": 0.020317360758781433, - "save_results": 0.003299059346318245, - "get_r1cs_info": 0.0003479979932308197, - "groth16_setup": 1.2352007273584604, - "export_verification_key": 1.1786142773926258, - "download_trusted_setup_file": 0.0009277686476707458 + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 }, - "file_size": 1720407, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:54:30.461Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.186269S", - "compute_time_sec": 7.186269, + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, "compute_times": { - "total": 8.347925985231996, - "queued": 1.11165, - "clean_up": 0.006883986294269562, - "create_cpp": 0.055882176384329796, - "file_setup": 1.3711591251194477, - "compile_cpp": 4.481259575113654, - "create_r1cs": 0.020169200375676155, - "save_results": 0.003566296771168709, - "get_r1cs_info": 0.00035143643617630005, - "groth16_setup": 1.192156182602048, - "export_verification_key": 1.2153031043708324, - "download_trusted_setup_file": 0.0009823162108659744 + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 }, - "file_size": 1720386, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:51:38.256Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.180372S", - "compute_time_sec": 0.180372, + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, "compute_times": { - "total": 1.3365695010870695, - "queued": 1.087627, - "create_cpp": 0.005229467526078224, - "file_setup": 1.331127068027854 + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 }, - "file_size": 4524, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:51:05.065Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.227270S", - "compute_time_sec": 0.22727, + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, "compute_times": { - "total": 1.387567725032568, - "queued": 1.200424, - "create_cpp": 0.005518514662981033, - "file_setup": 1.3818144612014294 + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 }, - "file_size": 4516, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:49:50.199Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.208167S", - "compute_time_sec": 0.208167, + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, "compute_times": { - "total": 1.3689671531319618, - "queued": 1.304207, - "create_cpp": 0.005460506305098534, - "file_setup": 1.3632374834269285 + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 }, - "file_size": 4516, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:47:15.011Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174086S", - "compute_time_sec": 0.174086, + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, "compute_times": { - "total": 1.3330576121807098, - "queued": 19.864284, - "create_cpp": 0.005246447399258614, - "file_setup": 1.3275200203061104 + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 }, - "file_size": 4483, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:05:13.309Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.546964S", - "compute_time_sec": 2.546964, + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, "compute_times": { - "total": 3.7097523529082537, - "queued": 1.209301, - "clean_up": 0.0005107801407575607, - "file_setup": 1.3446728140115738, - "create_r1cs": 0.007440237328410149, - "create_wasm": 0.016755376011133194, - "save_results": 0.0036186836659908295, - "get_r1cs_info": 0.00025043077766895294, - "groth16_setup": 1.1559293158352375, - "export_verification_key": 1.1794348638504744, - "download_trusted_setup_file": 0.0008941646665334702 + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 }, - "file_size": 54024, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:03:06.093Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.578866S", - "compute_time_sec": 2.578866, + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, "compute_times": { - "total": 3.752036551013589, - "queued": 19.44917, - "clean_up": 0.0005340799689292908, - "file_setup": 1.3582166992127895, - "create_r1cs": 0.007758324965834618, - "create_wasm": 0.01886793226003647, - "save_results": 0.0029870178550481796, - "get_r1cs_info": 0.0002993810921907425, - "groth16_setup": 1.1675188429653645, - "export_verification_key": 1.1944289654493332, - "download_trusted_setup_file": 0.0009995810687541962 + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 }, - "file_size": 54024, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T19:28:31.237Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:14.150Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.697079S", - "compute_time_sec": 2.697079, + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, "compute_times": { - "total": 3.860771119594574, - "queued": 45.887615, - "clean_up": 0.0005786605179309845, - "file_setup": 1.3233154714107513, - "create_r1cs": 0.007670976221561432, - "create_wasm": 0.017503729090094566, - "save_results": 0.04876627214252949, - "get_r1cs_info": 0.0002490133047103882, - "groth16_setup": 1.2176049146801233, - "export_verification_key": 1.2436372973024845, - "download_trusted_setup_file": 0.0010085124522447586 + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 }, - "file_size": 54024, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:31:32.434Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:12.520Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.383253S", - "compute_time_sec": 2.383253, + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, "compute_times": { - "total": 3.5439179949462414, - "queued": 1.183641, - "clean_up": 0.0006380276754498482, - "file_setup": 1.3339016744866967, - "create_r1cs": 0.007884668186306953, - "create_wasm": 0.01797499507665634, - "save_results": 0.004143344238400459, - "get_r1cs_info": 0.000565793365240097, - "groth16_setup": 1.0339104048907757, - "export_verification_key": 1.1432477626949549, - "download_trusted_setup_file": 0.0013524582609534264 + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 }, - "file_size": 54025, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:27:06.804Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:10.959Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.387682S", - "compute_time_sec": 7.387682, + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, "compute_times": { - "total": 8.548618336208165, - "queued": 18.71772, - "clean_up": 0.0012578116729855537, - "create_cpp": 0.04181432072073221, - "file_setup": 1.3276818674057722, - "compile_cpp": 5.035406060516834, - "create_r1cs": 0.008279835805296898, - "save_results": 0.003593659959733486, - "get_r1cs_info": 0.0006254948675632477, - "groth16_setup": 1.091116052120924, - "export_verification_key": 1.0372483730316162, - "download_trusted_setup_file": 0.0012065665796399117 + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 }, - "file_size": 229069, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:16:12.963Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:09.368Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.167528S", - "compute_time_sec": 0.167528, + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, "compute_times": { - "total": 1.3633314277976751, - "queued": 1.187746, - "create_cpp": 0.005508816801011562, - "file_setup": 1.3575280215591192 + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 }, - "file_size": 3143, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:16:02.472Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:07.782Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.364457S", - "compute_time_sec": 0.364457, + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, "compute_times": { - "total": 1.5177692053839564, - "queued": 1.273971, - "create_cpp": 0.0061752675101161, - "file_setup": 1.5113406758755445 + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 }, - "file_size": 3149, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:14:05.849Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:06.214Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.285739S", - "compute_time_sec": 0.285739, + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, "compute_times": { - "total": 1.433143719099462, - "queued": 1.368079, - "create_cpp": 0.00570196658372879, - "file_setup": 1.4271633345633745 + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 }, - "file_size": 3146, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:11:33.616Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:04.623Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.190295S", - "compute_time_sec": 0.190295, + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, "compute_times": { - "total": 1.3479114715009928, - "queued": 1.174311, - "create_cpp": 0.006716226227581501, - "file_setup": 1.3409330770373344 + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 }, - "file_size": 3148, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:09:43.690Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:03.050Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.180634S", - "compute_time_sec": 0.180634, + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, "compute_times": { - "total": 1.3301707739010453, - "queued": 1.267544, - "create_cpp": 0.00672531221061945, - "file_setup": 1.3231740267947316 + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 }, - "file_size": 3140, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:08:33.991Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:01.474Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.182958S", - "compute_time_sec": 0.182958, + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, "compute_times": { - "total": 1.3482676716521382, - "queued": 23.976753, - "create_cpp": 0.005651121959090233, - "file_setup": 1.3422273648902774 + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 }, - "file_size": 3141, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:48:47.509Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:59.935Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.247686S", - "compute_time_sec": 0.247686, + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, "compute_times": { - "total": 1.4311082614585757, - "queued": 1.440336, - "create_cpp": 0.0059531861916184425, - "file_setup": 1.4248412810266018 + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 }, - "file_size": 3144, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:47:48.347Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:58.407Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.186337S", - "compute_time_sec": 0.186337, + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, "compute_times": { - "total": 1.3291292237117887, - "queued": 1.389798, - "create_cpp": 0.005445321090519428, - "file_setup": 1.3232828453183174 + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 }, - "file_size": 3144, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:47:16.025Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:56.860Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.203844S", - "compute_time_sec": 0.203844, + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, "compute_times": { - "total": 1.358934978954494, - "queued": 1.23962, - "create_cpp": 0.005131745710968971, - "file_setup": 1.3535515246912837 + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 }, - "file_size": 3147, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:44:43.907Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:55.316Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.211198S", - "compute_time_sec": 0.211198, + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, "compute_times": { - "total": 1.3726867232471704, - "queued": 21.28569, - "create_cpp": 0.04041997902095318, - "file_setup": 1.3318777102977037 + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 }, - "file_size": 3118, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:58:52.961Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:53.766Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M30.485776S", - "compute_time_sec": 30.485776, + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, "compute_times": { - "total": 31.713325195014477, - "queued": 1.53179, - "clean_up": 0.0050907619297504425, - "create_cpp": 0.5502202846109867, - "file_setup": 1.4041321221739054, - "compile_cpp": 8.600912608206272, - "create_r1cs": 0.5660600401461124, - "save_results": 0.015263739973306656, - "get_r1cs_info": 0.0007791165262460709, - "groth16_setup": 18.966865327209234, - "export_verification_key": 1.5605580545961857, - "download_trusted_setup_file": 0.043034087866544724 + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:57:39.629Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:52.213Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M30.503827S", - "compute_time_sec": 30.503827, + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, "compute_times": { - "total": 31.731675423681736, - "queued": 1.329617, - "clean_up": 0.005224447697401047, - "create_cpp": 0.5869219042360783, - "file_setup": 1.396010784432292, - "compile_cpp": 8.755487740039825, - "create_r1cs": 0.6137677505612373, - "save_results": 0.015961000695824623, - "get_r1cs_info": 0.0007797814905643463, - "groth16_setup": 18.781834876164794, - "export_verification_key": 1.5326797477900982, - "download_trusted_setup_file": 0.04255225136876106 + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:53:41.285Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:50.640Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M29.404746S", - "compute_time_sec": 29.404746, + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, "compute_times": { - "total": 30.63611113280058, - "queued": 1.393016, - "clean_up": 0.004741033539175987, - "create_cpp": 0.5701096802949905, - "file_setup": 1.4058604761958122, - "compile_cpp": 8.18474044650793, - "create_r1cs": 0.5578694771975279, - "save_results": 0.012727703899145126, - "get_r1cs_info": 0.0007434040307998657, - "groth16_setup": 18.383400244638324, - "export_verification_key": 1.4725701548159122, - "download_trusted_setup_file": 0.042938267812132835 + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:50:43.511Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:49.058Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M28.987369S", - "compute_time_sec": 28.987369, + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, "compute_times": { - "total": 30.219565767794847, - "queued": 73.815898, - "clean_up": 0.005328845232725143, - "create_cpp": 0.5412574652582407, - "file_setup": 1.408054981380701, - "compile_cpp": 7.979971516877413, - "create_r1cs": 0.5340761709958315, - "save_results": 0.10810003615915775, - "get_r1cs_info": 0.0008541643619537354, - "groth16_setup": 18.02999261394143, - "export_verification_key": 1.5689898952841759, - "download_trusted_setup_file": 0.04256066307425499 + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", - "circuit_name": "my-circuit", + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-02T00:28:21.086Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:18:47.479Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M12.293107S", - "compute_time_sec": 12.293107, + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, "compute_times": { - "total": 1.540343570522964, - "queued": 1.149716, - "file_setup": 1.5400111814960837 + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 }, - "file_size": 3876, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", - "curve": "bls24-315", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", - "circuit_name": "my-circuit", + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-02T00:27:16.183Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:45.920Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M16.323835S", - "compute_time_sec": 16.323835, + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, "compute_times": { - "total": 17.493196861818433, - "queued": 20.294201, - "compile": 15.894271181896329, - "clean_up": 0.06409060023725033, - "file_setup": 1.479825496673584, - "save_results": 0.030155125074088573, - "compile_r1cs_and_keygen": 0.024464260786771774 + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 }, - "file_size": 19740582, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bls24-315", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", - "circuit_name": "gnark", + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-02T00:02:34.146Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:44.421Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M12.571758S", - "compute_time_sec": 12.571758, + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, "compute_times": { - "total": 13.761676067486405, - "queued": 1.17776, - "compile": 12.108159688301384, - "clean_up": 0.0739858876913786, - "file_setup": 1.5122289564460516, - "save_results": 0.0421032914891839, - "compile_r1cs_and_keygen": 0.02487844880670309 + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 }, - "file_size": 19740713, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bw6-633", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", - "circuit_name": "gnark", + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:54:25.971Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:42.838Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M15.096119S", - "compute_time_sec": 15.096119, + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, "compute_times": { - "total": 16.24127036239952, - "queued": 18.859283, - "compile": 14.711085448041558, - "clean_up": 0.060433197766542435, - "file_setup": 1.4220957215875387, - "save_results": 0.03548778221011162, - "compile_r1cs_and_keygen": 0.011818661354482174 + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 }, - "file_size": 19740996, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", - "circuit_name": "cubic", + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:30:10.306Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:18:41.260Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.119803S", - "compute_time_sec": 11.119803, + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, "compute_times": { - "total": 1.4363502692431211, - "queued": 1.930609, - "file_setup": 1.4360267175361514 + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 }, - "file_size": 19555, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", - "circuit_name": "cubic", + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:26:29.959Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:18:39.684Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.939780S", - "compute_time_sec": 13.93978, + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, "compute_times": { - "total": 1.4325123187154531, - "queued": 47.459123, - "file_setup": 1.4321166425943375 + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 }, - "file_size": 3976, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", - "circuit_name": "cubic", + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:11:51.697Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:18:38.137Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.350788S", - "compute_time_sec": 13.350788, + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, "compute_times": { - "total": 1.6208326760679483, - "queued": 19.954132, - "file_setup": 1.6202213428914547 + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 }, - "file_size": 3976, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", - "circuit_name": "cubic", + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:56:28.365Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:36.609Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.241851S", - "compute_time_sec": 11.241851, + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, "compute_times": { - "total": 12.474130183458328, - "queued": 1.420551, - "compile": 10.825671127066016, - "clean_up": 0.061418959870934486, - "file_setup": 1.5227604731917381, - "save_results": 0.04108254425227642, - "compile_r1cs_and_keygen": 0.022699812427163124 + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 }, - "file_size": 19741724, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", - "circuit_name": "cubic", + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:55:10.340Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:35.023Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.246401S", - "compute_time_sec": 11.246401, + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, "compute_times": { - "total": 12.475918658077717, - "queued": 1.465348, - "compile": 10.844971090555191, - "clean_up": 0.05561045743525028, - "file_setup": 1.5209588538855314, - "save_results": 0.032638829201459885, - "compile_r1cs_and_keygen": 0.021452149376273155 + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 }, - "file_size": 19741716, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", - "circuit_name": "cubic", + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:53:46.296Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:33.480Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.258641S", - "compute_time_sec": 11.258641, + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, "compute_times": { - "total": 12.491810835897923, - "queued": 1.516986, - "compile": 10.808460559695959, - "clean_up": 0.06728884018957615, - "file_setup": 1.5511275846511126, - "save_results": 0.04296918027102947, - "compile_r1cs_and_keygen": 0.021483000367879868 + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 }, - "file_size": 19741716, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", - "circuit_name": "cubic", + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:52:51.464Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:18:31.932Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.176662S", - "compute_time_sec": 11.176662, + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, "compute_times": { - "total": 12.414811408147216, - "queued": 1.367679, - "compile": 10.73251723125577, - "clean_up": 0.08182202465832233, - "file_setup": 1.5543472524732351, - "save_results": 0.023770425468683243, - "compile_r1cs_and_keygen": 0.021878626197576523 + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 }, - "file_size": 19741718, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", - "circuit_name": "circuit", + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:50:44.245Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:18:30.405Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.090040S", - "compute_time_sec": 14.09004, + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, "compute_times": { - "total": 1.543837545439601, - "queued": 21.153753, - "file_setup": 1.5434527061879635 + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 }, - "file_size": 4148, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", - "curve": "bn254", - "gnark_version": "v0.9.0" - }, - { - "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", - "circuit_name": "circuit", - "circuit_type": "gnark", - "date_created": "2023-12-01T22:29:14.159Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M10.460622S", - "compute_time_sec": 10.460622, - "compute_times": { - "total": 1.5692181382328272, - "queued": 1.442896, - "file_setup": 1.568734273314476 - }, - "file_size": 4148, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", - "curve": "bn254", - "gnark_version": "v0.9.0" - }, - { - "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", - "circuit_name": "circuit", - "circuit_type": "gnark", - "date_created": "2023-12-01T22:21:25.657Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.046979S", - "compute_time_sec": 14.046979, - "compute_times": { - "total": 1.551876936107874, - "queued": 18.025252, - "file_setup": 1.5510845798999071 - }, - "file_size": 4143, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", - "circuit_name": "multiplier2", - "circuit_type": "circom", - "date_created": "2023-12-01T19:22:16.230Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.920270S", - "compute_time_sec": 7.92027, - "compute_times": { - "total": 9.144548835232854, - "queued": 26.442871, - "clean_up": 0.0016796644777059555, - "create_cpp": 0.05204322002828121, - "file_setup": 1.3975976463407278, - "compile_cpp": 4.545235302299261, - "create_r1cs": 0.008858315646648407, - "save_results": 0.005187435075640678, - "get_r1cs_info": 0.0006442461162805557, - "groth16_setup": 1.5628649536520243, - "export_verification_key": 1.5673195589333773, - "download_trusted_setup_file": 0.0025161877274513245 - }, - "file_size": 225511, - "uploaded_file_name": "", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - } - ], - "rawHeaders": [ - "Content-Length", - "169457", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", - "body": "", - "status": 200, - "response": [ - { - "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.182Z", + "date_created": "2024-03-02T22:18:28.882Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150585S", - "compute_time_sec": 0.150585, + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, "compute_times": { - "prove": 0.11676173796877265, - "total": 0.15572588506620377, - "queued": 51.669893, - "clean_up": 0.009185672039166093, - "file_setup": 0.027514968067407608, - "save_results": 0.001868820982053876 + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.062Z", + "date_created": "2024-03-02T22:18:27.303Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223055S", - "compute_time_sec": 0.223055, + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, "compute_times": { - "prove": 0.20497421699110419, - "total": 0.22819320199778304, - "queued": 48.364288, - "clean_up": 0.0023624080349691212, - "file_setup": 0.01836701901629567, - "save_results": 0.002189519989769906 + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.018Z", + "date_created": "2024-03-02T22:18:25.623Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.213402S", - "compute_time_sec": 0.213402, + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, "compute_times": { - "prove": 0.19061215105466545, - "total": 0.21872411505319178, - "queued": 48.427521, - "clean_up": 0.004127845983020961, - "file_setup": 0.022272864007391036, - "save_results": 0.0014097680104896426 + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.932Z", + "date_created": "2024-03-02T22:18:24.063Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.176113S", - "compute_time_sec": 0.176113, + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, "compute_times": { - "prove": 0.15716673800488934, - "total": 0.18125584500376135, - "queued": 48.35111, - "clean_up": 0.006394687981810421, - "file_setup": 0.015695078996941447, - "save_results": 0.001599603972863406 + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.924Z", + "date_created": "2024-03-02T22:18:22.482Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.175913S", - "compute_time_sec": 0.175913, + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, "compute_times": { - "prove": 0.15754800499416888, - "total": 0.1815414800075814, - "queued": 48.022383, - "clean_up": 0.002829990000464022, - "file_setup": 0.018857149058021605, - "save_results": 0.0017489319434389472 + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.909Z", + "date_created": "2024-03-02T22:18:20.927Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.194250S", - "compute_time_sec": 0.19425, + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, "compute_times": { - "prove": 0.12928905605804175, - "total": 9.857152820914052, - "queued": 47.737361, - "clean_up": 0.01866333093494177, - "file_setup": 9.695790873956867, - "save_results": 0.005249700974673033 + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.810Z", + "date_created": "2024-03-02T22:18:19.297Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092544S", - "compute_time_sec": 0.092544, + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, "compute_times": { - "prove": 0.07295725599396974, - "total": 0.09864532802021131, - "queued": 47.866814, - "clean_up": 0.0027975860284641385, - "file_setup": 0.020817386044654995, - "save_results": 0.0016599719529040158 + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.800Z", + "date_created": "2024-03-02T22:18:17.717Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105093S", - "compute_time_sec": 0.105093, + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, "compute_times": { - "prove": 0.08778161800000817, - "total": 0.11094204697292298, - "queued": 47.8478, - "clean_up": 0.002542709931731224, - "file_setup": 0.018792407936416566, - "save_results": 0.0014581570867449045 + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.792Z", + "date_created": "2024-03-02T22:18:16.204Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.233969S", - "compute_time_sec": 0.233969, + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, "compute_times": { - "prove": 0.2173847450176254, - "total": 0.23918032401707023, - "queued": 47.632341, - "clean_up": 0.003762404026929289, - "file_setup": 0.015466460026800632, - "save_results": 0.0015042249578982592 + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.637Z", + "date_created": "2024-03-02T22:18:14.654Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.367199S", - "compute_time_sec": 0.367199, + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, "compute_times": { - "prove": 0.34983603993896395, - "total": 0.3715133300283924, - "queued": 47.284314, - "clean_up": 0.004351923940703273, - "file_setup": 0.01482851302716881, - "save_results": 0.0021903570741415024 + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.620Z", + "date_created": "2024-03-02T22:18:13.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.235932S", - "compute_time_sec": 0.235932, + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, "compute_times": { - "prove": 0.22235612478107214, - "total": 0.24128600303083658, - "queued": 50.101947, - "clean_up": 0.0031629670411348343, - "file_setup": 0.014214606955647469, - "save_results": 0.0011093378998339176 + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.593Z", + "date_created": "2024-03-02T22:18:11.558Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.916143S", - "compute_time_sec": 0.916143, + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, "compute_times": { - "prove": 0.7969153829617426, - "total": 11.417283304966986, - "queued": 46.46669, - "clean_up": 0.08386482996866107, - "file_setup": 10.52351449499838, - "save_results": 0.00758640409912914 + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.516Z", + "date_created": "2024-03-02T22:18:10.032Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.426199S", - "compute_time_sec": 0.426199, + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, "compute_times": { - "prove": 0.4102505180053413, - "total": 0.43261146097211167, - "queued": 46.82937, - "clean_up": 0.003141910012345761, - "file_setup": 0.017152403015643358, - "save_results": 0.0012355779763311148 + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.491Z", + "date_created": "2024-03-02T22:18:08.462Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.474603S", - "compute_time_sec": 0.474603, + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, "compute_times": { - "prove": 0.4527727549429983, - "total": 0.4810627130791545, - "queued": 49.399479, - "clean_up": 0.0032021570950746536, - "file_setup": 0.02290356601588428, - "save_results": 0.0017274878919124603 + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.478Z", + "date_created": "2024-03-02T22:18:06.935Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.305654S", - "compute_time_sec": 0.305654, + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, "compute_times": { - "prove": 0.2871348679764196, - "total": 0.3104168300051242, - "queued": 46.529494, - "clean_up": 0.0037129210541024804, - "file_setup": 0.017233187099918723, - "save_results": 0.0019823479233309627 + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.414Z", + "date_created": "2024-03-02T22:18:05.334Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.498123S", - "compute_time_sec": 0.498123, + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, "compute_times": { - "prove": 0.47856602212414145, - "total": 0.5038217708934098, - "queued": 45.444814, - "clean_up": 0.0037471128161996603, - "file_setup": 0.019111952977254987, - "save_results": 0.0020769149996340275 + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.362Z", + "date_created": "2024-03-02T22:18:03.737Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.518721S", - "compute_time_sec": 0.518721, + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, "compute_times": { - "prove": 0.5003455500118434, - "total": 0.5234491459559649, - "queued": 45.480803, - "clean_up": 0.0037253409391269088, - "file_setup": 0.017134927911683917, - "save_results": 0.0019250600598752499 + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.356Z", + "date_created": "2024-03-02T22:18:02.220Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.611922S", - "compute_time_sec": 0.611922, + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, "compute_times": { - "prove": 0.5805270280689001, - "total": 0.6166191740194336, - "queued": 44.232932, - "clean_up": 0.008304930990561843, - "file_setup": 0.025953233940526843, - "save_results": 0.0014997139805927873 + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.294Z", + "date_created": "2024-03-02T22:18:00.620Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308959S", - "compute_time_sec": 0.308959, + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, "compute_times": { - "prove": 0.2826259849825874, - "total": 0.3145583850564435, - "queued": 43.33347, - "clean_up": 0.003558462020009756, - "file_setup": 0.0257925660116598, - "save_results": 0.0022130260476842523 + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.184Z", + "date_created": "2024-03-02T22:17:59.069Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109062S", - "compute_time_sec": 0.109062, + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, "compute_times": { - "prove": 0.07950302597600967, - "total": 0.11443837394472212, - "queued": 47.654241, - "clean_up": 0.004247633973136544, - "file_setup": 0.028729144018143415, - "save_results": 0.001540875993669033 + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.144Z", + "date_created": "2024-03-02T22:17:57.502Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.249112S", - "compute_time_sec": 0.249112, + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, "compute_times": { - "prove": 0.21678003598935902, - "total": 0.25460609793663025, - "queued": 42.162713, - "clean_up": 0.01700777595397085, - "file_setup": 0.018869346007704735, - "save_results": 0.0016134349862113595 + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.120Z", + "date_created": "2024-03-02T22:17:55.884Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.389380S", - "compute_time_sec": 0.38938, + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, "compute_times": { - "prove": 0.3490279840771109, - "total": 0.39595628902316093, - "queued": 44.712192, - "clean_up": 0.018011081032454967, - "file_setup": 0.026378671871498227, - "save_results": 0.0021800349932163954 + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.062Z", + "date_created": "2024-03-02T22:17:54.264Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.293103S", - "compute_time_sec": 0.293103, + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, "compute_times": { - "prove": 0.2668396580265835, - "total": 0.29833219898864627, - "queued": 41.268095, - "clean_up": 0.004488729988224804, - "file_setup": 0.024880563956685364, - "save_results": 0.0017942419508472085 + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.027Z", + "date_created": "2024-03-02T22:17:52.472Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.726384S", - "compute_time_sec": 0.726384, + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, "compute_times": { - "prove": 0.6857492360286415, - "total": 0.7852012270595878, - "queued": 40.629769, - "clean_up": 0.016240264056250453, - "file_setup": 0.028827585047110915, - "save_results": 0.0025640518870204687 + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.006Z", + "date_created": "2024-03-02T22:17:50.941Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119931S", - "compute_time_sec": 0.119931, + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, "compute_times": { - "prove": 0.09887892508413643, - "total": 0.12549577211029828, - "queued": 40.552476, - "clean_up": 0.007899258052930236, - "file_setup": 0.016978575964458287, - "save_results": 0.0013200589455664158 + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.963Z", + "date_created": "2024-03-02T22:17:49.312Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308239S", - "compute_time_sec": 0.308239, + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, "compute_times": { - "prove": 0.2867297289194539, - "total": 0.314586246968247, - "queued": 39.622031, - "clean_up": 0.004962102975696325, - "file_setup": 0.0206260799895972, - "save_results": 0.001943530049175024 + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.909Z", + "date_created": "2024-03-02T22:17:47.661Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.370286S", - "compute_time_sec": 0.370286, + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, "compute_times": { - "prove": 0.34130737208761275, - "total": 0.376522185979411, - "queued": 38.669829, - "clean_up": 0.008471829001791775, - "file_setup": 0.02454887900967151, - "save_results": 0.001779031939804554 + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.896Z", + "date_created": "2024-03-02T22:17:46.099Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174815S", - "compute_time_sec": 0.174815, + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, "compute_times": { - "prove": 0.0778409120393917, - "total": 0.18085870705544949, - "queued": 42.873267, - "clean_up": 0.08188443898689002, - "file_setup": 0.018623532028868794, - "save_results": 0.0020236889831721783 + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.873Z", + "date_created": "2024-03-02T22:17:44.552Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129168S", - "compute_time_sec": 0.129168, + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, "compute_times": { - "prove": 0.11140450404491276, - "total": 11.33851779595716, - "queued": 36.762873, - "clean_up": 0.0029776159790344536, - "file_setup": 11.211716797959525, - "save_results": 0.001344212971162051 + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.817Z", + "date_created": "2024-03-02T22:17:42.989Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132006S", - "compute_time_sec": 0.132006, + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, "compute_times": { - "prove": 0.080011370126158, - "total": 0.13885680097155273, - "queued": 39.970335, - "clean_up": 0.01748181483708322, - "file_setup": 0.03901624190621078, - "save_results": 0.0019160669762641191 + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.806Z", + "date_created": "2024-03-02T22:17:41.451Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.193712S", - "compute_time_sec": 0.193712, + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, "compute_times": { - "prove": 0.17043351900065318, - "total": 10.978355454979464, - "queued": 35.874311, - "clean_up": 0.003109109995421022, - "file_setup": 10.787516613025218, - "save_results": 0.001674333994742483 + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.774Z", + "date_created": "2024-03-02T22:17:39.456Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.205276S", - "compute_time_sec": 0.205276, + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, "compute_times": { - "prove": 0.186850864905864, - "total": 11.348314038012177, - "queued": 35.925496, - "clean_up": 0.0035353717394173145, - "file_setup": 11.152006654068828, - "save_results": 0.0015276442281901836 + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.713Z", + "date_created": "2024-03-02T22:17:37.847Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.165272S", - "compute_time_sec": 0.165272, + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, "compute_times": { - "prove": 0.14217190898489207, - "total": 0.17151216696947813, - "queued": 38.034718, - "clean_up": 0.003942857962101698, - "file_setup": 0.023223162977956235, - "save_results": 0.0017018220387399197 - }, - "file_size": 532, + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 + }, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.692Z", + "date_created": "2024-03-02T22:17:36.258Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102217S", - "compute_time_sec": 0.102217, + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, "compute_times": { - "prove": 0.07969108188990504, - "total": 0.10789976501837373, - "queued": 38.13202, - "clean_up": 0.004012368037365377, - "file_setup": 0.022230835049413145, - "save_results": 0.0015486960764974356 + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.644Z", + "date_created": "2024-03-02T22:17:34.681Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.117661S", - "compute_time_sec": 1.117661, + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, "compute_times": { - "prove": 1.0916141049237922, - "total": 1.125104735023342, - "queued": 31.725794, - "clean_up": 0.006913283024914563, - "file_setup": 0.02388083899859339, - "save_results": 0.002335774013772607 + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.593Z", + "date_created": "2024-03-02T22:17:33.146Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.977064S", - "compute_time_sec": 0.977064, + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, "compute_times": { - "prove": 0.9557226439937949, - "total": 0.9839210119098425, - "queued": 35.112241, - "clean_up": 0.00471810600720346, - "file_setup": 0.02103408006951213, - "save_results": 0.00203876500017941 + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.575Z", + "date_created": "2024-03-02T22:17:31.611Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375914S", - "compute_time_sec": 0.375914, + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, "compute_times": { - "prove": 0.34089843509718776, - "total": 0.38064429303631186, - "queued": 33.110783, - "clean_up": 0.015058210003189743, - "file_setup": 0.022246263921260834, - "save_results": 0.0021008079638704658 + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.531Z", + "date_created": "2024-03-02T22:17:30.068Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.472448S", - "compute_time_sec": 0.472448, + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, "compute_times": { - "prove": 0.4435087050078437, - "total": 0.47790782095398754, - "queued": 30.700356, - "clean_up": 0.012506086030043662, - "file_setup": 0.019921150989830494, - "save_results": 0.0015664849197492003 + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.492Z", + "date_created": "2024-03-02T22:17:28.546Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087612S", - "compute_time_sec": 0.087612, + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, "compute_times": { - "prove": 0.06967927806545049, - "total": 0.092331736930646, - "queued": 29.991506, - "clean_up": 0.0028922349447384477, - "file_setup": 0.01781347393989563, - "save_results": 0.0015894660027697682 + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.474Z", + "date_created": "2024-03-02T22:17:27.002Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112744S", - "compute_time_sec": 0.112744, + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, "compute_times": { - "prove": 0.09469883295241743, - "total": 0.11807810491882265, - "queued": 29.972988, - "clean_up": 0.0033285249955952168, - "file_setup": 0.017642873106524348, - "save_results": 0.002044467953965068 + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.387Z", + "date_created": "2024-03-02T22:17:25.415Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097410S", - "compute_time_sec": 0.09741, + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, "compute_times": { - "prove": 0.07845993107184768, - "total": 0.10426705703139305, - "queued": 30.149625, - "clean_up": 0.003105517942458391, - "file_setup": 0.02031002496369183, - "save_results": 0.0018116270657628775 + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.386Z", + "date_created": "2024-03-02T22:17:23.831Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103245S", - "compute_time_sec": 0.103245, + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, "compute_times": { - "prove": 0.0779562909156084, - "total": 0.10882041102740914, - "queued": 29.333339, - "clean_up": 0.00295620399992913, - "file_setup": 0.026116034016013145, - "save_results": 0.0014624170726165175 + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.380Z", + "date_created": "2024-03-02T22:17:22.258Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.384743S", - "compute_time_sec": 0.384743, + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, "compute_times": { - "prove": 0.3528827680274844, - "total": 0.3893050210317597, - "queued": 29.028812, - "clean_up": 0.017584193032234907, - "file_setup": 0.016878271009773016, - "save_results": 0.0016379220178350806 + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.286Z", + "date_created": "2024-03-02T22:17:20.735Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.382096S", - "compute_time_sec": 0.382096, + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, "compute_times": { - "prove": 0.35213211202062666, - "total": 0.3891321790870279, - "queued": 29.096306, - "clean_up": 0.014389456948265433, - "file_setup": 0.02016678685322404, - "save_results": 0.00188663718290627 + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.248Z", + "date_created": "2024-03-02T22:17:19.166Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.623385S", - "compute_time_sec": 0.623385, + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, "compute_times": { - "prove": 0.6039510099217296, - "total": 0.6293552990537137, - "queued": 27.786781, - "clean_up": 0.0037962039932608604, - "file_setup": 0.01944179111160338, - "save_results": 0.0017109769396483898 + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.228Z", + "date_created": "2024-03-02T22:17:17.494Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.470183S", - "compute_time_sec": 0.470183, + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, "compute_times": { - "prove": 0.4347335551865399, - "total": 0.47685516392812133, - "queued": 26.623268, - "clean_up": 0.017949641915038228, - "file_setup": 0.021318417973816395, - "save_results": 0.0024754919577389956 + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.128Z", + "date_created": "2024-03-02T22:17:15.887Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.523158S", - "compute_time_sec": 0.523158, + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, "compute_times": { - "prove": 0.49819166213274, - "total": 0.5295807488728315, - "queued": 25.466882, - "clean_up": 0.007454287027940154, - "file_setup": 0.02171924593858421, - "save_results": 0.0017853768076747656 + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.091Z", + "date_created": "2024-03-02T22:17:14.188Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.286944S", - "compute_time_sec": 0.286944, + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, "compute_times": { - "prove": 0.2631158559815958, - "total": 0.2923560020281002, - "queued": 28.66412, - "clean_up": 0.008188333013094962, - "file_setup": 0.019067034008912742, - "save_results": 0.0016677940730005503 + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.082Z", + "date_created": "2024-03-02T22:17:12.610Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.458130S", - "compute_time_sec": 0.45813, + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, "compute_times": { - "prove": 0.42354415403679013, - "total": 0.4653686359524727, - "queued": 24.323498, - "clean_up": 0.014879923779517412, - "file_setup": 0.024928942089900374, - "save_results": 0.0015406690072268248 + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.998Z", + "date_created": "2024-03-02T22:17:11.068Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128011S", - "compute_time_sec": 0.128011, + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, "compute_times": { - "prove": 0.09206298098433763, - "total": 0.13274087803438306, - "queued": 28.63419, - "clean_up": 0.021465381956659257, - "file_setup": 0.017213757033459842, - "save_results": 0.0016593720065429807 + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.976Z", + "date_created": "2024-03-02T22:17:09.525Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125847S", - "compute_time_sec": 0.125847, + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, "compute_times": { - "prove": 0.10572471795603633, - "total": 0.1338271670974791, - "queued": 23.56859, - "clean_up": 0.003848722204566002, - "file_setup": 0.02194214309565723, - "save_results": 0.0019167859572917223 + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.945Z", + "date_created": "2024-03-02T22:17:07.842Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122820S", - "compute_time_sec": 0.12282, + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, "compute_times": { - "prove": 0.10552407801151276, - "total": 0.12850606301799417, - "queued": 23.571138, - "clean_up": 0.0035990109900012612, - "file_setup": 0.017446335055865347, - "save_results": 0.0015994029818102717 + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.870Z", + "date_created": "2024-03-02T22:17:06.256Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105198S", - "compute_time_sec": 0.105198, + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, "compute_times": { - "prove": 0.07883684895932674, - "total": 0.1122406111098826, - "queued": 22.88221, - "clean_up": 0.003977251006290317, - "file_setup": 0.0269186079967767, - "save_results": 0.0020488761365413666 + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.855Z", + "date_created": "2024-03-02T22:17:04.726Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375989S", - "compute_time_sec": 0.375989, + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, "compute_times": { - "prove": 0.35955213801935315, - "total": 0.38039617508184165, - "queued": 22.616587, - "clean_up": 0.003521032049320638, - "file_setup": 0.015475824940949678, - "save_results": 0.0015010939678177238 + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.839Z", + "date_created": "2024-03-02T22:17:03.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112413S", - "compute_time_sec": 0.112413, + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, "compute_times": { - "prove": 0.09385650302283466, - "total": 0.11931004805956036, - "queued": 23.85771, - "clean_up": 0.0034119969932362437, - "file_setup": 0.020241676014848053, - "save_results": 0.0014685370260849595 + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.714Z", + "date_created": "2024-03-02T22:17:01.643Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.303833S", - "compute_time_sec": 0.303833, + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, "compute_times": { - "prove": 0.27441725484095514, - "total": 0.43832587893120944, - "queued": 22.039487, - "clean_up": 0.013608262874186039, - "file_setup": 0.02093623112887144, - "save_results": 0.0018121080938726664 + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.706Z", + "date_created": "2024-03-02T22:16:59.991Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.354849S", - "compute_time_sec": 0.354849, + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, "compute_times": { - "prove": 0.306272565969266, - "total": 0.36076175002381206, - "queued": 21.742685, - "clean_up": 0.031400882988236845, - "file_setup": 0.021054222946986556, - "save_results": 0.001673974096775055 + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.691Z", + "date_created": "2024-03-02T22:16:58.419Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.392543S", - "compute_time_sec": 0.392543, + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, "compute_times": { - "prove": 0.32281060807872564, - "total": 0.39849924307782203, - "queued": 21.744261, - "clean_up": 0.049071428016759455, - "file_setup": 0.024452029960229993, - "save_results": 0.0017178819980472326 + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.589Z", + "date_created": "2024-03-02T22:16:56.855Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.171713S", - "compute_time_sec": 0.171713, + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, "compute_times": { - "prove": 0.0936721230391413, - "total": 0.17827622988261282, - "queued": 21.124808, - "clean_up": 0.03897871193476021, - "file_setup": 0.038734283996745944, - "save_results": 0.006515543907880783 + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.567Z", + "date_created": "2024-03-02T22:16:55.300Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.380783S", - "compute_time_sec": 0.380783, + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, "compute_times": { - "prove": 0.34301244595553726, - "total": 0.38707092101685703, - "queued": 20.832537, - "clean_up": 0.0032510189339518547, - "file_setup": 0.038782318006269634, - "save_results": 0.0015539260348305106 + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.549Z", + "date_created": "2024-03-02T22:16:53.639Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.471394S", - "compute_time_sec": 0.471394, + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, "compute_times": { - "prove": 0.44031512807123363, - "total": 0.4763076149392873, - "queued": 20.750492, - "clean_up": 0.004170806030742824, - "file_setup": 0.029659383930265903, - "save_results": 0.0016929719131439924 + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.474Z", + "date_created": "2024-03-02T22:14:41.345Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124495S", - "compute_time_sec": 0.124495, + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, "compute_times": { - "prove": 0.10073043289594352, - "total": 0.13022281299345195, - "queued": 20.298391, - "clean_up": 0.003909061895683408, - "file_setup": 0.02332677412778139, - "save_results": 0.0017897870857268572 + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.431Z", + "date_created": "2024-03-02T22:14:41.240Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223264S", - "compute_time_sec": 0.223264, + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, "compute_times": { - "prove": 0.20454663503915071, - "total": 0.22819734294898808, - "queued": 19.992071, - "clean_up": 0.005460212007164955, - "file_setup": 0.016508184024132788, - "save_results": 0.0012988959206268191 + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.409Z", + "date_created": "2024-03-02T22:14:41.236Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.236397S", - "compute_time_sec": 0.236397, + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, "compute_times": { - "prove": 0.2126400190172717, - "total": 0.24228776898235083, - "queued": 20.01237, - "clean_up": 0.003821471007540822, - "file_setup": 0.023733722046017647, - "save_results": 0.0016510839341208339 + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.344Z", + "date_created": "2024-03-02T22:14:41.236Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.259418S", - "compute_time_sec": 0.259418, + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, "compute_times": { - "prove": 0.23506561596877873, - "total": 0.26543588005006313, - "queued": 19.361679, - "clean_up": 0.007562417071312666, - "file_setup": 0.020428013987839222, - "save_results": 0.001966766081750393 + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.290Z", + "date_created": "2024-03-02T22:14:41.112Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.515161S", - "compute_time_sec": 0.515161, + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, "compute_times": { - "prove": 0.49523238092660904, - "total": 0.5212377090938389, - "queued": 18.933764, - "clean_up": 0.004512671031989157, - "file_setup": 0.01928175101056695, - "save_results": 0.001811992027796805 + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.256Z", + "date_created": "2024-03-02T22:14:39.613Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157983S", - "compute_time_sec": 0.157983, + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, "compute_times": { - "prove": 0.13088228809647262, - "total": 0.16489004692994058, - "queued": 18.546469, - "clean_up": 0.009672191925346851, - "file_setup": 0.02190026408061385, - "save_results": 0.001803946914151311 + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.239Z", + "date_created": "2024-03-02T22:14:38.083Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.121145S", - "compute_time_sec": 0.121145, + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, "compute_times": { - "prove": 0.08225085295271128, - "total": 0.1268888000631705, - "queued": 18.194739, - "clean_up": 0.014004492084495723, - "file_setup": 0.028718804009258747, - "save_results": 0.0015831160126253963 + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.167Z", + "date_created": "2024-03-02T22:14:36.595Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.378241S", - "compute_time_sec": 0.378241, + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, "compute_times": { - "prove": 0.32446074998006225, - "total": 0.46455645211972296, - "queued": 17.564428, - "clean_up": 0.025895975064486265, - "file_setup": 0.0355614370200783, - "save_results": 0.0018245270475745201 + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.137Z", + "date_created": "2024-03-02T22:14:35.046Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.527332S", - "compute_time_sec": 0.527332, + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, "compute_times": { - "prove": 0.46785091701895, - "total": 0.5323068069992587, - "queued": 17.114249, - "clean_up": 0.04379052110016346, - "file_setup": 0.018304905970580876, - "save_results": 0.0018958799773827195 + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.101Z", + "date_created": "2024-03-02T22:14:33.547Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157597S", - "compute_time_sec": 0.157597, + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, "compute_times": { - "prove": 0.12255263701081276, - "total": 0.16386522795073688, - "queued": 19.497095, - "clean_up": 0.003113526967354119, - "file_setup": 0.03630416397936642, - "save_results": 0.0015326740685850382 + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.057Z", + "date_created": "2024-03-02T22:13:40.710Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242588S", - "compute_time_sec": 0.242588, + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, "compute_times": { - "prove": 0.20696109696291387, - "total": 0.24818814708851278, - "queued": 16.264806, - "clean_up": 0.003144470974802971, - "file_setup": 0.03611759003251791, - "save_results": 0.0016494940500706434 + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.015Z", + "date_created": "2024-03-02T22:13:39.000Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242412S", - "compute_time_sec": 0.242412, + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, "compute_times": { - "prove": 0.16999451199080795, - "total": 0.24800510297063738, - "queued": 15.393279, - "clean_up": 0.05378705798648298, - "file_setup": 0.021581811015494168, - "save_results": 0.0023058250080794096 + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.971Z", + "date_created": "2024-03-02T22:13:37.260Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.973140S", - "compute_time_sec": 0.97314, + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, "compute_times": { - "prove": 0.5375044860411435, - "total": 0.9786076380405575, - "queued": 14.685862, - "clean_up": 0.41053569701034576, - "file_setup": 0.02815453300718218, - "save_results": 0.0020460280356928706 + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.913Z", + "date_created": "2024-03-02T22:13:35.691Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.365020S", - "compute_time_sec": 0.36502, + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, "compute_times": { - "prove": 0.3317899671383202, - "total": 0.37020347407087684, - "queued": 16.60799, - "clean_up": 0.003273986978456378, - "file_setup": 0.032879116013646126, - "save_results": 0.00186073686927557 + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.888Z", + "date_created": "2024-03-02T22:13:34.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.456895S", - "compute_time_sec": 0.456895, + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, "compute_times": { - "prove": 0.423072372097522, - "total": 0.46337219700217247, - "queued": 13.632284, - "clean_up": 0.003993527963757515, - "file_setup": 0.03403562190942466, - "save_results": 0.0018623609794303775 + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.837Z", + "date_created": "2024-03-02T22:13:32.679Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140068S", - "compute_time_sec": 0.140068, + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, "compute_times": { - "prove": 0.1145919740665704, - "total": 0.14642110699787736, - "queued": 12.877362, - "clean_up": 0.0042882689740508795, - "file_setup": 0.025636608013883233, - "save_results": 0.0015542889013886452 + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.806Z", + "date_created": "2024-03-02T22:13:31.191Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.181831S", - "compute_time_sec": 0.181831, + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, "compute_times": { - "prove": 0.14706613693851978, - "total": 0.20189034601207823, - "queued": 12.867749, - "clean_up": 0.0034584460081532598, - "file_setup": 0.03571781504433602, - "save_results": 0.0014523779973387718 + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.751Z", + "date_created": "2024-03-02T22:13:29.642Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.450066S", - "compute_time_sec": 0.450066, + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, "compute_times": { - "prove": 0.4147049420280382, - "total": 0.45607288100291044, - "queued": 11.772521, - "clean_up": 0.007868458982557058, - "file_setup": 0.030776931904256344, - "save_results": 0.0023057740181684494 + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.720Z", + "date_created": "2024-03-02T22:13:27.981Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.420386S", - "compute_time_sec": 0.420386, + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, "compute_times": { - "prove": 0.3990589149761945, - "total": 0.4270030810730532, - "queued": 10.7278, - "clean_up": 0.005256709060631692, - "file_setup": 0.02061484009027481, - "save_results": 0.001710172975435853 + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.707Z", + "date_created": "2024-03-02T22:13:26.328Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.142094S", - "compute_time_sec": 0.142094, + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, "compute_times": { - "prove": 0.09821043501142412, - "total": 0.14811538497451693, - "queued": 14.851825, - "clean_up": 0.005784207955002785, - "file_setup": 0.04186572507023811, - "save_results": 0.001917139976285398 + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.630Z", + "date_created": "2024-03-02T21:55:54.687Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.855499S", - "compute_time_sec": 0.855499, + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, "compute_times": { - "prove": 0.8245165729895234, - "total": 0.8615315690403804, - "queued": 9.176532, - "clean_up": 0.014629843994043767, - "file_setup": 0.019743680022656918, - "save_results": 0.0022631760220974684 + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.588Z", + "date_created": "2024-03-02T21:55:52.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.490007S", - "compute_time_sec": 0.490007, + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, "compute_times": { - "prove": 0.455899114953354, - "total": 0.49668906279839575, - "queued": 11.871105, - "clean_up": 0.0045558069832623005, - "file_setup": 0.03405331703834236, - "save_results": 0.0018026470206677914 + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.542Z", + "date_created": "2024-03-02T21:55:49.557Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.008029S", - "compute_time_sec": 1.008029, + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, "compute_times": { - "prove": 0.9685044119833037, - "total": 1.0136986010475084, - "queued": 7.558703, - "clean_up": 0.021701849065721035, - "file_setup": 0.020927226985804737, - "save_results": 0.002168047009035945 - }, - "file_size": 532, + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 + }, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.490Z", + "date_created": "2024-03-02T21:55:47.111Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.576096S", - "compute_time_sec": 0.576096, + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, "compute_times": { - "prove": 0.5422158139990643, - "total": 0.5823603679891676, - "queued": 6.353891, - "clean_up": 0.0037581800715997815, - "file_setup": 0.03395645902492106, - "save_results": 0.002097297925502062 + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.478Z", + "date_created": "2024-03-02T21:55:44.587Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.209934S", - "compute_time_sec": 0.209934, + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, "compute_times": { - "prove": 0.15358152601402253, - "total": 0.21605274605099112, - "queued": 10.113062, - "clean_up": 0.023381736944429576, - "file_setup": 0.037115994025953114, - "save_results": 0.001614085049368441 + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.415Z", + "date_created": "2024-03-02T21:55:32.787Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.591839S", - "compute_time_sec": 0.591839, + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, "compute_times": { - "prove": 0.5229394290363416, - "total": 0.5979725319193676, - "queued": 5.154185, - "clean_up": 0.02260146988555789, - "file_setup": 0.05059771193191409, - "save_results": 0.0014608950586989522 + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.366Z", + "date_created": "2024-03-02T21:55:29.506Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116234S", - "compute_time_sec": 0.116234, + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, "compute_times": { - "prove": 0.07700311101507396, - "total": 0.12174052593763918, - "queued": 4.424714, - "clean_up": 0.006362012936733663, - "file_setup": 0.03617248602677137, - "save_results": 0.0017600810388103127 + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.357Z", + "date_created": "2024-03-02T21:55:26.174Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099418S", - "compute_time_sec": 0.099418, + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, "compute_times": { - "prove": 0.07262928795535117, - "total": 0.10508589306846261, - "queued": 3.682512, - "clean_up": 0.003569742082618177, - "file_setup": 0.027104002074338496, - "save_results": 0.0014839039649814367 + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.309Z", + "date_created": "2024-03-02T21:10:50.403Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138870S", - "compute_time_sec": 0.13887, + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, "compute_times": { - "prove": 0.0766439950093627, - "total": 0.14458074199501425, - "queued": 2.903833, - "clean_up": 0.02824126894120127, - "file_setup": 0.03780686797108501, - "save_results": 0.0015501140151172876 + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.243Z", + "date_created": "2024-02-28T18:02:47.502Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132945S", - "compute_time_sec": 0.132945, + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, "compute_times": { - "prove": 0.10661404114216566, - "total": 0.14006488304585218, - "queued": 7.128484, - "clean_up": 0.005756359081715345, - "file_setup": 0.0256589378695935, - "save_results": 0.0016340878792107105 + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 }, - "file_size": 532, + "file_size": 451, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.216Z", + "date_created": "2024-02-28T18:02:39.474Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097658S", - "compute_time_sec": 0.097658, + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, "compute_times": { - "prove": 0.07415288093034178, - "total": 0.10346396896056831, - "queued": 2.235442, - "clean_up": 0.003746030037291348, - "file_setup": 0.023523699957877398, - "save_results": 0.001744512002915144 + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" }, { - "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.197Z", + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126620S", - "compute_time_sec": 0.12662, + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, "compute_times": { - "prove": 0.08383059408515692, - "total": 0.13342511001974344, - "queued": 2.054465, - "clean_up": 0.017144297948107123, - "file_setup": 0.030395573005080223, - "save_results": 0.001586398109793663 + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.091Z", + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135631S", - "compute_time_sec": 0.135631, + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, "compute_times": { - "prove": 0.0823628450743854, - "total": 0.14176014298573136, - "queued": 1.539206, - "clean_up": 0.017501453985460103, - "file_setup": 0.03982250590343028, - "save_results": 0.0016014629509299994 + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.078Z", + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138158S", - "compute_time_sec": 0.138158, + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, "compute_times": { - "prove": 0.07979016215540469, - "total": 0.14502660813741386, - "queued": 0.943551, - "clean_up": 0.020246606087312102, - "file_setup": 0.04280776507221162, - "save_results": 0.0017201078590005636 + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.058Z", + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.570352S", - "compute_time_sec": 0.570352, + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, "compute_times": { - "prove": 0.522533038049005, - "total": 0.5765696190064773, - "queued": 5.49816, - "clean_up": 0.004591017961502075, - "file_setup": 0.04690163198392838, - "save_results": 0.00215094699524343 + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.958Z", + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141230S", - "compute_time_sec": 0.14123, + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, "compute_times": { - "prove": 0.09054448700044304, - "total": 0.14681443898007274, - "queued": 0.857495, - "clean_up": 0.01092955400235951, - "file_setup": 0.04332920000888407, - "save_results": 0.0015883928863331676 + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 }, - "file_size": 532, + "file_size": 789, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.946Z", + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124351S", - "compute_time_sec": 0.124351, + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, "compute_times": { - "prove": 0.07182355504482985, - "total": 0.12982704397290945, - "queued": 0.172555, - "clean_up": 0.020923485048115253, - "file_setup": 0.03491202800069004, - "save_results": 0.0018582409247756004 + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" }, { - "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.938Z", + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.148920S", - "compute_time_sec": 0.14892, + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, "compute_times": { - "prove": 0.07293843105435371, - "total": 0.15480406815186143, - "queued": 0.196521, - "clean_up": 0.040053355041891336, - "file_setup": 0.03987180581316352, - "save_results": 0.0016056180465966463 + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.776Z", + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106213S", - "compute_time_sec": 0.106213, + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, "compute_times": { - "prove": 0.08078976103570312, - "total": 0.11167675291653723, - "queued": 0.231229, - "clean_up": 0.005760588916018605, - "file_setup": 0.023330271942541003, - "save_results": 0.0013793050311505795 + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 }, - "file_size": 532, + "file_size": 713, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:30.141Z", + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111507S", - "compute_time_sec": 0.111507, + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, "compute_times": { - "prove": 0.075576186995022, - "total": 0.11713997193146497, - "queued": 0.16129, - "clean_up": 0.0037848310312256217, - "file_setup": 0.035947992000728846, - "save_results": 0.0014955269871279597 + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:28.622Z", + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110477S", - "compute_time_sec": 0.110477, + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, "compute_times": { - "prove": 0.07629627687856555, - "total": 0.11736977496184409, - "queued": 0.188204, - "clean_up": 0.004256210057064891, - "file_setup": 0.034773221937939525, - "save_results": 0.0016197890508919954 + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:27.059Z", + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117834S", - "compute_time_sec": 0.117834, + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, "compute_times": { - "prove": 0.07615005096886307, - "total": 0.12300548201892525, - "queued": 0.205188, - "clean_up": 0.013062510988675058, - "file_setup": 0.03202356898691505, - "save_results": 0.001405435032211244 + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:25.393Z", + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133236S", - "compute_time_sec": 0.133236, + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, "compute_times": { - "prove": 0.08939769200515002, - "total": 0.13879455591086298, - "queued": 0.161569, - "clean_up": 0.004053406999446452, - "file_setup": 0.04343735601287335, - "save_results": 0.0015739259542897344 + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:23.768Z", + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106542S", - "compute_time_sec": 0.106542, + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, "compute_times": { - "prove": 0.07830432313494384, - "total": 0.11298795603215694, - "queued": 0.210482, - "clean_up": 0.003878022078424692, - "file_setup": 0.02870348491705954, - "save_results": 0.0017148179467767477 + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:22.175Z", + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109350S", - "compute_time_sec": 0.10935, + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, "compute_times": { - "prove": 0.07757606508675963, - "total": 0.11466619104612619, - "queued": 0.256591, - "clean_up": 0.010891324956901371, - "file_setup": 0.024280331912450492, - "save_results": 0.0015671229921281338 + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:20.592Z", + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097386S", - "compute_time_sec": 0.097386, + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, "compute_times": { - "prove": 0.07514205400366336, - "total": 0.10310335899703205, - "queued": 0.159439, - "clean_up": 0.0037166819674894214, - "file_setup": 0.022262264043092728, - "save_results": 0.0016199250239878893 + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:18.948Z", + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122932S", - "compute_time_sec": 0.122932, + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, "compute_times": { - "prove": 0.08516530389897525, - "total": 0.13015575311146677, - "queued": 0.233137, - "clean_up": 0.014129698975011706, - "file_setup": 0.0285584160592407, - "save_results": 0.0018891170620918274 + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:17.333Z", + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.131533S", - "compute_time_sec": 0.131533, + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, "compute_times": { - "prove": 0.07857439492363483, - "total": 0.13676583603955805, - "queued": 0.227587, - "clean_up": 0.010069372947327793, - "file_setup": 0.04610578005667776, - "save_results": 0.001678532105870545 + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:15.726Z", + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109690S", - "compute_time_sec": 0.10969, + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, "compute_times": { - "prove": 0.07168154697865248, - "total": 0.11618917598389089, - "queued": 0.177243, - "clean_up": 0.0042525139870122075, - "file_setup": 0.038573550991714, - "save_results": 0.0013375390553846955 + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:14.150Z", + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138403S", - "compute_time_sec": 0.138403, + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, "compute_times": { - "prove": 0.08462183806113899, - "total": 0.14498792798258364, - "queued": 0.218187, - "clean_up": 0.005619590170681477, - "file_setup": 0.052473017014563084, - "save_results": 0.0018791758920997381 + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:12.520Z", + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.179439S", - "compute_time_sec": 0.179439, + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, "compute_times": { - "prove": 0.12221004103776067, - "total": 0.18509791197720915, - "queued": 0.218919, - "clean_up": 0.010833634994924068, - "file_setup": 0.04949615302029997, - "save_results": 0.002165056997910142 + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:10.959Z", + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133456S", - "compute_time_sec": 0.133456, + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, "compute_times": { - "prove": 0.07268570107407868, - "total": 0.1394008860224858, - "queued": 0.151876, - "clean_up": 0.010548806982114911, - "file_setup": 0.05424705799669027, - "save_results": 0.0015943750040605664 + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:09.368Z", + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104582S", - "compute_time_sec": 0.104582, + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, "compute_times": { - "prove": 0.0761667680926621, - "total": 0.11041608499363065, - "queued": 0.232885, - "clean_up": 0.004713465925306082, - "file_setup": 0.027426036074757576, - "save_results": 0.0016772879753261805 + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:07.782Z", + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103484S", - "compute_time_sec": 0.103484, + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, "compute_times": { - "prove": 0.07775443291757256, - "total": 0.1097704729763791, - "queued": 0.165293, - "clean_up": 0.003079058020375669, - "file_setup": 0.027136432006955147, - "save_results": 0.0014415140030905604 + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:06.214Z", + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110249S", - "compute_time_sec": 0.110249, + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, "compute_times": { - "prove": 0.07331179198808968, - "total": 0.11586580192670226, - "queued": 0.160156, - "clean_up": 0.0036032439675182104, - "file_setup": 0.037042855052277446, - "save_results": 0.0015652959700673819 + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 }, - "file_size": 532, + "file_size": 713, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:04.623Z", + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113074S", - "compute_time_sec": 0.113074, + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, "compute_times": { - "prove": 0.07531885500065982, - "total": 0.11918418202549219, - "queued": 0.21149, - "clean_up": 0.004545237170532346, - "file_setup": 0.03716830490157008, - "save_results": 0.001786466920748353 + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 }, - "file_size": 532, + "file_size": 711, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:03.050Z", + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118456S", - "compute_time_sec": 0.118456, + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, "compute_times": { - "prove": 0.08025075704790652, - "total": 0.12484451208729297, - "queued": 0.171108, - "clean_up": 0.003666321048513055, - "file_setup": 0.03877517697401345, - "save_results": 0.0017490109894424677 + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:01.474Z", + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097245S", - "compute_time_sec": 0.097245, + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, "compute_times": { - "prove": 0.07467410003300756, - "total": 0.1032019880367443, - "queued": 1.000871, - "clean_up": 0.003617644077166915, - "file_setup": 0.023070842027664185, - "save_results": 0.0014518279349431396 + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:59.935Z", + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124478S", - "compute_time_sec": 0.124478, + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, "compute_times": { - "prove": 0.07985819177702069, - "total": 0.131462125107646, - "queued": 0.189545, - "clean_up": 0.00692735007032752, - "file_setup": 0.04234403814189136, - "save_results": 0.001923317089676857 + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null - }, - { - "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:58.407Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119553S", - "compute_time_sec": 0.119553, + } + ], + "rawHeaders": [ + "Content-Length", + "234573", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172794357534d4647546b7165676b496a324f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a62726f777365722d6372656174652d70726f6f662d6d756c7469706c696572322d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794357534d4647546b7165676b496a324f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794357534d4647546b7165676b496a324f2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279476b316e7541726e7772716a663156410d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279476b316e7541726e7772716a663156410d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279476b316e7541726e7772716a663156412d2d0d0a", + "status": 201, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_smart_contract_calldata=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "441c1d46-a6e4-4e73-98be-1c87e892c9bb", + "circuit_name": "circom-multiplier2", + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:58.370Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.948502S", + "compute_time_sec": 4.948502, "compute_times": { - "prove": 0.08296615700237453, - "total": 0.12573627301026136, - "queued": 0.226083, - "clean_up": 0.008650688105262816, - "file_setup": 0.03199622000101954, - "save_results": 0.0017465719720348716 + "prove": 4.804858028001036, + "total": 4.954793066997809, + "queued": 4.113693, + "clean_up": 0.005270341996947536, + "file_setup": 0.01681686499796342, + "save_results": 0.0022578030002478044, + "export_calldata": 0.10960615099975257, + "generate_witness_c": 0.015163871001277585 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:56.860Z", + "proof_id": "bfe813bc-8ba4-4c16-88bd-4460709b37b4", + "circuit_name": "circom-multiplier2", + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.254Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103716S", - "compute_time_sec": 0.103716, + "compute_time": "P0DT00H00M05.744789S", + "compute_time_sec": 5.744789, "compute_times": { - "prove": 0.06979906605556607, - "total": 0.10923597402870655, - "queued": 0.139177, - "clean_up": 0.0036087740445509553, - "file_setup": 0.03399856202304363, - "save_results": 0.0014903269475325942 + "prove": 5.5894722339980945, + "total": 5.752321984997252, + "queued": 0.442669, + "clean_up": 0.004489405997446738, + "file_setup": 0.022617268001340562, + "save_results": 0.001973251000890741, + "export_calldata": 0.11522039000192308, + "generate_witness_c": 0.01802813399990555 }, - "file_size": 532, + "file_size": 1351, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:55.316Z", + "proof_id": "57b86e24-c6ed-440d-b889-d830850742d4", + "circuit_name": "circom-multiplier2", + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.234Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164072S", - "compute_time_sec": 0.164072, + "compute_time": "P0DT00H00M03.776612S", + "compute_time_sec": 3.776612, "compute_times": { - "prove": 0.12517174892127514, - "total": 0.17043978604488075, - "queued": 0.207351, - "clean_up": 0.003746662987396121, - "file_setup": 0.039150891127064824, - "save_results": 0.0019460059702396393 + "prove": 3.6362894689991663, + "total": 3.7815391939984693, + "queued": 0.526972, + "clean_up": 0.0036153680011921097, + "file_setup": 0.018255920000228798, + "save_results": 0.0018909639984485693, + "export_calldata": 0.10398840000198106, + "generate_witness_c": 0.017069464000087464 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:53.766Z", + "proof_id": "249f452d-2c55-4148-97ea-bc05b735e041", + "circuit_name": "circom-multiplier2", + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.171Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116515S", - "compute_time_sec": 0.116515, + "compute_time": "P0DT00H00M05.603900S", + "compute_time_sec": 5.6039, "compute_times": { - "prove": 0.07856976403854787, - "total": 0.12284065398853272, - "queued": 0.204898, - "clean_up": 0.004192995955236256, - "file_setup": 0.03768792003393173, - "save_results": 0.0020342780044302344 + "prove": 5.459078328000032, + "total": 5.610627756999747, + "queued": 0.420203, + "clean_up": 0.004868047999480041, + "file_setup": 0.02211545399768511, + "save_results": 0.0022768349990656134, + "export_calldata": 0.10511248600232648, + "generate_witness_c": 0.01666070999999647 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:52.213Z", + "proof_id": "3ee89584-01a2-4d8f-ac17-7502e50a8781", + "circuit_name": "circom-multiplier2", + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:00.995Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109618S", - "compute_time_sec": 0.109618, + "compute_time": "P0DT00H00M03.405317S", + "compute_time_sec": 3.405317, "compute_times": { - "prove": 0.07834382401779294, - "total": 0.11546277697198093, - "queued": 0.228319, - "clean_up": 0.0037355918902903795, - "file_setup": 0.031366192968562245, - "save_results": 0.0016647940501570702 + "prove": 3.257512511998357, + "total": 3.412531285001023, + "queued": 0.445626, + "clean_up": 0.003913354001269909, + "file_setup": 0.02324151900029392, + "save_results": 0.0026117130000784528, + "export_calldata": 0.10888770000019576, + "generate_witness_c": 0.015812714998901356 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:50.640Z", + "proof_id": "efaa6bf4-3645-4880-a193-d6bd116274c7", + "circuit_name": "circom-multiplier2", + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:52.681Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102363S", - "compute_time_sec": 0.102363, + "compute_time": "P0DT00H00M05.934746S", + "compute_time_sec": 5.934746, "compute_times": { - "prove": 0.07708223187364638, - "total": 0.11076221195980906, - "queued": 0.235274, - "clean_up": 0.004102661041542888, - "file_setup": 0.02742593502625823, - "save_results": 0.0017483970150351524 + "prove": 5.787349419999373, + "total": 5.939744459999929, + "queued": 0.495867, + "clean_up": 0.0040207270030805375, + "file_setup": 0.019113056998321554, + "save_results": 0.0023805119999451563, + "export_calldata": 0.10894711299988558, + "generate_witness_c": 0.017442213000322226 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:49.058Z", + "proof_id": "dcb84b60-ecdf-4ea0-94da-4900d30aabab", + "circuit_name": "circom-multiplier2", + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:41.570Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126055S", - "compute_time_sec": 0.126055, + "compute_time": "P0DT00H00M05.617362S", + "compute_time_sec": 5.617362, "compute_times": { - "prove": 0.08462739107199013, - "total": 0.13239038200117648, - "queued": 0.208639, - "clean_up": 0.017553703975863755, - "file_setup": 0.028355297981761396, - "save_results": 0.0014984130393713713 + "prove": 5.474078178998752, + "total": 5.622463510000671, + "queued": 0.418167, + "clean_up": 0.00803620700025931, + "file_setup": 0.018854406000173185, + "save_results": 0.0017511790028947871, + "export_calldata": 0.10220659499827889, + "generate_witness_c": 0.01688886800184264 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:47.479Z", + "proof_id": "8e5c7aaa-802e-4745-9bf2-66019dd1a601", + "circuit_name": "circom-multiplier2", + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:22.558Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114603S", - "compute_time_sec": 0.114603, + "compute_time": "P0DT00H00M03.001802S", + "compute_time_sec": 3.001802, "compute_times": { - "prove": 0.07099237700458616, - "total": 0.1205103590618819, - "queued": 0.177097, - "clean_up": 0.00736055604647845, - "file_setup": 0.04027851507999003, - "save_results": 0.0015338469529524446 + "prove": 2.850486497001839, + "total": 3.0079437349995715, + "queued": 0.429195, + "clean_up": 0.00477394299741718, + "file_setup": 0.02143064499978209, + "save_results": 0.002050779999990482, + "export_calldata": 0.11096191999968141, + "generate_witness_c": 0.017688288000499597 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:45.920Z", + "proof_id": "6f9d5bd9-f691-4665-8ba8-1fc3ad30f4da", + "circuit_name": "circom-multiplier2", + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:03.354Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105545S", - "compute_time_sec": 0.105545, + "compute_time": "P0DT00H00M05.965728S", + "compute_time_sec": 5.965728, "compute_times": { - "prove": 0.07798794494010508, - "total": 0.11226446111686528, - "queued": 0.210392, - "clean_up": 0.003587795188650489, - "file_setup": 0.02863957593217492, - "save_results": 0.0016675579827278852 + "prove": 5.812987373999931, + "total": 5.971253014999093, + "queued": 0.495867, + "clean_up": 0.005065063000074588, + "file_setup": 0.025277897002524696, + "save_results": 0.002423641999484971, + "export_calldata": 0.10757091800041962, + "generate_witness_c": 0.017406072998710442 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:44.421Z", + "proof_id": "6281a4c2-09a1-4945-84bc-b550dccd7a50", + "circuit_name": "circom-multiplier2", + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", + "circuit_type": "circom", + "date_created": "2024-03-14T19:53:16.126Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.168234S", - "compute_time_sec": 0.168234, + "compute_time": "P0DT00H00M02.228147S", + "compute_time_sec": 2.228147, "compute_times": { - "prove": 0.10509133199229836, - "total": 0.1757285799831152, - "queued": 0.219364, - "clean_up": 0.004795938031747937, - "file_setup": 0.06402788893319666, - "save_results": 0.0014585850294679403 + "prove": 2.077421851001418, + "total": 2.234921953000594, + "queued": 0.418659, + "clean_up": 0.003966344000218669, + "file_setup": 0.030404459001147188, + "save_results": 0.0023475250018236693, + "export_calldata": 0.10374246599894832, + "generate_witness_c": 0.016470030997879803 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:42.838Z", + "proof_id": "2dc6b159-345d-4f56-8b8f-d8bb8628fa63", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:45.755Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138451S", - "compute_time_sec": 0.138451, + "compute_time": "P0DT00H00M05.721447S", + "compute_time_sec": 5.721447, "compute_times": { - "prove": 0.08344166504684836, - "total": 0.14460852497722954, - "queued": 0.193296, - "clean_up": 0.02906027901917696, - "file_setup": 0.030170131009072065, - "save_results": 0.0015538459410890937 + "prove": 5.535044663996814, + "total": 5.726598596997064, + "queued": 0.422717, + "clean_up": 0.03942027899756795, + "file_setup": 0.019663279999804217, + "save_results": 0.002537604003009619, + "export_calldata": 0.11143504299980123, + "generate_witness_c": 0.018077863001963124 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:41.260Z", + "proof_id": "c7c29d0f-2294-4c56-9115-58e4f88a74af", + "circuit_name": "circom-multiplier2", + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:35.490Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108498S", - "compute_time_sec": 0.108498, + "compute_time": "P0DT00H00M05.927519S", + "compute_time_sec": 5.927519, "compute_times": { - "prove": 0.07821972295641899, - "total": 0.11512337112799287, - "queued": 0.207493, - "clean_up": 0.011428299127146602, - "file_setup": 0.023141066078096628, - "save_results": 0.0019629159942269325 + "prove": 5.770760945000802, + "total": 5.933365464999952, + "queued": 0.861562, + "clean_up": 0.003432298999541672, + "file_setup": 0.026692643001297256, + "save_results": 0.0025084219996642787, + "export_calldata": 0.105197737000708, + "generate_witness_c": 0.024245210999652045 }, - "file_size": 532, + "file_size": 1347, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:39.684Z", + "proof_id": "e008931a-4064-414d-accb-aac8b3205dd3", + "circuit_name": "circom-multiplier2", + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:24.665Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125239S", - "compute_time_sec": 0.125239, + "compute_time": "P0DT00H00M05.632578S", + "compute_time_sec": 5.632578, "compute_times": { - "prove": 0.07802591007202864, - "total": 0.13191273796837777, - "queued": 0.208815, - "clean_up": 0.005445771967060864, - "file_setup": 0.04654695594217628, - "save_results": 0.0015280540101230145 + "prove": 5.469727709001745, + "total": 5.638864864002244, + "queued": 0.416688, + "clean_up": 0.00552048399913474, + "file_setup": 0.034471152001060545, + "save_results": 0.0021238860026642215, + "export_calldata": 0.1107287599988922, + "generate_witness_c": 0.015849075996811735 }, - "file_size": 532, + "file_size": 1345, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:38.137Z", + "proof_id": "62ef1d39-1cc1-41e2-8b05-ae3cf2c6bafa", + "circuit_name": "circom-multiplier2", + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:54.345Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113764S", - "compute_time_sec": 0.113764, + "compute_time": "P0DT00H00M01.864568S", + "compute_time_sec": 1.864568, "compute_times": { - "prove": 0.07411053997930139, - "total": 0.11965196207165718, - "queued": 0.123697, - "clean_up": 0.021386098000220954, - "file_setup": 0.022322733071632683, - "save_results": 0.001491626026108861 + "prove": 1.6979890130023705, + "total": 1.8710837769976933, + "queued": 0.420843, + "clean_up": 0.004697303000284592, + "file_setup": 0.03166239900019718, + "save_results": 0.0022494080003525596, + "export_calldata": 0.11624086399751832, + "generate_witness_c": 0.017705917998682708 }, - "file_size": 532, + "file_size": 1353, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:36.609Z", + "proof_id": "b0e83342-ed0f-4847-a564-7e1189f9ddec", + "circuit_name": "circom-multiplier2", + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:50.463Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110500S", - "compute_time_sec": 0.1105, + "compute_time": "P0DT00H00M05.917205S", + "compute_time_sec": 5.917205, "compute_times": { - "prove": 0.07843833207152784, - "total": 0.1174131550360471, - "queued": 0.188117, - "clean_up": 0.013684443198144436, - "file_setup": 0.02307076589204371, - "save_results": 0.001790786860510707 + "prove": 5.76882896099778, + "total": 5.923281269002473, + "queued": 0.473413, + "clean_up": 0.004220196002279408, + "file_setup": 0.023053355002048193, + "save_results": 0.002412202000414254, + "export_calldata": 0.11001600300005521, + "generate_witness_c": 0.014210194000042975 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:35.023Z", + "proof_id": "31737430-a60c-4afa-a802-ab9745a50855", + "circuit_name": "circom-multiplier2", + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:29.388Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113878S", - "compute_time_sec": 0.113878, + "compute_time": "P0DT00H00M03.190486S", + "compute_time_sec": 3.190486, "compute_times": { - "prove": 0.08454172103665769, - "total": 0.11953117907978594, - "queued": 0.202486, - "clean_up": 0.004061337094753981, - "file_setup": 0.028714405023492873, - "save_results": 0.0018627499230206013 + "prove": 3.0487610410018533, + "total": 3.1961618709974573, + "queued": 0.433578, + "clean_up": 0.005094486998132197, + "file_setup": 0.019373082999663893, + "save_results": 0.002381483998760814, + "export_calldata": 0.1057304940004542, + "generate_witness_c": 0.01445452500047395 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:33.480Z", + "proof_id": "1d3b53dd-df47-4eac-a4a8-63e8dcb4fba0", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:29.327Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124901S", - "compute_time_sec": 0.124901, + "compute_time": "P0DT00H00M05.765340S", + "compute_time_sec": 5.76534, "compute_times": { - "prove": 0.07596357993315905, - "total": 0.13044002500828356, - "queued": 0.140458, - "clean_up": 0.005051521933637559, - "file_setup": 0.0476306100608781, - "save_results": 0.0014870570739731193 + "prove": 5.587391068998841, + "total": 5.7718329329982225, + "queued": 0.447915, + "clean_up": 0.0038716149974789005, + "file_setup": 0.020665116000600392, + "save_results": 0.0016502670005138498, + "export_calldata": 0.140346321000834, + "generate_witness_c": 0.01741997200224432 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:31.932Z", + "proof_id": "6db92f74-636d-4113-a191-016d31af5a60", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:40:56.709Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109334S", - "compute_time_sec": 0.109334, + "compute_time": "P0DT00H00M06.111263S", + "compute_time_sec": 6.111263, "compute_times": { - "prove": 0.0772264408878982, - "total": 0.11520785093307495, - "queued": 0.214539, - "clean_up": 0.014989732997491956, - "file_setup": 0.02082884218543768, - "save_results": 0.0017384679522365332 + "prove": 5.801642374000949, + "total": 6.118132268999034, + "queued": 0.417176, + "clean_up": 0.15879904399844236, + "file_setup": 0.028945090998604428, + "save_results": 0.002337395002541598, + "export_calldata": 0.10591289899821277, + "generate_witness_c": 0.020032639000419294 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:30.405Z", + "proof_id": "28c4506e-ccd4-443c-90f3-adb25eb4ad03", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:40:37.936Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099198S", - "compute_time_sec": 0.099198, + "compute_time": "P0DT00H00M08.087169S", + "compute_time_sec": 8.087169, "compute_times": { - "prove": 0.07795899198390543, - "total": 0.3439350420376286, - "queued": 0.44235, - "clean_up": 0.003542012069374323, - "file_setup": 0.02195370604749769, - "save_results": 0.00164421193767339 + "total": 8.095745701000851, + "queued": 0.430515, + "clean_up": 6.9514737549980055, + "file_setup": 0.5215178199978254, + "create_proof": 0.6202040329990268, + "save_results": 0.0021520290029002354 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:28.882Z", + "proof_id": "854a000e-771d-4f12-b0a7-72860557d1b4", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:35:35.367Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.096462S", - "compute_time_sec": 0.096462, + "compute_time": "P0DT00H00M05.625640S", + "compute_time_sec": 5.62564, "compute_times": { - "prove": 0.0719371628947556, - "total": 0.10235371999442577, - "queued": 0.16149, - "clean_up": 0.0030283130472525954, - "file_setup": 0.0255846930667758, - "save_results": 0.001458707032725215 + "total": 5.63317780899888, + "queued": 0.426409, + "clean_up": 4.479961421999178, + "file_setup": 0.563317954998638, + "create_proof": 0.587274489000265, + "save_results": 0.002000247000978561 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:27.303Z", - "perform_verify": false, + "proof_id": "38d6cdd9-8ae0-4bba-a019-be7beb4676a0", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:15:59.739Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126276S", - "compute_time_sec": 0.126276, + "compute_time": "P0DT00H00M08.028110S", + "compute_time_sec": 8.02811, "compute_times": { - "prove": 0.08422461082227528, - "total": 0.13323151203803718, - "queued": 0.217879, - "clean_up": 0.01238051219843328, - "file_setup": 0.03462041402235627, - "save_results": 0.0016039679758250713 + "prove": 5.743801852000615, + "total": 8.034273915996891, + "queued": 0.418479, + "clean_up": 1.4221806829991692, + "file_setup": 0.026719098001194652, + "save_results": 0.0024404450014117174, + "verify_check": 0.7168494949983142, + "export_calldata": 0.1096146449999651, + "generate_witness_c": 0.011982872998487437 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:25.623Z", + "proof_id": "dca14000-9c8e-4010-84a0-6ee0f8141c63", + "circuit_name": "circom-multiplier2", + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", + "circuit_type": "circom", + "date_created": "2024-03-14T19:13:48.590Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138368S", - "compute_time_sec": 0.138368, + "compute_time": "P0DT00H00M05.853836S", + "compute_time_sec": 5.853836, "compute_times": { - "prove": 0.09363546408712864, - "total": 0.14376210200134665, - "queued": 0.257057, - "clean_up": 0.007791407988406718, - "file_setup": 0.03904824494384229, - "save_results": 0.0021443869918584824 + "prove": 5.50850399599949, + "total": 5.85873119399912, + "queued": 0.429635, + "clean_up": 0.19279620100132888, + "file_setup": 0.018208794001111528, + "save_results": 0.0019690720000653528, + "export_calldata": 0.12116290699850651, + "generate_witness_c": 0.015544702000624966 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:24.063Z", + "proof_id": "b29866d5-6977-44a1-b53a-b59bd5f07c5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", + "circuit_type": "circom", + "date_created": "2024-03-14T19:13:47.134Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098465S", - "compute_time_sec": 0.098465, + "compute_time": "P0DT00H00M06.759570S", + "compute_time_sec": 6.75957, "compute_times": { - "prove": 0.07042361702769995, - "total": 0.10373939899727702, - "queued": 0.163439, - "clean_up": 0.003754721023142338, - "file_setup": 0.027845817035995424, - "save_results": 0.0013589690206572413 + "prove": 5.7691859059996204, + "total": 6.76582350299941, + "queued": 0.573203, + "clean_up": 0.8512933130004967, + "file_setup": 0.020217060002323706, + "save_results": 0.002654211999470135, + "export_calldata": 0.10469743599969661, + "generate_witness_c": 0.017217937998793786 }, - "file_size": 532, + "file_size": 1348, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:22.482Z", + "proof_id": "a0774be2-3c41-4cbc-addc-edd9b4e2956d", + "circuit_name": "circom-multiplier2", + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", + "circuit_type": "circom", + "date_created": "2024-03-14T19:13:15.491Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140408S", - "compute_time_sec": 0.140408, + "compute_time": "P0DT00H00M03.638381S", + "compute_time_sec": 3.638381, "compute_times": { - "prove": 0.09134363988414407, - "total": 0.1467661359347403, - "queued": 0.234166, - "clean_up": 0.011396168963983655, - "file_setup": 0.04208241100423038, - "save_results": 0.001585459103807807 + "prove": 2.0563713180017658, + "total": 3.6447121650016925, + "queued": 0.435142, + "clean_up": 1.4359558040014235, + "file_setup": 0.029414451997581637, + "save_results": 0.0022407860014936887, + "export_calldata": 0.10466101899874047, + "generate_witness_c": 0.015545509999356 }, - "file_size": 532, + "file_size": 1345, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:20.927Z", + "proof_id": "bfdae09a-dab8-4925-983a-cb36fe9e1968", + "circuit_name": "circom-multiplier2", + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:35.111Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141387S", - "compute_time_sec": 0.141387, + "compute_time": "P0DT00H00M05.950247S", + "compute_time_sec": 5.950247, "compute_times": { - "prove": 0.09125522000249475, - "total": 0.14774739800486714, - "queued": 0.197743, - "clean_up": 0.012068960932083428, - "file_setup": 0.04265728604514152, - "save_results": 0.0014312650309875607 + "prove": 5.542268355002307, + "total": 5.956350837001082, + "queued": 0.455803, + "clean_up": 0.2413153500019689, + "file_setup": 0.024655373999848962, + "save_results": 0.0029602979993796907, + "export_calldata": 0.11759848699875874, + "generate_witness_c": 0.027109548998851096 }, - "file_size": 532, + "file_size": 1351, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:19.297Z", - "perform_verify": false, + "proof_id": "ca34a20e-17fa-4996-a25b-57e051f3e75e", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:05:54.268Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102332S", - "compute_time_sec": 0.102332, + "compute_time": "P0DT00H00M08.257042S", + "compute_time_sec": 8.257042, "compute_times": { - "prove": 0.07266321196220815, - "total": 0.10838873707689345, - "queued": 0.146978, - "clean_up": 0.008384920074604452, - "file_setup": 0.02525644702836871, - "save_results": 0.0017374729504808784 + "prove": 6.118464802002563, + "total": 8.263815338999848, + "queued": 1.300164, + "clean_up": 1.2629296249979234, + "file_setup": 0.03202529799818876, + "save_results": 0.002139272997737862, + "verify_check": 0.7154526120029914, + "export_calldata": 0.11000840099950437, + "generate_witness_c": 0.02232845999969868 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:17.717Z", - "perform_verify": false, + "proof_id": "a72071e5-5478-4ad9-bc50-91d5a41899bd", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:05:33.736Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111570S", - "compute_time_sec": 0.11157, + "compute_time": "P0DT00H00M06.362972S", + "compute_time_sec": 6.362972, "compute_times": { - "prove": 0.07737825997173786, - "total": 0.11877415492199361, - "queued": 1.050496, - "clean_up": 0.003718754043802619, - "file_setup": 0.03554413700476289, - "save_results": 0.001658557914197445 + "prove": 4.702792235999368, + "total": 6.368291856000724, + "queued": 0.427813, + "clean_up": 0.7771713300026022, + "file_setup": 0.04098392900050385, + "save_results": 0.0022858249976707157, + "verify_check": 0.7296507020000718, + "export_calldata": 0.10327137200147263, + "generate_witness_c": 0.011696364999806974 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:16.204Z", + "proof_id": "9996c901-990d-4579-97f2-8f554f15751a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:02:41.057Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.137641S", - "compute_time_sec": 0.137641, + "compute_time": "P0DT00H00M07.442956S", + "compute_time_sec": 7.442956, "compute_times": { - "prove": 0.0947769220219925, - "total": 0.14389025000855327, - "queued": 0.224558, - "clean_up": 0.012663225992582738, - "file_setup": 0.03437299397774041, - "save_results": 0.0016881220508366823 + "prove": 5.836867563997657, + "total": 7.448100458001136, + "queued": 0.429533, + "clean_up": 1.4180766429999494, + "file_setup": 0.02162611599851516, + "save_results": 0.0026051640015793964, + "export_calldata": 0.1440555890003452, + "generate_witness_c": 0.024428758002613904 }, - "file_size": 532, + "file_size": 1424, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:14.654Z", + "proof_id": "33b06218-90bc-4d41-88b5-750c59905bf3", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:55:14.653Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.130554S", - "compute_time_sec": 0.130554, + "compute_time": "P0DT00H00M06.661497S", + "compute_time_sec": 6.661497, "compute_times": { - "prove": 0.07754861598368734, - "total": 0.1364057119935751, - "queued": 0.181242, - "clean_up": 0.01912771293427795, - "file_setup": 0.03766816493589431, - "save_results": 0.0017138230614364147 + "prove": 6.102268026999809, + "total": 6.6664216089993715, + "queued": 0.565714, + "clean_up": 0.4257688830002735, + "file_setup": 0.017482515999290626, + "save_results": 0.0023082420011633076, + "export_calldata": 0.10708153700034018, + "generate_witness_c": 0.011075884998717811 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:13.059Z", + "proof_id": "3a2c08aa-8eab-4520-8ca6-c3c3d0a83be2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:50:30.630Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105571S", - "compute_time_sec": 0.105571, + "compute_time": "P0DT00H00M03.081448S", + "compute_time_sec": 3.081448, "compute_times": { - "prove": 0.07499144691973925, - "total": 0.11162168602459133, - "queued": 0.211993, - "clean_up": 0.004386739106848836, - "file_setup": 0.030089835869148374, - "save_results": 0.0017889870796352625 + "prove": 2.9426032099981967, + "total": 3.088212900001963, + "queued": 0.420681, + "clean_up": 0.004887817001872463, + "file_setup": 0.02144401899931836, + "save_results": 0.0024966839991975576, + "export_calldata": 0.10602649100110284, + "generate_witness_c": 0.010342882000259124 }, - "file_size": 532, + "file_size": 1421, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:11.558Z", + "proof_id": "bceefee1-b2fb-499e-85e7-faadbacd3530", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:47:57.110Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104533S", - "compute_time_sec": 0.104533, + "compute_time": "P0DT00H00M06.079750S", + "compute_time_sec": 6.07975, "compute_times": { - "prove": 0.07792208204045892, - "total": 0.11210504802875221, - "queued": 0.217616, - "clean_up": 0.007965726079419255, - "file_setup": 0.024172692908905447, - "save_results": 0.0016238619573414326 + "prove": 5.86737551600163, + "total": 6.154982070998813, + "queued": 0.429452, + "clean_up": 0.05597285499970894, + "file_setup": 0.09039897099864902, + "save_results": 0.002586843998869881, + "export_calldata": 0.10872890400059987, + "generate_witness_c": 0.02942450800037477 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:10.032Z", + "proof_id": "43e7d4c5-e79e-4cde-8216-16da4f7affd2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:43:03.195Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.120359S", - "compute_time_sec": 0.120359, + "compute_time": "P0DT00H00M07.389227S", + "compute_time_sec": 7.389227, "compute_times": { - "prove": 0.07663809997029603, - "total": 0.12461252498906106, - "queued": 0.140378, - "clean_up": 0.02126628893893212, - "file_setup": 0.02467076701577753, - "save_results": 0.0017215840052813292 + "prove": 6.096696715001599, + "total": 7.464751903000433, + "queued": 0.511846, + "clean_up": 1.1190660020001815, + "file_setup": 0.11400084699926083, + "save_results": 0.002097641001455486, + "export_calldata": 0.1070670169974619, + "generate_witness_c": 0.025039165000634966 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:08.462Z", + "proof_id": "62da79ad-66f8-48b2-aee6-00576b9ef803", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:42:16.730Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111685S", - "compute_time_sec": 0.111685, + "compute_time": "P0DT00H00M04.470973S", + "compute_time_sec": 4.470973, "compute_times": { - "prove": 0.08040205901488662, - "total": 0.11877126502804458, - "queued": 0.199786, - "clean_up": 0.0037285531871020794, - "file_setup": 0.0324579190928489, - "save_results": 0.0017784868832677603 + "prove": 4.176840074000211, + "total": 4.543050677002611, + "queued": 0.442897, + "clean_up": 0.13250841900298838, + "file_setup": 0.08925071300109266, + "save_results": 0.0035124769965477753, + "export_calldata": 0.10352052000234835, + "generate_witness_c": 0.03679126799761434 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:06.935Z", + "proof_id": "92dafcbd-cf27-417d-9327-f7b96ba3b622", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:20:49.783Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104458S", - "compute_time_sec": 0.104458, + "compute_time": "P0DT00H00M03.433125S", + "compute_time_sec": 3.433125, "compute_times": { - "prove": 0.07790789101272821, - "total": 0.11097153997980058, - "queued": 0.207337, - "clean_up": 0.007473509991541505, - "file_setup": 0.023695859010331333, - "save_results": 0.0015444039599969983 + "prove": 2.5336668719537556, + "total": 3.4394880742765963, + "queued": 0.489776, + "clean_up": 0.7611926682293415, + "file_setup": 0.026595874689519405, + "save_results": 0.002055990044027567, + "export_calldata": 0.10428563365712762, + "generate_witness_c": 0.011344298254698515 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:05.334Z", + "proof_id": "0dbdebd4-cb75-4d8e-a42b-70325cda5352", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:20:14.514Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174494S", - "compute_time_sec": 0.174494, + "compute_time": "P0DT00H00M03.528936S", + "compute_time_sec": 3.528936, "compute_times": { - "prove": 0.13656924897804856, - "total": 0.1803733000997454, - "queued": 0.159095, - "clean_up": 0.00582932005636394, - "file_setup": 0.035943722003139555, - "save_results": 0.0016814139671623707 + "prove": 3.110340188955888, + "total": 3.5351677269209176, + "queued": 0.419368, + "clean_up": 0.268796571996063, + "file_setup": 0.023094948148354888, + "save_results": 0.0035148910246789455, + "export_calldata": 0.11105250404216349, + "generate_witness_c": 0.017875555902719498 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:03.737Z", + "proof_id": "3ad09ef0-94cd-426c-9c4a-1b89b70db8bf", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:20:06.963Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094572S", - "compute_time_sec": 0.094572, + "compute_time": "P0DT00H00M03.694977S", + "compute_time_sec": 3.694977, "compute_times": { - "prove": 0.07406232389621437, - "total": 0.10051628504879773, - "queued": 0.192337, - "clean_up": 0.00337238609790802, - "file_setup": 0.020903730997815728, - "save_results": 0.0018227370455861092 + "prove": 2.1533293740358204, + "total": 3.699435847112909, + "queued": 0.422202, + "clean_up": 1.4061321169137955, + "file_setup": 0.01737229502759874, + "save_results": 0.0022125281393527985, + "export_calldata": 0.10844748793169856, + "generate_witness_c": 0.011587816989049315 }, - "file_size": 532, + "file_size": 1424, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:02.220Z", + "proof_id": "5e53039b-53bb-4341-9f40-66ce2cfdaf8a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:19:26.279Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111599S", - "compute_time_sec": 0.111599, + "compute_time": "P0DT00H00M07.017894S", + "compute_time_sec": 7.017894, "compute_times": { - "prove": 0.08133828500285745, - "total": 0.11800080502871424, - "queued": 0.22429, - "clean_up": 0.004713690024800599, - "file_setup": 0.029832501895725727, - "save_results": 0.001725762034766376 + "prove": 6.257673634216189, + "total": 7.024433021899313, + "queued": 0.481265, + "clean_up": 0.5901032220572233, + "file_setup": 0.04931790102273226, + "save_results": 0.0018759206868708134, + "export_calldata": 0.11300898808985949, + "generate_witness_c": 0.01208030991256237 }, - "file_size": 532, + "file_size": 1421, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:00.620Z", + "proof_id": "97802862-57ba-4ac2-86fc-1bd7a769868d", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:18:50.915Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114347S", - "compute_time_sec": 0.114347, + "compute_time": "P0DT00H00M07.471731S", + "compute_time_sec": 7.471731, "compute_times": { - "prove": 0.0749998859828338, - "total": 0.11923162802122533, - "queued": 0.187559, - "clean_up": 0.00959215103648603, - "file_setup": 0.032431255909614265, - "save_results": 0.0015854650409892201 + "prove": 5.5631270671729, + "total": 7.477051115129143, + "queued": 0.423981, + "clean_up": 1.7722250861115754, + "file_setup": 0.01894038007594645, + "save_results": 0.0025429960805922747, + "export_calldata": 0.10855428781360388, + "generate_witness_c": 0.011164190946146846 }, - "file_size": 532, + "file_size": 1418, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:59.069Z", + "proof_id": "e9ef60c8-8edf-43b7-920b-013f9c1ae340", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:16:21.616Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.100689S", - "compute_time_sec": 0.100689, + "compute_time": "P0DT00H00M06.389568S", + "compute_time_sec": 6.389568, "compute_times": { - "prove": 0.07633324712514877, - "total": 0.10863703698851168, - "queued": 0.172422, - "clean_up": 0.0039177220314741135, - "file_setup": 0.026381932897493243, - "save_results": 0.0016446078661829233 + "prove": 6.163996509974822, + "total": 6.394594549899921, + "queued": 0.723067, + "clean_up": 0.09152333298698068, + "file_setup": 0.01897246716544032, + "save_results": 0.001845130929723382, + "export_calldata": 0.10672607109881938, + "generate_witness_c": 0.011156109860166907 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:57.502Z", - "perform_verify": false, + "proof_id": "c91fc9d9-2377-489e-b08b-00746d7349a5", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:15:57.683Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141413S", - "compute_time_sec": 0.141413, + "compute_time": "P0DT00H00M07.686728S", + "compute_time_sec": 7.686728, "compute_times": { - "prove": 0.07754256599582732, - "total": 0.1476239999756217, - "queued": 0.170377, - "clean_up": 0.01235142897348851, - "file_setup": 0.05578526598401368, - "save_results": 0.0016236520605161786 + "prove": 5.851301555056125, + "total": 7.692835888359696, + "queued": 0.476854, + "clean_up": 0.9100839020684361, + "file_setup": 0.04193206364288926, + "save_results": 0.00230186665430665, + "verify_check": 0.755525354295969, + "export_calldata": 0.10952348494902253, + "generate_witness_c": 0.021680005360394716 }, - "file_size": 532, + "file_size": 1421, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:55.884Z", - "perform_verify": false, + "proof_id": "e9843a60-d317-461a-9cd4-42fee37b8061", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:13:58.884Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110891S", - "compute_time_sec": 0.110891, + "compute_time": "P0DT00H00M03.367759S", + "compute_time_sec": 3.367759, "compute_times": { - "prove": 0.07763317495118827, - "total": 0.11661336896941066, - "queued": 0.143468, - "clean_up": 0.0035630339989438653, - "file_setup": 0.0330983359599486, - "save_results": 0.0019896290032193065 + "prove": 2.230404970003292, + "total": 3.3720264660660177, + "queued": 0.431842, + "clean_up": 0.10493400786072016, + "file_setup": 0.0387162861879915, + "save_results": 0.002680066041648388, + "verify_check": 0.8437124330084771, + "export_calldata": 0.11436670809052885, + "generate_witness_c": 0.036693086847662926 }, - "file_size": 532, + "file_size": 1420, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:54.264Z", - "perform_verify": false, + "proof_id": "903672bf-1424-4074-879f-dc3d8bcf7b09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:13:15.498Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099387S", - "compute_time_sec": 0.099387, + "compute_time": "P0DT00H00M02.740057S", + "compute_time_sec": 2.740057, "compute_times": { - "prove": 0.07505850703455508, - "total": 0.10617876495234668, - "queued": 0.194099, - "clean_up": 0.0034724250435829163, - "file_setup": 0.025419748853892088, - "save_results": 0.001774586969986558 + "prove": 1.747901757946238, + "total": 2.7451698589138687, + "queued": 0.562105, + "clean_up": 0.004073107847943902, + "file_setup": 0.023931312141939998, + "save_results": 0.0021747678983956575, + "verify_check": 0.8415581181179732, + "export_calldata": 0.10904999403283, + "generate_witness_c": 0.016110152937471867 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:52.472Z", + "proof_id": "1bd36420-2d17-4820-b4c0-92bf65f5ac09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T17:58:33.204Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.127179S", - "compute_time_sec": 0.127179, + "compute_time": "P0DT00H00M03.362596S", + "compute_time_sec": 3.362596, "compute_times": { - "prove": 0.08727552101481706, - "total": 0.13350528001319617, - "queued": 0.199888, - "clean_up": 0.006217173999175429, - "file_setup": 0.038007476017810404, - "save_results": 0.0016796219861134887 + "prove": 3.2148704221472144, + "total": 3.3680821671150625, + "queued": 0.497672, + "clean_up": 0.00455889105796814, + "file_setup": 0.026814193930476904, + "save_results": 0.0023224949836730957, + "export_calldata": 0.10352779598906636, + "generate_witness_c": 0.015558663755655289 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:50.941Z", + "proof_id": "f6954f69-c080-4914-8ab1-a172dbf5e08a", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:57:15.133Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122591S", - "compute_time_sec": 0.122591, + "compute_time": "P0DT00H00M08.914962S", + "compute_time_sec": 8.914962, "compute_times": { - "prove": 0.08476738398894668, - "total": 0.1283225070219487, - "queued": 0.166336, - "clean_up": 0.004483919939957559, - "file_setup": 0.03699059609789401, - "save_results": 0.0017628020141273737 + "total": 8.922231239033863, + "queued": 5.602238, + "clean_up": 2.959817972034216, + "file_setup": 5.245855151908472, + "create_proof": 0.7142050580587238, + "save_results": 0.001862589968368411 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:49.312Z", + "proof_id": "d13035a3-05d0-42d7-8422-6347f69ecd53", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:52.106Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141097S", - "compute_time_sec": 0.141097, + "compute_time": "P0DT00H01M26.708941S", + "compute_time_sec": 86.708941, "compute_times": { - "prove": 0.0733918990008533, - "total": 0.14723626291379333, - "queued": 0.218888, - "clean_up": 0.023661232087761164, - "file_setup": 0.04160579387098551, - "save_results": 0.008111441973596811 + "total": 86.71415681904182, + "queued": 0.405661, + "clean_up": 84.75011333706789, + "file_setup": 1.3262775791808963, + "create_proof": 0.6342818099074066, + "save_results": 0.0029313149861991405 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:47.661Z", + "proof_id": "fd61e981-bb5c-41e3-9428-705839e2abc8", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:06.075Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105830S", - "compute_time_sec": 0.10583, + "compute_time": "P0DT00H01M26.510069S", + "compute_time_sec": 86.510069, "compute_times": { - "prove": 0.07938949600793421, - "total": 0.11207641800865531, - "queued": 0.206942, - "clean_up": 0.00690544699318707, - "file_setup": 0.02367080794647336, - "save_results": 0.001770041068084538 + "total": 86.51598379341885, + "queued": 0.486451, + "clean_up": 85.12480085203424, + "file_setup": 0.762740237172693, + "create_proof": 0.6256867139600217, + "save_results": 0.002274115104228258 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:46.099Z", + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "circuit_name": "circom-multiplier2", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_type": "circom", + "date_created": "2024-03-12T00:30:14.362Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164153S", - "compute_time_sec": 0.164153, + "compute_time": "P0DT00H00M00.354832S", + "compute_time_sec": 0.354832, "compute_times": { - "prove": 0.10050884890370071, - "total": 0.16989507200196385, - "queued": 0.137523, - "clean_up": 0.0296879590023309, - "file_setup": 0.033167905057780445, - "save_results": 0.006188624072819948 + "prove": 0.29524299991317093, + "total": 0.3594474990386516, + "queued": 0.452341, + "clean_up": 0.010387225076556206, + "file_setup": 0.0286204491276294, + "save_results": 0.0014043520204722881, + "generate_witness_c": 0.023333966033533216 }, - "file_size": 532, + "file_size": 714, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:44.552Z", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "circuit_name": "circom-multiplier2", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_type": "circom", + "date_created": "2024-03-12T00:30:13.294Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129635S", - "compute_time_sec": 0.129635, + "compute_time": "P0DT00H00M01.550727S", + "compute_time_sec": 1.550727, "compute_times": { - "prove": 0.07830019295215607, - "total": 0.13494652090594172, - "queued": 0.221517, - "clean_up": 0.018889005994424224, - "file_setup": 0.035788336070254445, - "save_results": 0.001614188076928258 + "prove": 1.4871477987617254, + "total": 1.5559976021759212, + "queued": 0.41289, + "clean_up": 0.007122974842786789, + "file_setup": 0.03450894495472312, + "save_results": 0.002017392311245203, + "generate_witness_c": 0.024780604988336563 }, - "file_size": 532, + "file_size": 711, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:42.989Z", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_type": "circom", + "date_created": "2024-03-12T00:29:28.396Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109912S", - "compute_time_sec": 0.109912, + "compute_time": "P0DT00H00M01.462342S", + "compute_time_sec": 1.462342, "compute_times": { - "prove": 0.08981344511266798, - "total": 0.11624708399176598, - "queued": 0.223804, - "clean_up": 0.003414363949559629, - "file_setup": 0.021206943900324404, - "save_results": 0.0014059050008654594 + "prove": 1.3968474080320448, + "total": 1.4673558110371232, + "queued": 0.649073, + "clean_up": 0.012919645989313722, + "file_setup": 0.027661754051223397, + "save_results": 0.002378439996391535, + "generate_witness_c": 0.027080354979261756 }, - "file_size": 532, + "file_size": 711, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:41.451Z", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "circuit_name": "circom-multiplier2", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_type": "circom", + "date_created": "2024-03-12T00:29:12.038Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115519S", - "compute_time_sec": 0.115519, + "compute_time": "P0DT00H00M00.378782S", + "compute_time_sec": 0.378782, "compute_times": { - "prove": 0.07633757498115301, - "total": 0.1204413790255785, - "queued": 0.742162, - "clean_up": 0.016363205038942397, - "file_setup": 0.025892338017001748, - "save_results": 0.0014968069735914469 + "prove": 0.3259259192273021, + "total": 0.3832521459553391, + "queued": 0.467242, + "clean_up": 0.004174598027020693, + "file_setup": 0.018889360828325152, + "save_results": 0.0015030219219624996, + "generate_witness_c": 0.032414837973192334 }, - "file_size": 532, + "file_size": 714, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:39.456Z", + "date_created": "2024-03-02T22:19:36.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108406S", - "compute_time_sec": 0.108406, + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, "compute_times": { - "prove": 0.0791304879821837, - "total": 0.11538788001053035, - "queued": 0.190948, - "clean_up": 0.003850993001833558, - "file_setup": 0.030011237133294344, - "save_results": 0.0017656770069152117 + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:37.847Z", + "date_created": "2024-03-02T22:19:36.062Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092359S", - "compute_time_sec": 0.092359, + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, "compute_times": { - "prove": 0.07222839200403541, - "total": 0.09727117500733584, - "queued": 0.185071, - "clean_up": 0.003502683015540242, - "file_setup": 0.019683361053466797, - "save_results": 0.0015406029997393489 + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:36.258Z", + "date_created": "2024-03-02T22:19:36.018Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112020S", - "compute_time_sec": 0.11202, + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, "compute_times": { - "prove": 0.06998628401197493, - "total": 0.11816900398116559, - "queued": 0.159585, - "clean_up": 0.00885792204644531, - "file_setup": 0.037621396011672914, - "save_results": 0.0013648279709741473 + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:34.681Z", + "date_created": "2024-03-02T22:19:35.932Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.161413S", - "compute_time_sec": 0.161413, + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, "compute_times": { - "prove": 0.12939074099995196, - "total": 0.16822218499146402, - "queued": 0.231644, - "clean_up": 0.0037453039549291134, - "file_setup": 0.03296162514016032, - "save_results": 0.0017324970103800297 + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:33.146Z", + "date_created": "2024-03-02T22:19:35.924Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104014S", - "compute_time_sec": 0.104014, + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, "compute_times": { - "prove": 0.06997583503834903, - "total": 0.11030748602934182, - "queued": 0.190603, - "clean_up": 0.013490295968949795, - "file_setup": 0.025196701986715198, - "save_results": 0.0012690169969573617 - }, - "file_size": 532, - "proof_input": null, + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 + }, + "file_size": 532, + "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:31.611Z", + "date_created": "2024-03-02T22:19:35.909Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095778S", - "compute_time_sec": 0.095778, + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, "compute_times": { - "prove": 0.07503506389912218, - "total": 0.10164016194175929, - "queued": 0.139381, - "clean_up": 0.0031234719790518284, - "file_setup": 0.021389488014392555, - "save_results": 0.001648124074563384 + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:30.068Z", + "date_created": "2024-03-02T22:19:35.810Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117298S", - "compute_time_sec": 0.117298, + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, "compute_times": { - "prove": 0.08094484405592084, - "total": 0.1229423270560801, - "queued": 0.187289, - "clean_up": 0.0036458540707826614, - "file_setup": 0.03630347200669348, - "save_results": 0.0017006490379571915 + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:28.546Z", + "date_created": "2024-03-02T22:19:35.800Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117620S", - "compute_time_sec": 0.11762, + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, "compute_times": { - "prove": 0.08068329095840454, - "total": 0.12468839401844889, - "queued": 0.209765, - "clean_up": 0.016898180008865893, - "file_setup": 0.024950645049102604, - "save_results": 0.001741672051139176 + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:27.002Z", + "date_created": "2024-03-02T22:19:35.792Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104327S", - "compute_time_sec": 0.104327, + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, "compute_times": { - "prove": 0.08132059802301228, - "total": 0.1113810408860445, - "queued": 0.179005, - "clean_up": 0.0032090198947116733, - "file_setup": 0.024714926024898887, - "save_results": 0.0017327630193904042 + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:25.415Z", + "date_created": "2024-03-02T22:19:35.637Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124274S", - "compute_time_sec": 0.124274, + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, "compute_times": { - "prove": 0.08284180099144578, - "total": 0.1500206938944757, - "queued": 0.246817, - "clean_up": 0.008343180874362588, - "file_setup": 0.037750212009996176, - "save_results": 0.0018301969394087791 + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:23.831Z", + "date_created": "2024-03-02T22:19:35.620Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118182S", - "compute_time_sec": 0.118182, + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, "compute_times": { - "prove": 0.08728135202545673, - "total": 0.12324785895179957, - "queued": 0.220211, - "clean_up": 0.004102245904505253, - "file_setup": 0.03006090992130339, - "save_results": 0.0014706840738654137 + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:22.258Z", + "date_created": "2024-03-02T22:19:35.593Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.090207S", - "compute_time_sec": 0.090207, + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, "compute_times": { - "prove": 0.06559745199047029, - "total": 0.0960762290051207, - "queued": 0.164689, - "clean_up": 0.0039045800222083926, - "file_setup": 0.024623307050205767, - "save_results": 0.0015745849814265966 + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:20.735Z", + "date_created": "2024-03-02T22:19:35.516Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108537S", - "compute_time_sec": 0.108537, + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, "compute_times": { - "prove": 0.08191155781969428, - "total": 0.11576922796666622, - "queued": 0.172262, - "clean_up": 0.0039061829447746277, - "file_setup": 0.027977181132882833, - "save_results": 0.0015976580325514078 + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:19.166Z", + "date_created": "2024-03-02T22:19:35.491Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117779S", - "compute_time_sec": 0.117779, + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, "compute_times": { - "prove": 0.08095375797711313, - "total": 0.12441346701234579, - "queued": 0.148608, - "clean_up": 0.01458131498657167, - "file_setup": 0.027128741960041225, - "save_results": 0.0013865360524505377 + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:17.494Z", + "date_created": "2024-03-02T22:19:35.478Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106302S", - "compute_time_sec": 0.106302, + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, "compute_times": { - "prove": 0.07591444090940058, - "total": 0.11228657700121403, - "queued": 0.146001, - "clean_up": 0.003584724967367947, - "file_setup": 0.03080855100415647, - "save_results": 0.0016646140720695257 + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:15.887Z", + "date_created": "2024-03-02T22:19:35.414Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106448S", - "compute_time_sec": 0.106448, + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, "compute_times": { - "prove": 0.07768534799106419, - "total": 0.11450353683903813, - "queued": 0.211473, - "clean_up": 0.0034573860466480255, - "file_setup": 0.031260548159480095, - "save_results": 0.0016783778555691242 + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:14.188Z", + "date_created": "2024-03-02T22:19:35.362Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102464S", - "compute_time_sec": 0.102464, + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, "compute_times": { - "prove": 0.0763863769825548, - "total": 0.10999432997778058, - "queued": 0.174275, - "clean_up": 0.004134346963837743, - "file_setup": 0.02737189899198711, - "save_results": 0.0017699809977784753 + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:12.610Z", + "date_created": "2024-03-02T22:19:35.356Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113569S", - "compute_time_sec": 0.113569, - "compute_times": { - "prove": 0.07715794199611992, - "total": 0.11932651698589325, - "queued": 0.146457, - "clean_up": 0.0038819999899715185, - "file_setup": 0.036451552994549274, - "save_results": 0.001485317014157772 + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, + "compute_times": { + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:11.068Z", + "date_created": "2024-03-02T22:19:35.294Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106394S", - "compute_time_sec": 0.106394, + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, "compute_times": { - "prove": 0.0750561070162803, - "total": 0.11352195288054645, - "queued": 0.24047, - "clean_up": 0.003913701977580786, - "file_setup": 0.03255474800243974, - "save_results": 0.0015891690272837877 + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:09.525Z", + "date_created": "2024-03-02T22:19:35.184Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109649S", - "compute_time_sec": 0.109649, + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, "compute_times": { - "prove": 0.08671194792259485, - "total": 0.11610554496292025, - "queued": 0.204141, - "clean_up": 0.003892548964358866, - "file_setup": 0.02370181807782501, - "save_results": 0.0014596240362152457 + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:07.842Z", + "date_created": "2024-03-02T22:19:35.144Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098328S", - "compute_time_sec": 0.098328, + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, "compute_times": { - "prove": 0.07331796106882393, - "total": 0.10486690199468285, - "queued": 0.18668, - "clean_up": 0.003999138018116355, - "file_setup": 0.02532154694199562, - "save_results": 0.0018700809450820088 + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:06.256Z", + "date_created": "2024-03-02T22:19:35.120Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093768S", - "compute_time_sec": 0.093768, + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, "compute_times": { - "prove": 0.07298256200738251, - "total": 0.09930887399241328, - "queued": 0.193559, - "clean_up": 0.003266245825216174, - "file_setup": 0.02109808987006545, - "save_results": 0.0015898591373115778 + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:04.726Z", + "date_created": "2024-03-02T22:19:35.062Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114898S", - "compute_time_sec": 0.114898, + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, "compute_times": { - "prove": 0.08792952506337315, - "total": 0.12101772194728255, - "queued": 0.198222, - "clean_up": 0.003449682961218059, - "file_setup": 0.0276323159923777, - "save_results": 0.001681591966189444 + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:03.182Z", + "date_created": "2024-03-02T22:19:35.027Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106309S", - "compute_time_sec": 0.106309, + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, "compute_times": { - "prove": 0.08149053400848061, - "total": 0.11204789008479565, - "queued": 0.144459, - "clean_up": 0.005163350026123226, - "file_setup": 0.023657753015868366, - "save_results": 0.0014256179565563798 + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:01.643Z", + "date_created": "2024-03-02T22:19:35.006Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103945S", - "compute_time_sec": 0.103945, + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, "compute_times": { - "prove": 0.07686708308756351, - "total": 0.11076140310615301, - "queued": 0.215168, - "clean_up": 0.0034544861409813166, - "file_setup": 0.028191099874675274, - "save_results": 0.001841096905991435 + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:59.991Z", + "date_created": "2024-03-02T22:19:34.963Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124189S", - "compute_time_sec": 0.124189, + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, "compute_times": { - "prove": 0.07686379295773804, - "total": 0.12877459998708218, - "queued": 0.184586, - "clean_up": 0.00445067195687443, - "file_setup": 0.04572292300872505, - "save_results": 0.001407155068591237 + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:58.419Z", + "date_created": "2024-03-02T22:19:34.909Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115030S", - "compute_time_sec": 0.11503, + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, "compute_times": { - "prove": 0.08519456698559225, - "total": 0.12087315297685564, - "queued": 0.141676, - "clean_up": 0.004536350024864078, - "file_setup": 0.02909989806357771, - "save_results": 0.0016625439748167992 + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:56.855Z", + "date_created": "2024-03-02T22:19:34.896Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116590S", - "compute_time_sec": 0.11659, + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, "compute_times": { - "prove": 0.07413527299650013, - "total": 0.12391416006721556, - "queued": 0.170496, - "clean_up": 0.008216062095016241, - "file_setup": 0.03923204098828137, - "save_results": 0.0018532369285821915 + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:55.300Z", + "date_created": "2024-03-02T22:19:34.873Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.169733S", - "compute_time_sec": 0.169733, + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, "compute_times": { - "prove": 0.13065553095657378, - "total": 0.17512868694029748, - "queued": 0.20835, - "clean_up": 0.010724585969001055, - "file_setup": 0.031707562040537596, - "save_results": 0.0017158209811896086 + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:53.639Z", + "date_created": "2024-03-02T22:19:34.817Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106419S", - "compute_time_sec": 0.106419, + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, "compute_times": { - "prove": 0.07485338707920164, - "total": 0.11183754401281476, - "queued": 0.190518, - "clean_up": 0.006780734984204173, - "file_setup": 0.02835355990100652, - "save_results": 0.0015155170112848282 + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.345Z", + "date_created": "2024-03-02T22:19:34.806Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095006S", - "compute_time_sec": 0.095006, + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, "compute_times": { - "prove": 0.07408645702525973, - "total": 0.1002384020248428, - "queued": 1.425728, - "clean_up": 0.0037696199724450707, - "file_setup": 0.020419865963049233, - "save_results": 0.0015785649884492159 + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.240Z", + "date_created": "2024-03-02T22:19:34.774Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122299S", - "compute_time_sec": 0.122299, + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, "compute_times": { - "prove": 0.07692208106163889, - "total": 0.1297405599616468, - "queued": 0.908851, - "clean_up": 0.004496873007155955, - "file_setup": 0.04598465096205473, - "save_results": 0.002022817963734269 + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", + "date_created": "2024-03-02T22:19:34.713Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097774S", - "compute_time_sec": 0.097774, + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, "compute_times": { - "prove": 0.07189441099762917, - "total": 0.10323353402782232, - "queued": 0.808925, - "clean_up": 0.008474385016597807, - "file_setup": 0.02089866902679205, - "save_results": 0.0015711949672549963 + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", + "date_created": "2024-03-02T22:19:34.692Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118593S", - "compute_time_sec": 0.118593, + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, "compute_times": { - "prove": 0.08002680214121938, - "total": 0.12483585509471595, - "queued": 1.709023, - "clean_up": 0.00412439089268446, - "file_setup": 0.03829952888190746, - "save_results": 0.00203027599491179 + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.112Z", + "date_created": "2024-03-02T22:19:34.644Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094018S", - "compute_time_sec": 0.094018, + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, "compute_times": { - "prove": 0.07305821299087256, - "total": 0.09998789592646062, - "queued": 0.155203, - "clean_up": 0.0034407159546390176, - "file_setup": 0.021631687064655125, - "save_results": 0.001554804970510304 + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:39.613Z", + "date_created": "2024-03-02T22:19:34.593Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140531S", - "compute_time_sec": 0.140531, + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, "compute_times": { - "prove": 0.09558549302164465, - "total": 0.146603410015814, - "queued": 0.185159, - "clean_up": 0.008305710973218083, - "file_setup": 0.040469719911925495, - "save_results": 0.0019295590464025736 + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:38.083Z", + "date_created": "2024-03-02T22:19:34.575Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105803S", - "compute_time_sec": 0.105803, + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, "compute_times": { - "prove": 0.0777802390512079, - "total": 0.11145833018235862, - "queued": 0.19316, - "clean_up": 0.0037183440290391445, - "file_setup": 0.02760996390134096, - "save_results": 0.0019434860441833735 + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:36.595Z", + "date_created": "2024-03-02T22:19:34.531Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098145S", - "compute_time_sec": 0.098145, + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, "compute_times": { - "prove": 0.0734365259995684, - "total": 0.10388228402007371, - "queued": 0.160378, - "clean_up": 0.004396509961225092, - "file_setup": 0.024077828973531723, - "save_results": 0.001595085021108389 + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:35.046Z", + "date_created": "2024-03-02T22:19:34.492Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102485S", - "compute_time_sec": 0.102485, + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, "compute_times": { - "prove": 0.07241792895365506, - "total": 0.1082481580087915, - "queued": 0.195278, - "clean_up": 0.0035996510414406657, - "file_setup": 0.03052784502506256, - "save_results": 0.00135330599732697 + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:33.547Z", + "date_created": "2024-03-02T22:19:34.474Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113940S", - "compute_time_sec": 0.11394, + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, "compute_times": { - "prove": 0.08348662802018225, - "total": 0.12036114698275924, - "queued": 0.231884, - "clean_up": 0.00535669201053679, - "file_setup": 0.029328602133318782, - "save_results": 0.001801566919311881 + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:40.710Z", + "date_created": "2024-03-02T22:19:34.387Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108535S", - "compute_time_sec": 0.108535, + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, "compute_times": { - "prove": 0.07331131701357663, - "total": 0.11277111305389553, - "queued": 0.17423, - "clean_up": 0.005777769023552537, - "file_setup": 0.031883755000308156, - "save_results": 0.0014830770669505 + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:39.000Z", + "date_created": "2024-03-02T22:19:34.386Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112695S", - "compute_time_sec": 0.112695, + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, "compute_times": { - "prove": 0.07820799702312797, - "total": 0.1174575500190258, - "queued": 0.223544, - "clean_up": 0.004070866969414055, - "file_setup": 0.032682382967323065, - "save_results": 0.0021686870604753494 + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:37.260Z", + "date_created": "2024-03-02T22:19:34.380Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.107491S", - "compute_time_sec": 0.107491, + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, "compute_times": { - "prove": 0.07868116302415729, - "total": 0.11423451104201376, - "queued": 0.210564, - "clean_up": 0.007490226998925209, - "file_setup": 0.025845387019217014, - "save_results": 0.0018579070456326008 - }, - "file_size": 532, - "proof_input": null, + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 + }, + "file_size": 532, + "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:35.691Z", + "date_created": "2024-03-02T22:19:34.286Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104645S", - "compute_time_sec": 0.104645, + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, "compute_times": { - "prove": 0.07283521501813084, - "total": 0.11231476906687021, - "queued": 0.168258, - "clean_up": 0.0050119999796152115, - "file_setup": 0.032517564948648214, - "save_results": 0.0015029560308903456 + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:34.182Z", + "date_created": "2024-03-02T22:19:34.248Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.101546S", - "compute_time_sec": 0.101546, + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, "compute_times": { - "prove": 0.07385058398358524, - "total": 0.10622004000470042, - "queued": 0.214401, - "clean_up": 0.003409723984077573, - "file_setup": 0.02646243793424219, - "save_results": 0.0021518670255318284 + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:32.679Z", + "date_created": "2024-03-02T22:19:34.228Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122334S", - "compute_time_sec": 0.122334, + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, "compute_times": { - "prove": 0.0876556090079248, - "total": 0.1313655290286988, - "queued": 0.230724, - "clean_up": 0.005932067055255175, - "file_setup": 0.03352665202692151, - "save_results": 0.0016483389772474766 + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:31.191Z", + "date_created": "2024-03-02T22:19:34.128Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093953S", - "compute_time_sec": 0.093953, + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, "compute_times": { - "prove": 0.07118937093764544, - "total": 0.09999781497754157, - "queued": 0.582409, - "clean_up": 0.0037945699878036976, - "file_setup": 0.023232951993122697, - "save_results": 0.0014598669949918985 + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:29.642Z", + "date_created": "2024-03-02T22:19:34.091Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.183122S", - "compute_time_sec": 0.183122, + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, "compute_times": { - "prove": 0.1029208250110969, - "total": 0.18900623894296587, - "queued": 0.193648, - "clean_up": 0.02979127294383943, - "file_setup": 0.051961387041956186, - "save_results": 0.0037548099644482136 + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:27.981Z", + "date_created": "2024-03-02T22:19:34.082Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.202523S", - "compute_time_sec": 0.202523, + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, "compute_times": { - "prove": 0.11456152913160622, - "total": 0.20906984992325306, - "queued": 0.208536, - "clean_up": 0.03386854100972414, - "file_setup": 0.05412821704521775, - "save_results": 0.006115625845268369 + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:26.328Z", + "date_created": "2024-03-02T22:19:33.998Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135499S", - "compute_time_sec": 0.135499, + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, "compute_times": { - "prove": 0.07793003402184695, - "total": 0.14023755700327456, - "queued": 0.175288, - "clean_up": 0.0037696800427511334, - "file_setup": 0.0566352519672364, - "save_results": 0.0015117370057851076 + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:54.687Z", + "date_created": "2024-03-02T22:19:33.976Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135335S", - "compute_time_sec": 0.135335, + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, "compute_times": { - "prove": 0.07691952004097402, - "total": 0.14003189594950527, - "queued": 0.198802, - "clean_up": 0.00467289995867759, - "file_setup": 0.05562937702052295, - "save_results": 0.002484833006747067 + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:52.059Z", + "date_created": "2024-03-02T22:19:33.945Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138890S", - "compute_time_sec": 0.13889, + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, "compute_times": { - "prove": 0.07692233612760901, - "total": 0.14497115998528898, - "queued": 0.215231, - "clean_up": 0.021985383005812764, - "file_setup": 0.044280862901359797, - "save_results": 0.0014082398265600204 + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:49.557Z", + "date_created": "2024-03-02T22:19:33.870Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106026S", - "compute_time_sec": 0.106026, + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, "compute_times": { - "prove": 0.07399564690422267, - "total": 0.11187266802880913, - "queued": 0.162814, - "clean_up": 0.0033016889356076717, - "file_setup": 0.03273502003867179, - "save_results": 0.0014213580871000886 + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:47.111Z", + "date_created": "2024-03-02T22:19:33.855Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122971S", - "compute_time_sec": 0.122971, + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, "compute_times": { - "prove": 0.07989700802136213, - "total": 0.12778416695073247, - "queued": 0.231593, - "clean_up": 0.004338543978519738, - "file_setup": 0.04149695695377886, - "save_results": 0.001680911984294653 + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:44.587Z", + "date_created": "2024-03-02T22:19:33.839Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128014S", - "compute_time_sec": 0.128014, + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, "compute_times": { - "prove": 0.08263401291333139, - "total": 0.13507452490739524, - "queued": 0.233086, - "clean_up": 0.008105588844045997, - "file_setup": 0.04211885016411543, - "save_results": 0.0017826261464506388 + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:32.787Z", + "date_created": "2024-03-02T22:19:33.714Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164615S", - "compute_time_sec": 0.164615, - "compute_times": { - "prove": 0.11053177795838565, - "total": 0.17059254297055304, - "queued": 0.171935, - "clean_up": 0.004258243017829955, - "file_setup": 0.053978779003955424, - "save_results": 0.00145844800863415 + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, + "compute_times": { + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:29.506Z", + "date_created": "2024-03-02T22:19:33.706Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.289266S", - "compute_time_sec": 0.289266, + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, "compute_times": { - "prove": 0.08642632805276662, - "total": 0.29704258195124567, - "queued": 0.183331, - "clean_up": 0.15804533392656595, - "file_setup": 0.05037923192139715, - "save_results": 0.0017682620091363788 + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:26.174Z", + "date_created": "2024-03-02T22:19:33.691Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.178451S", - "compute_time_sec": 0.178451, + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, "compute_times": { - "prove": 0.12590954499319196, - "total": 0.18570560100488365, - "queued": 0.238111, - "clean_up": 0.02239793981425464, - "file_setup": 0.03476291592232883, - "save_results": 0.002222753129899502 + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:10:50.403Z", + "date_created": "2024-03-02T22:19:33.589Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150832S", - "compute_time_sec": 0.150832, + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, "compute_times": { - "prove": 0.11755112698301673, - "total": 0.2853551240405068, - "queued": 0.335902, - "clean_up": 0.007708279998041689, - "file_setup": 0.029812542023137212, - "save_results": 0.0016887020319700241 + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:47.502Z", + "date_created": "2024-03-02T22:19:33.567Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.078444S", - "compute_time_sec": 0.078444, + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, "compute_times": { - "prove": 0.05746597901452333, - "total": 0.08412136998958886, - "queued": 0.181406, - "clean_up": 0.0030666429083794355, - "file_setup": 0.021971813053824008, - "save_results": 0.0012382810236886144 + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 }, - "file_size": 451, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:39.474Z", + "date_created": "2024-03-02T22:19:33.549Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.085495S", - "compute_time_sec": 0.085495, + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, "compute_times": { - "prove": 0.05661044199950993, - "total": 0.08519881102256477, - "queued": 0.2228, - "file_setup": 0.028238292085006833 + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" + "error": null }, { - "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:04:03.037Z", + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.039789S", - "compute_time_sec": 0.039789, + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, "compute_times": { - "total": 0.04271465499186888, - "queued": 0.225284, - "file_setup": 0.01975348498672247, - "generate_witness_c": 0.022592113993596286 + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:02:47.565Z", + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.083115S", - "compute_time_sec": 0.083115, + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, "compute_times": { - "total": 0.08423641003901139, - "queued": 0.18931, - "file_setup": 0.047118005983065814, - "generate_witness_c": 0.03662721102591604 + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:02:37.757Z", + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.060050S", - "compute_time_sec": 0.06005, + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, "compute_times": { - "total": 0.12728848890401423, - "queued": 0.250848, - "file_setup": 0.09145022416487336, - "generate_witness_c": 0.03525270987302065 + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:00:37.596Z", + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.056679S", - "compute_time_sec": 0.056679, + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, "compute_times": { - "total": 0.12009319197386503, - "queued": 0.559087, - "file_setup": 0.08946515002753586, - "generate_witness_c": 0.030112746986560524 + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", - "circuit_name": "hash-checker", - "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", - "circuit_type": "circom", - "date_created": "2024-02-16T16:46:40.976Z", - "perform_verify": false, - "status": "Ready", + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.341615S", - "compute_time_sec": 5.341615, + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, "compute_times": { - "prove": 5.2774561159312725, - "total": 5.348625190556049, - "queued": 0.208614, - "clean_up": 0.005355444736778736, - "file_setup": 0.0357542559504509, - "save_results": 0.0016373288817703724, - "generate_witness_c": 0.02802356705069542 + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 }, - "file_size": 789, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_type": "circom", - "date_created": "2024-02-15T19:09:39.253Z", + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.042131S", - "compute_time_sec": 0.042131, + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, "compute_times": { - "total": 0.04482376802479848, - "queued": 0.207543, - "file_setup": 0.023827903962228447, - "generate_witness_c": 0.020594758039806038 + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" + "error": null }, { - "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_type": "circom", - "date_created": "2024-02-15T19:08:49.137Z", + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055379S", - "compute_time_sec": 0.055379, + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, "compute_times": { - "total": 0.0464545710128732, - "queued": 0.187821, - "file_setup": 0.023604326997883618, - "generate_witness_c": 0.022402279020752758 + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:53:18.626Z", + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.674886S", - "compute_time_sec": 1.674886, + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, "compute_times": { - "prove": 1.6106855850666761, - "total": 1.682134603150189, - "queued": 0.21114, - "clean_up": 0.015362400561571121, - "file_setup": 0.038011837750673294, - "save_results": 0.0016225874423980713, - "generate_witness_c": 0.016064194962382317 + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 }, - "file_size": 713, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:49:33.830Z", + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.049663S", - "compute_time_sec": 0.049663, + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, "compute_times": { - "total": 0.05284719355404377, - "queued": 0.217998, - "file_setup": 0.04036730155348778, - "generate_witness_c": 0.012098094448447227 + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:48:55.324Z", + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.052811S", - "compute_time_sec": 0.052811, + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, "compute_times": { - "total": 0.05608381051570177, - "queued": 0.226522, - "file_setup": 0.03871022444218397, - "generate_witness_c": 0.01696752943098545 + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:47:58.610Z", + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.057437S", - "compute_time_sec": 0.057437, + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, "compute_times": { - "total": 0.05853192321956158, - "queued": 0.205516, - "file_setup": 0.043163422495126724, - "generate_witness_c": 0.014894634485244751 + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:47:01.336Z", + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055829S", - "compute_time_sec": 0.055829, + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, "compute_times": { - "total": 0.05997238401323557, - "queued": 0.250181, - "file_setup": 0.04254392720758915, - "generate_witness_c": 0.01698323991149664 + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", - "circuit_name": "semaphore", - "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", - "circuit_type": "circom", - "date_created": "2024-02-15T16:45:59.082Z", + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.074886S", - "compute_time_sec": 0.074886, + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, "compute_times": { - "total": 0.07638306729495525, - "queued": 0.222935, - "file_setup": 0.05688828695565462, - "generate_witness_c": 0.019095703959465027 - }, - "file_size": null, + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 + }, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_type": "circom", - "date_created": "2024-02-12T16:08:49.852Z", + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118463S", - "compute_time_sec": 0.118463, + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, "compute_times": { - "total": 0.11371562909334898, - "queued": 0.165321, - "file_setup": 0.02585006970912218, - "generate_witness_wasm": 0.08747230330482125 + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_type": "circom", - "date_created": "2024-02-12T16:08:15.347Z", + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087104S", - "compute_time_sec": 0.087104, + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, "compute_times": { - "total": 0.08892976585775614, - "queued": 0.188521, - "file_setup": 0.02122315624728799, - "generate_witness_wasm": 0.06728191487491131 + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_type": "circom", - "date_created": "2024-02-12T16:07:32.862Z", + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.629850S", - "compute_time_sec": 0.62985, + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, "compute_times": { - "total": 0.699215236119926, - "queued": 20.443074, - "file_setup": 0.08142021484673023, - "generate_witness_wasm": 0.6153158713132143 + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", - "circuit_name": "hashchecker", - "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", - "circuit_type": "circom", - "date_created": "2024-02-11T19:51:56.269Z", + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.556787S", - "compute_time_sec": 3.556787, + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, "compute_times": { - "total": 3.282685193931684, - "queued": 31.156839, - "file_setup": 0.9440451499540359, - "generate_witness_wasm": 2.1537286299280822 + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", - "circuit_name": "hashchecker", - "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", - "circuit_type": "circom", - "date_created": "2024-02-11T19:35:59.958Z", + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.786155S", - "compute_time_sec": 5.786155, + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, "compute_times": { - "prove": 1.6357202199287713, - "total": 5.85425769793801, - "queued": 1.584852, - "clean_up": 0.9189370227977633, - "file_setup": 0.8701981450431049, - "save_results": 0.24538314412347972, - "generate_witness_wasm": 2.1234320180956274 + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 }, - "file_size": 712, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:34:56.907Z", + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.387894S", - "compute_time_sec": 2.387894, + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, "compute_times": { - "total": 1.9064474820625037, - "queued": 1.557474, - "file_setup": 0.8709360021166503, - "generate_witness_wasm": 0.9751034409273416 + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:34:33.443Z", + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.213770S", - "compute_time_sec": 2.21377, + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, "compute_times": { - "total": 1.6578402749728411, - "queued": 1.501643, - "file_setup": 0.8060235111042857, - "generate_witness_wasm": 0.791354832937941 + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:33:12.169Z", + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.888816S", - "compute_time_sec": 5.888816, + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, "compute_times": { - "total": 5.5928051138762385, - "queued": 20.021632, - "file_setup": 0.9408337560016662, - "generate_witness_wasm": 4.466476025991142 + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", - "circuit_name": "circom-multiplier2", - "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", - "circuit_type": "circom", - "date_created": "2024-01-31T18:16:21.991Z", - "perform_verify": false, + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.895357S", - "compute_time_sec": 0.895357, + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, "compute_times": { - "prove": 0.6790756830014288, - "total": 0.968905714340508, - "queued": 0.662781, - "clean_up": 0.00029797712340950966, - "file_setup": 0.2733065038919449, - "save_results": 0.003135905135422945, - "generate_witness_c": 0.012809758074581623 + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 }, - "file_size": 712, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", - "circuit_name": "circom-multiplier2", - "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:45.826Z", + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.942551S", - "compute_time_sec": 0.942551, + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, "compute_times": { - "prove": 0.7584659070707858, - "total": 1.0125216851010919, - "queued": 13.788636, - "clean_up": 0.00025292718783020973, - "file_setup": 0.24108529277145863, - "save_results": 0.0026897299103438854, - "generate_witness_c": 0.009630681946873665 + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 }, - "file_size": 712, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", - "circuit_name": "circom-multiplier2", - "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:26.403Z", + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.306255S", - "compute_time_sec": 3.306255, + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, "compute_times": { - "prove": 2.568090456072241, - "total": 3.37676440179348, - "queued": 28.788691, - "clean_up": 0.0003418959677219391, - "file_setup": 0.241387109272182, - "save_results": 0.002813168801367283, - "generate_witness_c": 0.5637943758629262 + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 }, - "file_size": 713, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", - "circuit_name": "circom-multiplier2", - "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:18.014Z", + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.490489S", - "compute_time_sec": 5.490489, + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, "compute_times": { - "prove": 5.2387496647425, - "total": 5.556455092970282, - "queued": 30.599597, - "clean_up": 0.000279237050563097, - "file_setup": 0.23077922780066729, - "save_results": 0.006773914210498333, - "generate_witness_c": 0.07928962633013725 + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 }, - "file_size": 711, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", - "circuit_name": "sudoku", - "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", - "circuit_type": "circom", - "date_created": "2023-12-02T03:59:27.851Z", + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.854809S", - "compute_time_sec": 7.854809, + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, "compute_times": { - "prove": 4.957428568042815, - "total": 9.034430680796504, - "queued": 0.697877, - "clean_up": 0.001238434575498104, - "file_setup": 3.9956598421558738, - "save_results": 0.07156617846339941, - "generate_witness_c": 0.008326929062604904 + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 }, - "file_size": 1037, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", - "circuit_name": "sudoku", - "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", - "circuit_type": "circom", - "date_created": "2023-12-02T03:54:14.687Z", + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.475101S", - "compute_time_sec": 8.475101, + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, "compute_times": { - "prove": 5.822698147967458, - "total": 9.663341652601957, - "queued": 0.474116, - "clean_up": 0.0010337075218558311, - "file_setup": 3.76318403147161, - "save_results": 0.06816541589796543, - "generate_witness_c": 0.007991122081875801 + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 }, - "file_size": 1037, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", - "circuit_name": "sudoku", - "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", - "circuit_type": "circom", - "date_created": "2023-12-02T03:52:28.815Z", + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.662090S", - "compute_time_sec": 6.66209, + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, "compute_times": { - "prove": 5.845281148329377, - "total": 7.817341674119234, - "queued": 28.321561, - "clean_up": 0.0009510181844234467, - "file_setup": 1.8957333201542497, - "save_results": 0.06738575547933578, - "generate_witness_c": 0.007616886869072914 + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 }, - "file_size": 1037, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null - } - ], + }, + { + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, + "compute_times": { + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, + "compute_times": { + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, + "compute_times": { + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, + "compute_times": { + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, + "compute_times": { + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, + "compute_times": { + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, + "compute_times": { + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, + "compute_times": { + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, + "compute_times": { + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, + "compute_times": { + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, + "compute_times": { + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, + "compute_times": { + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, + "compute_times": { + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, + "compute_times": { + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, + "compute_times": { + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, + "compute_times": { + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, + "compute_times": { + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, + "compute_times": { + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, + "compute_times": { + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, + "compute_times": { + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, + "compute_times": { + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:14.150Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, + "compute_times": { + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:12.520Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, + "compute_times": { + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:10.959Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, + "compute_times": { + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:09.368Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, + "compute_times": { + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:07.782Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, + "compute_times": { + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:06.214Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, + "compute_times": { + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:04.623Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, + "compute_times": { + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:03.050Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, + "compute_times": { + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:01.474Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, + "compute_times": { + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:59.935Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, + "compute_times": { + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:58.407Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, + "compute_times": { + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:56.860Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, + "compute_times": { + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:55.316Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, + "compute_times": { + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:53.766Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, + "compute_times": { + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:52.213Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, + "compute_times": { + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:50.640Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, + "compute_times": { + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:49.058Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, + "compute_times": { + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:47.479Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, + "compute_times": { + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:45.920Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, + "compute_times": { + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:44.421Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, + "compute_times": { + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:42.838Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, + "compute_times": { + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:41.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, + "compute_times": { + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:39.684Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, + "compute_times": { + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:38.137Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, + "compute_times": { + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:36.609Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, + "compute_times": { + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:35.023Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, + "compute_times": { + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:33.480Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, + "compute_times": { + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:31.932Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, + "compute_times": { + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:30.405Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, + "compute_times": { + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:28.882Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, + "compute_times": { + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:27.303Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, + "compute_times": { + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:25.623Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, + "compute_times": { + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:24.063Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, + "compute_times": { + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:22.482Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, + "compute_times": { + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:20.927Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, + "compute_times": { + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:19.297Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, + "compute_times": { + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:17.717Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, + "compute_times": { + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:16.204Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, + "compute_times": { + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:14.654Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, + "compute_times": { + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:13.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, + "compute_times": { + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:11.558Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, + "compute_times": { + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:10.032Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, + "compute_times": { + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:08.462Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, + "compute_times": { + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:06.935Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, + "compute_times": { + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:05.334Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, + "compute_times": { + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:03.737Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, + "compute_times": { + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:02.220Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, + "compute_times": { + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:18:00.620Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, + "compute_times": { + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:59.069Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, + "compute_times": { + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:57.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, + "compute_times": { + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:55.884Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, + "compute_times": { + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:54.264Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, + "compute_times": { + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:52.472Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, + "compute_times": { + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:50.941Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, + "compute_times": { + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:49.312Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, + "compute_times": { + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:47.661Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, + "compute_times": { + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:46.099Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, + "compute_times": { + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:44.552Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, + "compute_times": { + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:42.989Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, + "compute_times": { + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:41.451Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, + "compute_times": { + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:39.456Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, + "compute_times": { + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:37.847Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, + "compute_times": { + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:36.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, + "compute_times": { + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:34.681Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, + "compute_times": { + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:33.146Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, + "compute_times": { + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:31.611Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, + "compute_times": { + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:30.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, + "compute_times": { + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:28.546Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, + "compute_times": { + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:27.002Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, + "compute_times": { + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:25.415Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, + "compute_times": { + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:23.831Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, + "compute_times": { + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:22.258Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, + "compute_times": { + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:20.735Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, + "compute_times": { + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:19.166Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, + "compute_times": { + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:17.494Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, + "compute_times": { + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:15.887Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, + "compute_times": { + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:14.188Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, + "compute_times": { + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:12.610Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, + "compute_times": { + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:11.068Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, + "compute_times": { + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:09.525Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, + "compute_times": { + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:07.842Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, + "compute_times": { + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:06.256Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, + "compute_times": { + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:04.726Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, + "compute_times": { + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:03.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, + "compute_times": { + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:17:01.643Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, + "compute_times": { + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:59.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, + "compute_times": { + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:58.419Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, + "compute_times": { + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:56.855Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, + "compute_times": { + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:55.300Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, + "compute_times": { + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:16:53.639Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, + "compute_times": { + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.345Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, + "compute_times": { + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.240Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, + "compute_times": { + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, + "compute_times": { + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.236Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, + "compute_times": { + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:41.112Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, + "compute_times": { + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:39.613Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, + "compute_times": { + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:38.083Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, + "compute_times": { + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:36.595Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, + "compute_times": { + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:35.046Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, + "compute_times": { + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:14:33.547Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, + "compute_times": { + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:40.710Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, + "compute_times": { + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:39.000Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, + "compute_times": { + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:37.260Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, + "compute_times": { + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:35.691Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, + "compute_times": { + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:34.182Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, + "compute_times": { + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:32.679Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, + "compute_times": { + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:31.191Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, + "compute_times": { + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:29.642Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, + "compute_times": { + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:27.981Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, + "compute_times": { + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:13:26.328Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, + "compute_times": { + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:54.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, + "compute_times": { + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:52.059Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, + "compute_times": { + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:49.557Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, + "compute_times": { + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:47.111Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, + "compute_times": { + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:44.587Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, + "compute_times": { + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:32.787Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, + "compute_times": { + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:29.506Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, + "compute_times": { + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:55:26.174Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, + "compute_times": { + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:10:50.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, + "compute_times": { + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:47.502Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, + "compute_times": { + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 + }, + "file_size": 451, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:02:39.474Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, + "compute_times": { + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" + }, + { + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, + "compute_times": { + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, + "compute_times": { + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, + "compute_times": { + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, + "compute_times": { + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, + "compute_times": { + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 + }, + "file_size": 789, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, + "compute_times": { + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" + }, + { + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, + "compute_times": { + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + }, + { + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, + "compute_times": { + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, + "compute_times": { + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, + "compute_times": { + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, + "compute_times": { + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, + "compute_times": { + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, + "compute_times": { + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + }, + { + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, + "compute_times": { + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, + "compute_times": { + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, + "compute_times": { + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, + "compute_times": { + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, + "compute_times": { + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, + "compute_times": { + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, + "compute_times": { + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", + "perform_verify": false, + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, + "compute_times": { + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 + }, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + }, + { + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, + "compute_times": { + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, + "compute_times": { + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 + }, + "file_size": 712, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, + "compute_times": { + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 + }, + "file_size": 713, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, + "compute_times": { + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 + }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, + "compute_times": { + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, + "compute_times": { + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + { + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, + "compute_times": { + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 + }, + "file_size": 1037, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "234573", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d517830634559574d36644a79544b6e0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d517830634559574d36644a79544b6e0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d517830634559574d36644a79544b6e2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279486f32596a46776c53536b68313041510d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279486f32596a46776c53536b68313041510d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279486f32596a46776c53536b68313041512d2d0d0a", + "status": 201, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172793441685a49676243715744477276544f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172793441685a49676243715744477276544f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172793441685a49676243715744477276544f2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/441c1d46-a6e4-4e73-98be-1c87e892c9bb/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "body": "", + "status": 200, + "response": { + "proof_id": "441c1d46-a6e4-4e73-98be-1c87e892c9bb", + "circuit_name": "circom-multiplier2", + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:58.370Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.948502S", + "compute_time_sec": 4.948502, + "compute_times": { + "prove": 4.804858028001036, + "total": 4.954793066997809, + "queued": 4.113693, + "clean_up": 0.005270341996947536, + "file_setup": 0.01681686499796342, + "save_results": 0.0022578030002478044, + "export_calldata": 0.10960615099975257, + "generate_witness_c": 0.015163871001277585 + }, + "file_size": 1352, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": { + "pi_a": [ + "9719746164756714403251461078048748898417532511853745627298274265763307211388", + "12524760438976850441969686535306640701689167063106448233705828441672218093764", + "1" + ], + "pi_b": [ + [ + "19464397823686107456319423853784639506670033208935916157489684692381314290365", + "16760420157632234053418297010278476735787478431580136981497509036184206188849" + ], + [ + "21371537607389460681980564582719545798910142899853353173916140483043325994690", + "18635879634062556811904079427113198177316036158018823238654630255711007281776" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "21567880776257535607058989531139923613325992061217666356632889562199294971746", + "2550317741210071340281044694842261445739577413610456669025258097830240820126", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "smart_contract_calldata": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "4165", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "605", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "605", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "605", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:36 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:36 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "605", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "605", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, "rawHeaders": [ "Content-Length", - "187148", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:38 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19089,14 +26571,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", @@ -19104,7 +26586,7 @@ "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19120,7 +26602,7 @@ "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:38 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19137,22 +26619,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", + "date_created": "2024-03-14T20:02:31.746Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19164,11 +26649,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:00 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19185,50 +26670,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d571dee9-1a2b-4549-9bfd-5f639823dd8a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.182Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150585S", - "compute_time_sec": 0.150585, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.11676173796877265, - "total": 0.15572588506620377, - "queued": 51.669893, - "clean_up": 0.009185672039166093, - "file_setup": 0.027514968067407608, - "save_results": 0.001868820982053876 - }, - "file_size": 532, - "proof_input": { - "PreImage": "297262668938251460872476410954775437897592223497" + "total": 0.00027794763445854187, + "queued": 0.485382 }, - "proof": { - "proof": "H7CYWYy5fapXQZFqhqYODOt/MnOtsN89v86s/Q+PQ6oG3lWG0iy1CSLIEhoFBX6wdQAoYdjiejspuxoTRy5lvQAcU6QNmIVumomuSb4UlNRK+kfWyCMHMjSAGK3SSQl8E3TkYs+VMPdfwQ9ukDuMb8/WFg2sqPEblIbsaROuRf4csW1sgjIC5VE2vCGvio5Xgg1wyAyoM0oN5wCFfopC4xZB78LE+AbmszSsz+RjFwRiE7pnKZ0E+fPvLbT9P3BcDIJprcSIgqD913l7RgNfcoAa4tyPxGEt5B6898oxp34J5Veq1n7uZF9Y7oy4JdlX/m2X7aMoTFPzW5jdQWQ2pgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" - }, - "public": { - "Hash": "21099541378821686330832093407308585959971016892597585818017774528142419287929" - }, - "verification_key": { - "verifying_key": "AZuKAsBYS9XUoUekCdnwUdpv66Ydjvc+THgzZ1bEjDECKWQSDajIzlLNtTC8e98dCZP+BDWR+8kLYBdFeyA7CSuDePqNEV3a2tuIJt0BPb8KanU9U27h+k0q3NWp10wpIpGYH1zUvZ1n4UNnZRkZ9QGsvqnFMCSLdbvRzWATaHQGoYj4Mb/pICxPN7hpzb1oP9G265bukuJd2J5IyosRgCISjzx8DpwO+uPTpah+/qnzBgpcsgVx6dBuP2/tyyMXBAiaJrnU0f4W4e84R9ZN4WLcAb98ZfwBV9FI0HZhIV4CvBzV8q2OgKXsymQhs9N+ssmAV7B9zz92r9BF1p0q3i54Z4to9mI9g9kdbjc7lAuKR2Td9bDdgYll5VSQ5V8gJY84yUagA++d5ZqAZkcNw980TBsJIMzTctGRH9AkReYkGFNW2h+HmzpGfz3ILeyQZEe3YhFAePv0em5iGMIt/hNPoZt3tcdqFLTjqxb2YZxEJka25BOsG9DoUIGOG/AGJ8c/ekNbrmgmABdMWduVLqiMNVHSgHbS/nitebSDTVkSuz2FFU2Pl9z0hiKQxB1x8O9KBHLJyJNjNd4q0e92QiMsRz6ZGJCZjWyRuipTAJJ91f2xcUuq7H5bSxPw5eQsCctSpzeCkfid0bExrasUYKD9IKG3KUPhLd+tJQrppq0hg70mG5hWDeb56u87wi4bCiMpjPLft0yxzxcEdLuyoCsaqQusl4faufJfaBlQnLfeICOkAVF1WFdi+DY+e34xAAAAAgnpuIbOMgN7mEntfuHbhUsvzOBPMfz+Iz2QNqvZ1EtGAYrAMDgOjShXid1AiYWe2fVauLRx66IE71umcRIgaGgjGeoJYf8qz7NuHYtuGHJ6hYf9PfmFEOUvoVuB/qUY+As3OhG2Yk6Cs6eaLSJk7VqO2Isl6q8w2420rG4EoeRSAAAAAA8JQCqWantqQEe3L6ctcwNmXSDpD/BUNh+XS5VUcVbBFU9OU6X1vMwfkRD5Xwf55xpkb5Zwk4IhhGr0jRgdtp4QUlk1INxSbo3Y+wawJOkOHPf0h4K4jTYrDVYTJslzgy8aujsa0C3SRYToyPGwJJlmQCpONjzVszK2PxRd0GIQAXDTddlQk/cPvqkCp8b1GCTTJowDZ3DWWa764NWTH+Ef5GXTg7RyjDqlzs7LwJnHYOPz/OuedGDP7MQM0fr+VhtIEuHGqFsviWa+M2Zaa1aWcQHjIr+kpQqciJaayZKMKVEcJBO92pUgIf1q684Pas0AwyiJoBQQjsfYs+DzmcI=" - }, - "error": null + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "2557", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:00 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19245,22 +26721,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", + "date_created": "2024-03-14T20:02:31.828Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19272,11 +26751,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "605", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:00 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19293,22 +26772,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", + "date_created": "2024-03-14T20:02:31.939Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19320,11 +26802,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:00 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19341,14 +26823,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", @@ -19356,7 +26838,7 @@ "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19372,7 +26854,7 @@ "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19389,22 +26871,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", + "date_created": "2024-03-14T20:02:31.746Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0003988537937402725, + "queued": 0.477716 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19416,11 +26901,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19437,22 +26922,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", + "date_created": "2024-03-14T20:02:31.762Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19464,11 +26952,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19485,22 +26973,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", + "date_created": "2024-03-14T20:02:31.828Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19512,11 +27003,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "605", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19533,14 +27024,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "Queued", @@ -19548,7 +27039,7 @@ "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19564,7 +27055,7 @@ "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19581,22 +27072,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.939Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19608,11 +27102,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19629,38 +27123,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "path": "/api/v1/circuit/f680f94f-962d-40ff-af4e-f93157ceea48/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", + "date_created": "2024-03-14T20:02:31.746Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_time": "P0DT00H00M09.345263S", + "compute_time_sec": 9.345263, + "compute_times": { + "total": 9.351605591364205, + "queued": 0.477716, + "clean_up": 0.05285029113292694, + "create_cpp": 0.045495557598769665, + "file_setup": 0.02658266667276621, + "compile_cpp": 4.7376435389742255, + "create_r1cs": 0.014407068490982056, + "save_results": 0.009819619357585907, + "get_r1cs_info": 0.0004047444090247154, + "groth16_setup": 1.5581415686756372, + "export_verification_key": 1.4666384868323803, + "download_trusted_setup_file": 0.0015744948759675026, + "solidity_contract_generation": 1.4376487005501986 + }, + "file_size": 236740, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "554", + "1054", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19677,22 +27185,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", + "date_created": "2024-03-14T20:02:31.762Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00027794763445854187, + "queued": 0.485382 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19704,11 +27215,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19725,22 +27236,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", + "date_created": "2024-03-14T20:02:31.828Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.007539481855928898, + "queued": 0.48582 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19752,11 +27266,57 @@ }, "rawHeaders": [ "Content-Length", - "554", + "605", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:41 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/circom-multiplier2:browser-create-proof-multiplier2-circuit/prove", + "body": "------WebKitFormBoundaryPTmvBMVBXPv3Jk4p\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundaryPTmvBMVBXPv3Jk4p\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryPTmvBMVBXPv3Jk4p--\r\n", + "status": 201, + "response": { + "proof_id": "ed7f305d-a4de-4bba-961b-ab2a6cfee80b", + "circuit_name": "circom-multiplier2", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:41.948Z", + "perform_verify": false, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "501", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19773,22 +27333,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0005610059015452862, + "queued": 9.288692 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19800,11 +27363,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:42 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19821,22 +27384,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", + "date_created": "2024-03-14T20:02:31.939Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0002976441755890846, + "queued": 0.474052 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19848,11 +27414,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:42 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19869,38 +27435,163 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", + "path": "/api/v1/proof/ed7f305d-a4de-4bba-961b-ab2a6cfee80b/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "proof_id": "ed7f305d-a4de-4bba-961b-ab2a6cfee80b", "circuit_name": "circom-multiplier2", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:41.948Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "517", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:42 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M09.879936S", + "compute_time_sec": 9.879936, + "compute_times": { + "total": 9.886854749172926, + "queued": 0.485382, + "clean_up": 0.037875108420848846, + "create_cpp": 0.045085612684488297, + "file_setup": 0.02763216197490692, + "compile_cpp": 4.9910760167986155, + "create_r1cs": 0.015627074986696243, + "save_results": 0.008492609485983849, + "get_r1cs_info": 0.00048466306179761887, + "groth16_setup": 1.714037835597992, + "export_verification_key": 1.673197460360825, + "download_trusted_setup_file": 0.0012773266062140465, + "solidity_contract_generation": 1.3717909315600991 + }, + "file_size": 236740, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + "rawHeaders": [ + "Content-Length", + "1054", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:43 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M09.905165S", + "compute_time_sec": 9.905165, + "compute_times": { + "total": 9.918926574289799, + "queued": 0.48582, + "clean_up": 0.05230675730854273, + "create_cpp": 0.045606729574501514, + "file_setup": 0.02679374162107706, + "compile_cpp": 4.953503333963454, + "create_r1cs": 0.015227718278765678, + "save_results": 0.008131230250000954, + "get_r1cs_info": 0.00043175462633371353, + "groth16_setup": 1.7147084949538112, + "export_verification_key": 1.678258053958416, + "download_trusted_setup_file": 0.0014104470610618591, + "solidity_contract_generation": 1.4150088308379054 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "554", + "1052", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19917,22 +27608,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0005610059015452862, + "queued": 9.288692 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19944,11 +27638,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:04 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19965,38 +27659,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.939Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_time": "P0DT00H00M09.691729S", + "compute_time_sec": 9.691729, + "compute_times": { + "total": 9.698325637727976, + "queued": 0.474052, + "clean_up": 0.046641225926578045, + "create_cpp": 0.04586349707096815, + "file_setup": 0.03466500248759985, + "compile_cpp": 4.734695943072438, + "create_r1cs": 0.01605131570249796, + "save_results": 0.008689278736710548, + "get_r1cs_info": 0.0004518600180745125, + "groth16_setup": 1.6800644360482693, + "export_verification_key": 1.6780370585620403, + "download_trusted_setup_file": 0.0014321627095341682, + "solidity_contract_generation": 1.4514362132176757 + }, + "file_size": 236740, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "554", + "1052", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:04 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20012,39 +27720,37 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/prove", + "body": "------WebKitFormBoundaryQGebuZsRV4e0UEAG\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundaryQGebuZsRV4e0UEAG\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryQGebuZsRV4e0UEAG--\r\n", + "status": 201, "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "501", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:04 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20061,38 +27767,145 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", + "path": "/api/v1/circuit/5d32cb58-d551-44f2-a7ba-f3f1042a8722/detail?include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", + "date_created": "2024-03-14T20:02:31.762Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_time": "P0DT00H00M09.879936S", + "compute_time_sec": 9.879936, + "compute_times": { + "total": 9.886854749172926, + "queued": 0.485382, + "clean_up": 0.037875108420848846, + "create_cpp": 0.045085612684488297, + "file_setup": 0.02763216197490692, + "compile_cpp": 4.9910760167986155, + "create_r1cs": 0.015627074986696243, + "save_results": 0.008492609485983849, + "get_r1cs_info": 0.00048466306179761887, + "groth16_setup": 1.714037835597992, + "export_verification_key": 1.673197460360825, + "download_trusted_setup_file": 0.0012773266062140465, + "solidity_contract_generation": 1.3717909315600991 + }, + "file_size": 236740, "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "554", + "3694", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:06 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20109,38 +27922,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/ed7f305d-a4de-4bba-961b-ab2a6cfee80b/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "ed7f305d-a4de-4bba-961b-ab2a6cfee80b", "circuit_name": "circom-multiplier2", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:41.948Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_times": { + "total": 0.0002988260021083988, + "queued": 0.422667 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:06 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20157,38 +27974,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:07 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20204,39 +28022,37 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/b9507085-4088-4a4d-b33c-21bf3dd7bff7/prove", + "body": "------WebKitFormBoundary2Yyx0L2fbjQSyIhV\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary2Yyx0L2fbjQSyIhV\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary2Yyx0L2fbjQSyIhV--\r\n", + "status": 201, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "501", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:08 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20253,38 +28069,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:09 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20301,22 +28118,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0005610059015452862, + "queued": 9.288692 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20328,11 +28148,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:10 GMT", + "Thu, 14 Mar 2024 20:02:44 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20349,38 +28169,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/ed7f305d-a4de-4bba-961b-ab2a6cfee80b/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "ed7f305d-a4de-4bba-961b-ab2a6cfee80b", "circuit_name": "circom-multiplier2", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:41.948Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_times": { + "total": 0.0002988260021083988, + "queued": 0.422667 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:12 GMT", + "Thu, 14 Mar 2024 20:02:44 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20397,38 +28221,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:13 GMT", + "Thu, 14 Mar 2024 20:02:44 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20445,38 +28270,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:14 GMT", + "Thu, 14 Mar 2024 20:02:44 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20493,22 +28319,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0005610059015452862, + "queued": 9.288692 + }, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20520,11 +28349,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:15 GMT", + "Thu, 14 Mar 2024 20:02:45 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20541,38 +28370,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/ed7f305d-a4de-4bba-961b-ab2a6cfee80b/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "ed7f305d-a4de-4bba-961b-ab2a6cfee80b", "circuit_name": "circom-multiplier2", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:41.948Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_times": { + "total": 0.0002988260021083988, + "queued": 0.422667 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:17 GMT", + "Thu, 14 Mar 2024 20:02:45 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20589,38 +28422,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_times": { + "total": 0.00036705899765365757, + "queued": 2.139294 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "571", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:18 GMT", + "Thu, 14 Mar 2024 20:02:45 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20637,38 +28474,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "554", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:19 GMT", + "Thu, 14 Mar 2024 20:02:46 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20685,14 +28523,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -20700,10 +28538,10 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004587499424815178, - "queued": 21.20654 + "total": 0.0005610059015452862, + "queued": 9.288692 }, - "file_size": 497, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20719,7 +28557,7 @@ "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:20 GMT", + "Thu, 14 Mar 2024 20:02:46 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20736,41 +28574,169 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/ed7f305d-a4de-4bba-961b-ab2a6cfee80b/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "ed7f305d-a4de-4bba-961b-ab2a6cfee80b", "circuit_name": "circom-multiplier2", + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "In Progress", + "date_created": "2024-03-14T20:02:41.948Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, + "compute_time": "P0DT00H00M04.260815S", + "compute_time_sec": 4.260815, "compute_times": { - "total": 0.0004587499424815178, - "queued": 21.20654 + "prove": 4.099620727000001, + "total": 4.266420701998868, + "queued": 0.422667, + "clean_up": 0.010604338996927254, + "file_setup": 0.02451897099672351, + "save_results": 0.002082610000798013, + "export_calldata": 0.111393154002144, + "generate_witness_c": 0.017902075000165496 + }, + "file_size": 1351, + "proof_input": { + "a": "5", + "b": "4" }, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "proof": { + "pi_a": [ + "18285808158101138371019518414113191575483616484275062182376409210790995662351", + "4574876047931835052871405793275568925103434647303230938190168374205889225542", + "1" + ], + "pi_b": [ + [ + "17973655334628796602964233393639745342482878252893925549832035023359911864615", + "19815885704677112972474069528440754727115605543075651588668762141520133835735" + ], + [ + "7362537854364350294656659362639492855031169940460751022590667855649856646897", + "11828725589838572525630219187171619779470183821597691274227603518273804799167" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "21069839514691745038739833098241881304412452503750437485610019194094670514981", + "7654556171373737692891525087955706618180532331256233165779718726371093943646", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "smart_contract_calldata": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null }, "rawHeaders": [ "Content-Length", - "607", + "4161", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:22 GMT", + "Thu, 14 Mar 2024 20:02:47 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20787,41 +28753,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004587499424815178, - "queued": 21.20654 + "total": 0.00036705899765365757, + "queued": 2.139294 }, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "607", + "571", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:23 GMT", + "Thu, 14 Mar 2024 20:02:47 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20838,41 +28805,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "In Progress", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, + "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": { - "total": 0.0004587499424815178, - "queued": 21.20654 + "compute_times": null, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" }, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "607", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:24 GMT", + "Thu, 14 Mar 2024 20:02:47 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20889,14 +28854,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", + "date_created": "2024-03-14T20:02:31.920Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -20904,10 +28869,10 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004587499424815178, - "queued": 21.20654 + "total": 0.0005610059015452862, + "queued": 9.288692 }, - "file_size": 497, + "file_size": 537, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20923,7 +28888,7 @@ "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:25 GMT", + "Thu, 14 Mar 2024 20:02:48 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20940,41 +28905,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004587499424815178, - "queued": 21.20654 + "total": 0.00036705899765365757, + "queued": 2.139294 }, - "file_size": 497, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "607", + "571", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:26 GMT", + "Thu, 14 Mar 2024 20:02:48 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20991,76 +28957,15 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/detail?include_verification_key=false", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.342Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.942825S", - "compute_time_sec": 6.942825, - "compute_times": { - "total": 6.949025787878782, - "queued": 21.20654, - "clean_up": 0.031298316083848476, - "create_cpp": 0.04343291139230132, - "file_setup": 0.02724728872999549, - "compile_cpp": 4.45128513360396, - "create_r1cs": 0.013787470292299986, - "save_results": 0.0027786437422037125, - "get_r1cs_info": 0.00040152110159397125, - "groth16_setup": 1.1622737408615649, - "export_verification_key": 1.214866721071303, - "download_trusted_setup_file": 0.001195291057229042 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - }, - "rawHeaders": [ - "Content-Length", - "1000", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:29:28 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/prove", - "body": "------WebKitFormBoundaryjVprMlHCeYbBXrI6\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryjVprMlHCeYbBXrI6--\r\n", - "status": 201, - "response": { - "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", - "circuit_name": "circom-multiplier2", - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", - "circuit_type": "circom", - "date_created": "2024-03-12T00:29:28.396Z", + "date_created": "2024-03-14T20:02:43.477Z", "perform_verify": false, "status": "Queued", "team": "evan-sangaline", @@ -21068,19 +28973,23 @@ "compute_time_sec": null, "compute_times": null, "file_size": null, - "proof_input": null, + "proof_input": { + "a": "5", + "b": "4" + }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "468", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:28 GMT", + "Thu, 14 Mar 2024 20:02:48 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21097,38 +29006,41 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ee512f9d-2590-4d6a-93c3-f0de07984b5e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", "circuit_name": "circom-multiplier2", - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-03-12T00:29:28.396Z", - "perform_verify": false, - "status": "Queued", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof_input": { - "a": "5", - "b": "4" + "compute_times": { + "total": 0.0005610059015452862, + "queued": 9.288692 }, - "proof": null, - "public": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "484", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:28 GMT", + "Thu, 14 Mar 2024 20:02:49 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21145,23 +29057,23 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ee512f9d-2590-4d6a-93c3-f0de07984b5e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:29:28.396Z", + "date_created": "2024-03-14T20:02:43.267Z", "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004682079888880253, - "queued": 0.649073 + "total": 0.00036705899765365757, + "queued": 2.139294 }, "file_size": null, "proof_input": { @@ -21170,16 +29082,17 @@ }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "537", + "571", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:29 GMT", + "Thu, 14 Mar 2024 20:02:49 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21196,167 +29109,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ee512f9d-2590-4d6a-93c3-f0de07984b5e/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, - "response": { - "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", - "circuit_name": "circom-multiplier2", - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", - "circuit_type": "circom", - "date_created": "2024-03-12T00:29:28.396Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.462342S", - "compute_time_sec": 1.462342, - "compute_times": { - "prove": 1.3968474080320448, - "total": 1.4673558110371232, - "queued": 0.649073, - "clean_up": 0.012919645989313722, - "file_setup": 0.027661754051223397, - "save_results": 0.002378439996391535, - "generate_witness_c": 0.027080354979261756 - }, - "file_size": 711, - "proof_input": { - "a": "5", - "b": "4" - }, - "proof": { - "pi_a": [ - "18936280211298133310961472129866688356627045971510976027012511424277447736526", - "13209436284702984829526526452943496272429053921809347570282124224908353137929", - "1" - ], - "pi_b": [ - [ - "8832610811071436968963610401432692707744555620529459776886907353538364093707", - "18203037115285035445719499309293581584388887907944455964652370112317526837267" - ], - [ - "8243408095890286717035179516475795408029897079081508725081245858048183200721", - "67816320709684014911822067340817227752316760351046700800618127695510206641" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "13924674041339048762229665764583637948826598357575519999683838253203118576331", - "6090371706442598995204348204014607148189458832377538450718315957573967200893", - "1" - ], - "protocol": "groth16" - }, - "public": [ - "20" - ], - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] + "response": { + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", + "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" }, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "4089", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:31 GMT", + "Thu, 14 Mar 2024 20:02:49 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21373,45 +29158,104 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/01bc786f-f488-48d1-858c-adaa74f0fc10/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", + "path": "/api/v1/circuit/e74ff355-1a0d-4e6d-9f92-7b753d731f59/detail?include_verification_key=false", "body": "", "status": 200, - "response": [ - { - "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", - "circuit_name": "circom-multiplier2", - "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", - "circuit_type": "circom", - "date_created": "2024-03-12T00:29:28.396Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.462342S", - "compute_time_sec": 1.462342, - "compute_times": { - "prove": 1.3968474080320448, - "total": 1.4673558110371232, - "queued": 0.649073, - "clean_up": 0.012919645989313722, - "file_setup": 0.027661754051223397, - "save_results": 0.002378439996391535, - "generate_witness_c": 0.027080354979261756 - }, - "file_size": 711, - "proof_input": null, - "proof": null, - "public": null, - "verification_key": null, - "error": null - } + "response": { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.603959S", + "compute_time_sec": 8.603959, + "compute_times": { + "total": 8.611909189727157, + "queued": 9.288692, + "clean_up": 0.05220539681613445, + "create_cpp": 0.05067062610760331, + "file_setup": 0.038000084925442934, + "compile_cpp": 4.637983243912458, + "create_r1cs": 0.014208190143108368, + "save_results": 0.0024204719811677933, + "get_r1cs_info": 0.0003376118838787079, + "groth16_setup": 1.2754370658658445, + "export_verification_key": 1.2892165738157928, + "download_trusted_setup_file": 0.001250759232789278, + "solidity_contract_generation": 1.2496181591413915 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + "rawHeaders": [ + "Content-Length", + "1053", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:50 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "body": "", + "status": 200, + "response": { + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", + "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00036705899765365757, + "queued": 2.139294 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + }, "rawHeaders": [ "Content-Length", - "716", + "571", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:31 GMT", + "Thu, 14 Mar 2024 20:02:50 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21428,51 +29272,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=false", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", + "date_created": "2024-03-14T20:02:43.477Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.821377S", - "compute_time_sec": 6.821377, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "total": 6.826562466099858, - "queued": 30.605249, - "clean_up": 0.03631652891635895, - "create_cpp": 0.04230261128395796, - "file_setup": 0.03898624051362276, - "compile_cpp": 4.361995664425194, - "create_r1cs": 0.013952208682894707, - "save_results": 0.0029701171442866325, - "get_r1cs_info": 0.0003667334094643593, - "groth16_setup": 1.1385776856914163, - "export_verification_key": 1.189240344800055, - "download_trusted_setup_file": 0.0011938214302062988 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "total": 0.0003369859987287782, + "queued": 6.775293 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, "rawHeaders": [ "Content-Length", - "1001", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:13 GMT", + "Thu, 14 Mar 2024 20:02:51 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21489,36 +29324,66 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/fc985c97-0258-43d3-bae4-4927a5d7c848/detail?include_verification_key=true", + "path": "/api/v1/proof/16db96d1-2916-42c7-aae5-d804180574a8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.709Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.821377S", - "compute_time_sec": 6.821377, + "compute_time": "P0DT00H00M05.981509S", + "compute_time_sec": 5.981509, "compute_times": { - "total": 6.826562466099858, - "queued": 30.605249, - "clean_up": 0.03631652891635895, - "create_cpp": 0.04230261128395796, - "file_setup": 0.03898624051362276, - "compile_cpp": 4.361995664425194, - "create_r1cs": 0.013952208682894707, - "save_results": 0.0029701171442866325, - "get_r1cs_info": 0.0003667334094643593, - "groth16_setup": 1.1385776856914163, - "export_verification_key": 1.189240344800055, - "download_trusted_setup_file": 0.0011938214302062988 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "prove": 5.810260895003012, + "total": 5.986198388000048, + "queued": 2.139294, + "clean_up": 0.009704558000521502, + "file_setup": 0.03435308800180792, + "save_results": 0.0023903420005808584, + "export_calldata": 0.10522912499800441, + "generate_witness_c": 0.02389332099846797 + }, + "file_size": 1351, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": { + "pi_a": [ + "17341931989270350960373948101208931245005040281295309829891539327875415857446", + "19199430829308165529157416160373792803853225416015938097360398834378684147244", + "1" + ], + "pi_b": [ + [ + "21622030883349215167836766302964634906683510577668573101858813806563755726112", + "10364520283359716455875016457051272953675248528831228017604631913014455683017" + ], + [ + "15522635241102329662045055472078809551938986481183152128940915285810021420480", + "696346895253921326026898545688132137823866548962020521963025961315053026731" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "16947726697533375840090034067694139768620370439560645246008337217575518110003", + "8916562653089457602959954993813170337927959615352031706523325282354414170412", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "smart_contract_calldata": null, "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -21613,20 +29478,15 @@ ] ] }, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, "rawHeaders": [ "Content-Length", - "3641", + "4163", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:13 GMT", + "Thu, 14 Mar 2024 20:02:51 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21643,51 +29503,47 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/detail?include_verification_key=false", + "path": "/api/v1/circuit/8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2/proofs?include_proof_input=false&include_proof=false&include_public=false&include_smart_contract_calldata=false&include_verification_key=false", "body": "", "status": 200, - "response": { - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.491Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.876603S", - "compute_time_sec": 6.876603, - "compute_times": { - "total": 6.882667106110603, - "queued": 29.007266, - "clean_up": 0.04546098504215479, - "create_cpp": 0.043475366197526455, - "file_setup": 0.03212927980348468, - "compile_cpp": 4.419587793760002, - "create_r1cs": 0.01546289399266243, - "save_results": 0.002493636216968298, - "get_r1cs_info": 0.00048116687685251236, - "groth16_setup": 1.1517645819112659, - "export_verification_key": 1.1701868688687682, - "download_trusted_setup_file": 0.001243850216269493 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - }, + "response": [ + { + "proof_id": "16db96d1-2916-42c7-aae5-d804180574a8", + "circuit_name": "circom-multiplier2", + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:43.267Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M05.981509S", + "compute_time_sec": 5.981509, + "compute_times": { + "prove": 5.810260895003012, + "total": 5.986198388000048, + "queued": 2.139294, + "clean_up": 0.009704558000521502, + "file_setup": 0.03435308800180792, + "save_results": 0.0023903420005808584, + "export_calldata": 0.10522912499800441, + "generate_witness_c": 0.02389332099846797 + }, + "file_size": 1351, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + } + ], "rawHeaders": [ "Content-Length", - "1001", + "787", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:14 GMT", + "Thu, 14 Mar 2024 20:02:52 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21703,36 +29559,43 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/981aabde-973e-462d-a949-33073f152bcf/prove", - "body": "------WebKitFormBoundaryFHOZt1T9cAuBSHty\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryFHOZt1T9cAuBSHty--\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "body": "", + "status": 200, "response": { - "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:14.362Z", + "date_created": "2024-03-14T20:02:43.477Z", "perform_verify": false, - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0003369859987287782, + "queued": 6.775293 + }, "file_size": null, - "proof_input": null, + "proof_input": { + "a": "5", + "b": "4" + }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "468", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:14 GMT", + "Thu, 14 Mar 2024 20:02:52 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21749,21 +29612,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/bfedc200-63c9-48fd-88bf-844413ad428a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:14.362Z", + "date_created": "2024-03-14T20:02:43.477Z", "perform_verify": false, - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0003369859987287782, + "queued": 6.775293 + }, "file_size": null, "proof_input": { "a": "5", @@ -21771,77 +29637,17 @@ }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "484", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:30:14 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/06dd98e5-2b36-415a-9594-abd7c551cc9d/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:59.347Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.924565S", - "compute_time_sec": 6.924565, - "compute_times": { - "total": 6.929660878144205, - "queued": 22.741395, - "clean_up": 0.018933841958642006, - "create_cpp": 0.04256786499172449, - "file_setup": 0.02480014692991972, - "compile_cpp": 4.3917419938370585, - "create_r1cs": 0.013429097831249237, - "save_results": 0.0027808332815766335, - "get_r1cs_info": 0.00034791603684425354, - "groth16_setup": 1.2296617422252893, - "export_verification_key": 1.2036232966929674, - "download_trusted_setup_file": 0.0012051593512296677 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - }, - "rawHeaders": [ - "Content-Length", - "1005", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:15 GMT", + "Thu, 14 Mar 2024 20:02:53 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21858,48 +29664,49 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/bfedc200-63c9-48fd-88bf-844413ad428a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/7e1e4657-bfad-4583-b986-e17d74d66e2f/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "proof_id": "7e1e4657-bfad-4583-b986-e17d74d66e2f", "circuit_name": "circom-multiplier2", - "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:14.362Z", + "date_created": "2024-03-14T20:02:43.477Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.354832S", - "compute_time_sec": 0.354832, + "compute_time": "P0DT00H00M03.275397S", + "compute_time_sec": 3.275397, "compute_times": { - "prove": 0.29524299991317093, - "total": 0.3594474990386516, - "queued": 0.452341, - "clean_up": 0.010387225076556206, - "file_setup": 0.0286204491276294, - "save_results": 0.0014043520204722881, - "generate_witness_c": 0.023333966033533216 - }, - "file_size": 714, + "prove": 2.103358765998564, + "total": 3.280933271998947, + "queued": 6.775293, + "clean_up": 0.017832296001870418, + "file_setup": 0.018020262999925762, + "save_results": 0.0018995629980054218, + "export_calldata": 0.11208743400129606, + "generate_witness_c": 1.0273979640005564 + }, + "file_size": 1350, "proof_input": { "a": "5", "b": "4" }, "proof": { "pi_a": [ - "11949514769451524332662562865926691476261169184544316779334032332670082029944", - "9550080803318845276551860407970350096528425247389234985271611269453846901141", + "11084536044004028378270133418141974210861815691105836086990031918506279967572", + "12780898289723117461916725215843998816983683835822517319782260828544948385995", "1" ], "pi_b": [ [ - "20699712497607694570919554370346242085435582350481334394704480681822069086941", - "11169970291949827620962812370771058424149926616198840110052255999674454947989" + "17977214555637481365269614710599227380576987475725406185809463164021651769004", + "9714351222767165284753035955623878636221297320713834693588620047150647191252" ], [ - "4357299319118913570949423806850116203434175623530228704142483990917515858032", - "20519580596030533624359722910874566685325199344536472077343907249187982217240" + "7972862676316362939379694785934309462297814433683565433626889363682750503620", + "12024193033641938481850804809460611658299492900565969210736070341260461434172" ], [ "1", @@ -21907,8 +29714,8 @@ ] ], "pi_c": [ - "12519453461541158465917410495302869539615096681316950994155196803319847361819", - "5183099171905559243460255018628191247553269378451842702179487961020704501901", + "4548974411939952988950298981496482561401847150130240086495999375131330631661", + "2787906682257132058753866882374475066907715758917453376797338876304263143695", "1" ], "protocol": "groth16" @@ -21916,6 +29723,7 @@ "public": [ "20" ], + "smart_contract_calldata": null, "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -22014,11 +29822,11 @@ }, "rawHeaders": [ "Content-Length", - "4092", + "4162", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:15 GMT", + "Thu, 14 Mar 2024 20:02:54 GMT", "Referrer-Policy", "same-origin", "Server", diff --git a/test/fixtures/sdk.test.ts.json b/test/fixtures/sdk.test.ts.json index c6e64a5..b795adf 100644 --- a/test/fixtures/sdk.test.ts.json +++ b/test/fixtures/sdk.test.ts.json @@ -1,18653 +1,25949 @@ [ + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/list?include_verification_key=false", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_smart_contract_calldata=false&include_verification_key=false", "body": "", "status": 200, "response": [ { - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_name": "poseidon", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:08:55.369Z", - "num_proofs": 229, - "proving_scheme": "groth16", + "proof_id": "441c1d46-a6e4-4e73-98be-1c87e892c9bb", + "circuit_name": "circom-multiplier2", + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:58.370Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M20.064560S", - "compute_time_sec": 20.06456, + "compute_time": "P0DT00H00M04.948502S", + "compute_time_sec": 4.948502, "compute_times": { - "total": 20.07014292757958, - "queued": 0.281108, - "compile": 12.642420304007828, - "clean_up": 5.060501893050969, - "file_setup": 2.2013850677758455, - "save_results": 0.036197442561388016, - "compile_r1cs_and_keygen": 0.12922980543226004 + "prove": 4.804858028001036, + "total": 4.954793066997809, + "queued": 4.113693, + "clean_up": 0.005270341996947536, + "file_setup": 0.01681686499796342, + "save_results": 0.0022578030002478044, + "export_calldata": 0.10960615099975257, + "generate_witness_c": 0.015163871001277585 }, - "file_size": 30921195, - "uploaded_file_name": "poseidon.tar.gz", + "file_size": 1352, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", - "circuit_name": "my-circuit", - "circuit_type": "gnark", - "date_created": "2024-02-28T18:01:02.213Z", - "num_proofs": 2, - "proving_scheme": "groth16", + "proof_id": "bfe813bc-8ba4-4c16-88bd-4460709b37b4", + "circuit_name": "circom-multiplier2", + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.254Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.157686S", - "compute_time_sec": 14.157686, + "compute_time": "P0DT00H00M05.744789S", + "compute_time_sec": 5.744789, "compute_times": { - "total": 14.164283829275519, - "queued": 0.242197, - "compile": 9.50105039961636, - "clean_up": 2.131474153138697, - "file_setup": 2.504877657163888, - "save_results": 0.007419941946864128, - "compile_r1cs_and_keygen": 0.018980357330292463 + "prove": 5.5894722339980945, + "total": 5.752321984997252, + "queued": 0.442669, + "clean_up": 0.004489405997446738, + "file_setup": 0.022617268001340562, + "save_results": 0.001973251000890741, + "export_calldata": 0.11522039000192308, + "generate_witness_c": 0.01802813399990555 }, - "file_size": 19726986, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 1351, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", - "circuit_name": "my-circuit", + "proof_id": "57b86e24-c6ed-440d-b889-d830850742d4", + "circuit_name": "circom-multiplier2", + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", "circuit_type": "circom", - "date_created": "2024-02-28T16:06:54.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:01:57.234Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.680331S", - "compute_time_sec": 2.680331, + "compute_time": "P0DT00H00M03.776612S", + "compute_time_sec": 3.776612, "compute_times": { - "total": 2.6865532309748232, - "queued": 0.278162, - "clean_up": 0.15621905494481325, - "file_setup": 0.07576264115050435, - "create_r1cs": 0.02499393606558442, - "create_wasm": 0.037889659870415926, - "save_results": 0.006284092087298632, - "get_r1cs_info": 0.0003155169542878866, - "groth16_setup": 1.1963414950296283, - "export_verification_key": 1.1868828509468585, - "download_trusted_setup_file": 0.0014421690721064806 + "prove": 3.6362894689991663, + "total": 3.7815391939984693, + "queued": 0.526972, + "clean_up": 0.0036153680011921097, + "file_setup": 0.018255920000228798, + "save_results": 0.0018909639984485693, + "export_calldata": 0.10398840000198106, + "generate_witness_c": 0.017069464000087464 }, - "file_size": 1467971, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 1352, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", - "circuit_name": "my-circuit", + "proof_id": "249f452d-2c55-4148-97ea-bc05b735e041", + "circuit_name": "circom-multiplier2", + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", "circuit_type": "circom", - "date_created": "2024-02-28T16:06:28.625Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:01:57.171Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.723950S", - "compute_time_sec": 2.72395, + "compute_time": "P0DT00H00M05.603900S", + "compute_time_sec": 5.6039, "compute_times": { - "total": 2.730448425281793, - "queued": 0.24759, - "clean_up": 0.03860751632601023, - "file_setup": 0.08125918405130506, - "create_r1cs": 0.025404677726328373, - "create_wasm": 0.03741568187251687, - "save_results": 0.007240877952426672, - "get_r1cs_info": 0.00033877836540341377, - "groth16_setup": 1.2571284701116383, - "export_verification_key": 1.2813060129992664, - "download_trusted_setup_file": 0.0013454826548695564 + "prove": 5.459078328000032, + "total": 5.610627756999747, + "queued": 0.420203, + "clean_up": 0.004868047999480041, + "file_setup": 0.02211545399768511, + "save_results": 0.0022768349990656134, + "export_calldata": 0.10511248600232648, + "generate_witness_c": 0.01666070999999647 }, - "file_size": 1467971, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 1349, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_name": "hash-checker", + "proof_id": "3ee89584-01a2-4d8f-ac17-7502e50a8781", + "circuit_name": "circom-multiplier2", + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", "circuit_type": "circom", - "date_created": "2024-02-27T01:57:59.411Z", - "num_proofs": 4, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:01:00.995Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.843744S", - "compute_time_sec": 36.843744, + "compute_time": "P0DT00H00M03.405317S", + "compute_time_sec": 3.405317, "compute_times": { - "total": 36.91908207698725, - "queued": 0.286679, - "clean_up": 0.03467807709239423, - "create_cpp": 0.7680627549998462, - "file_setup": 0.1394905720371753, - "compile_cpp": 28.152615127852187, - "create_r1cs": 0.34302311204373837, - "save_results": 0.006143820006400347, - "get_r1cs_info": 0.0005576841067522764, - "groth16_setup": 4.3415444530546665, - "export_verification_key": 1.252952174982056, - "download_trusted_setup_file": 1.879397285869345 + "prove": 3.257512511998357, + "total": 3.412531285001023, + "queued": 0.445626, + "clean_up": 0.003913354001269909, + "file_setup": 0.02324151900029392, + "save_results": 0.0026117130000784528, + "export_calldata": 0.10888770000019576, + "generate_witness_c": 0.015812714998901356 }, - "file_size": 3870229, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1349, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", - "circuit_name": "circom-circuit", + "proof_id": "efaa6bf4-3645-4880-a193-d6bd116274c7", + "circuit_name": "circom-multiplier2", + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", "circuit_type": "circom", - "date_created": "2024-02-26T02:32:51.263Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T20:00:52.681Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.040985S", - "compute_time_sec": 0.040985, + "compute_time": "P0DT00H00M05.934746S", + "compute_time_sec": 5.934746, "compute_times": { - "total": 0.03328296495601535, - "queued": 0.306452, - "file_setup": 0.02101697097532451, - "create_wasm": 0.011749706929549575 + "prove": 5.787349419999373, + "total": 5.939744459999929, + "queued": 0.495867, + "clean_up": 0.0040207270030805375, + "file_setup": 0.019113056998321554, + "save_results": 0.0023805119999451563, + "export_calldata": 0.10894711299988558, + "generate_witness_c": 0.017442213000322226 }, - "file_size": 1015, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1350, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", - "circuit_name": "hash-checker", + "proof_id": "dcb84b60-ecdf-4ea0-94da-4900d30aabab", + "circuit_name": "circom-multiplier2", + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", "circuit_type": "circom", - "date_created": "2024-02-25T21:21:18.316Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:00:41.570Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.116953S", - "compute_time_sec": 36.116953, + "compute_time": "P0DT00H00M05.617362S", + "compute_time_sec": 5.617362, "compute_times": { - "total": 36.12258589011617, - "queued": 0.280658, - "clean_up": 0.045256566954776645, - "create_cpp": 0.7550635728985071, - "file_setup": 0.055438351118937135, - "compile_cpp": 27.543986437143758, - "create_r1cs": 0.34856289392337203, - "save_results": 0.005512146046385169, - "get_r1cs_info": 0.0005783189553767443, - "groth16_setup": 4.374077996937558, - "export_verification_key": 1.1806295281276107, - "download_trusted_setup_file": 1.8129089260473847 + "prove": 5.474078178998752, + "total": 5.622463510000671, + "queued": 0.418167, + "clean_up": 0.00803620700025931, + "file_setup": 0.018854406000173185, + "save_results": 0.0017511790028947871, + "export_calldata": 0.10220659499827889, + "generate_witness_c": 0.01688886800184264 }, - "file_size": 3870232, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1349, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", - "circuit_name": "circom-circuit", + "proof_id": "8e5c7aaa-802e-4745-9bf2-66019dd1a601", + "circuit_name": "circom-multiplier2", + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", "circuit_type": "circom", - "date_created": "2024-02-25T21:15:00.721Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T20:00:22.558Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.153850S", - "compute_time_sec": 0.15385, + "compute_time": "P0DT00H00M03.001802S", + "compute_time_sec": 3.001802, "compute_times": { - "total": 0.14053412294015288, - "queued": 0.345862, - "file_setup": 0.12803456606343389, - "create_wasm": 0.01188180991448462 + "prove": 2.850486497001839, + "total": 3.0079437349995715, + "queued": 0.429195, + "clean_up": 0.00477394299741718, + "file_setup": 0.02143064499978209, + "save_results": 0.002050779999990482, + "export_calldata": 0.11096191999968141, + "generate_witness_c": 0.017688288000499597 }, - "file_size": 1004, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1350, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", - "circuit_name": "circom-circuit", + "proof_id": "6f9d5bd9-f691-4665-8ba8-1fc3ad30f4da", + "circuit_name": "circom-multiplier2", + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", "circuit_type": "circom", - "date_created": "2024-02-22T00:02:35.495Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:00:03.354Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.105806S", - "compute_time_sec": 8.105806, + "compute_time": "P0DT00H00M05.965728S", + "compute_time_sec": 5.965728, "compute_times": { - "total": 8.111726151080802, - "queued": 0.299859, - "clean_up": 0.03814816800877452, - "create_cpp": 0.11785020097158849, - "file_setup": 0.07184063596650958, - "compile_cpp": 4.999685499118641, - "create_r1cs": 0.027501144912093878, - "save_results": 0.0056748660281300545, - "get_r1cs_info": 0.0003923040349036455, - "groth16_setup": 1.33484046603553, - "export_verification_key": 1.5138321269769222, - "download_trusted_setup_file": 0.0013768889475613832 + "prove": 5.812987373999931, + "total": 5.971253014999093, + "queued": 0.495867, + "clean_up": 0.005065063000074588, + "file_setup": 0.025277897002524696, + "save_results": 0.002423641999484971, + "export_calldata": 0.10757091800041962, + "generate_witness_c": 0.017406072998710442 }, - "file_size": 1650685, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1350, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", - "circuit_name": "circom-circuit", + "proof_id": "6281a4c2-09a1-4945-84bc-b550dccd7a50", + "circuit_name": "circom-multiplier2", + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", "circuit_type": "circom", - "date_created": "2024-02-21T23:58:37.180Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:53:16.126Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.050622S", - "compute_time_sec": 7.050622, + "compute_time": "P0DT00H00M02.228147S", + "compute_time_sec": 2.228147, "compute_times": { - "total": 7.057020629988983, - "queued": 0.29724, - "clean_up": 0.062270441092550755, - "create_cpp": 0.06243468704633415, - "file_setup": 0.07652567396871746, - "compile_cpp": 4.485646587098017, - "create_r1cs": 0.02570242597721517, - "save_results": 0.00595727888867259, - "get_r1cs_info": 0.00039725680835545063, - "groth16_setup": 1.17986157303676, - "export_verification_key": 1.1563023570924997, - "download_trusted_setup_file": 0.0012368990574032068 + "prove": 2.077421851001418, + "total": 2.234921953000594, + "queued": 0.418659, + "clean_up": 0.003966344000218669, + "file_setup": 0.030404459001147188, + "save_results": 0.0023475250018236693, + "export_calldata": 0.10374246599894832, + "generate_witness_c": 0.016470030997879803 }, - "file_size": 1651141, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 1350, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", - "circuit_name": "hash-checker", + "proof_id": "2dc6b159-345d-4f56-8b8f-d8bb8628fa63", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", "circuit_type": "circom", - "date_created": "2024-02-16T16:44:06.247Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:52:45.755Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M35.940220S", - "compute_time_sec": 35.94022, + "compute_time": "P0DT00H00M05.721447S", + "compute_time_sec": 5.721447, "compute_times": { - "total": 35.94744881300721, - "queued": 0.255393, - "clean_up": 0.0907127889804542, - "create_cpp": 0.8199345880420879, - "file_setup": 0.08025214297231287, - "compile_cpp": 27.603134420933202, - "create_r1cs": 0.38317175407428294, - "save_results": 0.009111783001571894, - "get_r1cs_info": 0.0010840859031304717, - "groth16_setup": 4.134320180979557, - "export_verification_key": 1.0508651459822431, - "download_trusted_setup_file": 1.7740050770808011 + "prove": 5.535044663996814, + "total": 5.726598596997064, + "queued": 0.422717, + "clean_up": 0.03942027899756795, + "file_setup": 0.019663279999804217, + "save_results": 0.002537604003009619, + "export_calldata": 0.11143504299980123, + "generate_witness_c": 0.018077863001963124 }, - "file_size": 3869586, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1349, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 1, - "num_private_inputs": 4, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_name": "hash-checker", + "proof_id": "c7c29d0f-2294-4c56-9115-58e4f88a74af", + "circuit_name": "circom-multiplier2", + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", "circuit_type": "circom", - "date_created": "2024-02-15T19:07:26.262Z", - "num_proofs": 2, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:52:35.490Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M35.144392S", - "compute_time_sec": 35.144392, + "compute_time": "P0DT00H00M05.927519S", + "compute_time_sec": 5.927519, "compute_times": { - "total": 35.15089295199141, - "queued": 0.226366, - "clean_up": 0.11753120506182313, - "create_cpp": 0.7529647811315954, - "file_setup": 0.06330146407708526, - "compile_cpp": 28.331635219044983, - "create_r1cs": 0.34842015197500587, - "save_results": 0.010279993992298841, - "get_r1cs_info": 0.0006776847876608372, - "groth16_setup": 4.291510064154863, - "export_verification_key": 1.2317856717854738, - "download_trusted_setup_file": 0.002070905175060034 + "prove": 5.770760945000802, + "total": 5.933365464999952, + "queued": 0.861562, + "clean_up": 0.003432298999541672, + "file_setup": 0.026692643001297256, + "save_results": 0.0025084219996642787, + "export_calldata": 0.105197737000708, + "generate_witness_c": 0.024245210999652045 }, - "file_size": 3870226, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1347, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_name": "semaphore", + "proof_id": "e008931a-4064-414d-accb-aac8b3205dd3", + "circuit_name": "circom-multiplier2", + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", "circuit_type": "circom", - "date_created": "2024-02-15T16:46:44.192Z", - "num_proofs": 5, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:52:24.665Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.775219S", - "compute_time_sec": 6.775219, + "compute_time": "P0DT00H00M05.632578S", + "compute_time_sec": 5.632578, "compute_times": { - "total": 6.786237360094674, - "queued": 0.306632, - "clean_up": 0.02926708501763642, - "create_cpp": 0.06894711602944881, - "file_setup": 0.06364756193943322, - "compile_cpp": 4.536427660030313, - "create_r1cs": 0.0257944610202685, - "save_results": 0.008142217062413692, - "get_r1cs_info": 0.000770728918723762, - "groth16_setup": 1.0133657020051032, - "export_verification_key": 1.0354817470069975, - "download_trusted_setup_file": 0.003386533004231751 + "prove": 5.469727709001745, + "total": 5.638864864002244, + "queued": 0.416688, + "clean_up": 0.00552048399913474, + "file_setup": 0.034471152001060545, + "save_results": 0.0021238860026642215, + "export_calldata": 0.1107287599988922, + "generate_witness_c": 0.015849075996811735 }, - "file_size": 232969, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1345, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", - "circuit_name": "semaphore", + "proof_id": "62ef1d39-1cc1-41e2-8b05-ae3cf2c6bafa", + "circuit_name": "circom-multiplier2", + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", "circuit_type": "circom", - "date_created": "2024-02-15T16:44:21.936Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:46:54.345Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.525882S", - "compute_time_sec": 7.525882, + "compute_time": "P0DT00H00M01.864568S", + "compute_time_sec": 1.864568, "compute_times": { - "total": 7.532384330872446, - "queued": 0.273291, - "clean_up": 0.41135954577475786, - "create_cpp": 0.044112610165029764, - "file_setup": 0.05311372969299555, - "compile_cpp": 4.545667007099837, - "create_r1cs": 0.021503231953829527, - "save_results": 0.023626559413969517, - "get_r1cs_info": 0.0004302137531340122, - "groth16_setup": 1.2149698357097805, - "export_verification_key": 1.2118688928894699, - "download_trusted_setup_file": 0.004898259416222572 + "prove": 1.6979890130023705, + "total": 1.8710837769976933, + "queued": 0.420843, + "clean_up": 0.004697303000284592, + "file_setup": 0.03166239900019718, + "save_results": 0.0022494080003525596, + "export_calldata": 0.11624086399751832, + "generate_witness_c": 0.017705917998682708 }, - "file_size": 232949, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1353, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", - "circuit_name": "hash-checker", + "proof_id": "b0e83342-ed0f-4847-a564-7e1189f9ddec", + "circuit_name": "circom-multiplier2", + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", "circuit_type": "circom", - "date_created": "2024-02-15T16:21:42.338Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:46:50.463Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M35.218699S", - "compute_time_sec": 35.218699, + "compute_time": "P0DT00H00M05.917205S", + "compute_time_sec": 5.917205, "compute_times": { - "total": 35.2277638950618, - "queued": 0.317566, - "clean_up": 0.1369406400481239, - "create_cpp": 0.8040473599685356, - "file_setup": 0.1467569509986788, - "compile_cpp": 27.42731417901814, - "create_r1cs": 0.37680110498331487, - "save_results": 0.008219165029004216, - "get_r1cs_info": 0.0012246599653735757, - "groth16_setup": 4.11037651298102, - "export_verification_key": 1.009748816024512, - "download_trusted_setup_file": 1.2047668669838458 + "prove": 5.76882896099778, + "total": 5.923281269002473, + "queued": 0.473413, + "clean_up": 0.004220196002279408, + "file_setup": 0.023053355002048193, + "save_results": 0.002412202000414254, + "export_calldata": 0.11001600300005521, + "generate_witness_c": 0.014210194000042975 }, - "file_size": 3868192, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1352, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", - "circuit_name": "hash-checker", + "proof_id": "31737430-a60c-4afa-a802-ab9745a50855", + "circuit_name": "circom-multiplier2", + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", "circuit_type": "circom", - "date_created": "2024-02-15T16:20:47.501Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:46:29.388Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M34.701699S", - "compute_time_sec": 34.701699, + "compute_time": "P0DT00H00M03.190486S", + "compute_time_sec": 3.190486, "compute_times": { - "total": 34.707892696838826, - "queued": 0.318933, - "clean_up": 0.09660972375422716, - "create_cpp": 0.7858420582488179, - "file_setup": 0.062256335746496916, - "compile_cpp": 27.987545497715473, - "create_r1cs": 0.3427793183363974, - "save_results": 0.006912626326084137, - "get_r1cs_info": 0.0007053948938846588, - "groth16_setup": 4.240857229102403, - "export_verification_key": 1.1814902885816991, - "download_trusted_setup_file": 0.002157846000045538 + "prove": 3.0487610410018533, + "total": 3.1961618709974573, + "queued": 0.433578, + "clean_up": 0.005094486998132197, + "file_setup": 0.019373082999663893, + "save_results": 0.002381483998760814, + "export_calldata": 0.1057304940004542, + "generate_witness_c": 0.01445452500047395 }, - "file_size": 3868192, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1352, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "1d3b53dd-df47-4eac-a4a8-63e8dcb4fba0", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", "circuit_type": "circom", - "date_created": "2024-02-15T00:37:02.228Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:46:29.327Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M55.791705S", - "compute_time_sec": 55.791705, + "compute_time": "P0DT00H00M05.765340S", + "compute_time_sec": 5.76534, "compute_times": { - "total": 55.797921964898705, - "queued": 0.257892, - "clean_up": 0.07545234775170684, - "create_cpp": 1.1982138170860708, - "file_setup": 0.0613596779294312, - "compile_cpp": 36.85164702497423, - "create_r1cs": 0.7978045740164816, - "save_results": 0.006434123031795025, - "get_r1cs_info": 0.002160165924578905, - "groth16_setup": 15.61639252398163, - "export_verification_key": 1.167371460236609, - "download_trusted_setup_file": 0.020440288819372654 + "prove": 5.587391068998841, + "total": 5.7718329329982225, + "queued": 0.447915, + "clean_up": 0.0038716149974789005, + "file_setup": 0.020665116000600392, + "save_results": 0.0016502670005138498, + "export_calldata": 0.140346321000834, + "generate_witness_c": 0.01741997200224432 }, - "file_size": 7540832, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 1349, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "6db92f74-636d-4113-a191-016d31af5a60", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T23:58:52.084Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:40:56.709Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M56.901539S", - "compute_time_sec": 56.901539, + "compute_time": "P0DT00H00M06.111263S", + "compute_time_sec": 6.111263, "compute_times": { - "total": 56.907790740951896, - "queued": 0.286676, - "clean_up": 0.1532127452082932, - "create_cpp": 1.1961525329388678, - "file_setup": 0.05804666178300977, - "compile_cpp": 38.085547543130815, - "create_r1cs": 0.8190577877685428, - "save_results": 0.010267478879541159, - "get_r1cs_info": 0.002185516059398651, - "groth16_setup": 15.381996811367571, - "export_verification_key": 1.1801622677594423, - "download_trusted_setup_file": 0.020589394960552454 + "prove": 5.801642374000949, + "total": 6.118132268999034, + "queued": 0.417176, + "clean_up": 0.15879904399844236, + "file_setup": 0.028945090998604428, + "save_results": 0.002337395002541598, + "export_calldata": 0.10591289899821277, + "generate_witness_c": 0.020032639000419294 }, - "file_size": 7540785, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", - "circuit_name": "rate-limiting-nullifier", - "circuit_type": "circom", - "date_created": "2024-02-14T23:57:50.289Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "28c4506e-ccd4-443c-90f3-adb25eb4ad03", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:40:37.936Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M56.834710S", - "compute_time_sec": 56.83471, + "compute_time": "P0DT00H00M08.087169S", + "compute_time_sec": 8.087169, "compute_times": { - "total": 56.8432289250195, - "queued": 0.287988, - "clean_up": 0.10309748293366283, - "create_cpp": 1.2134589219931513, - "file_setup": 0.09620017104316503, - "compile_cpp": 38.34681939892471, - "create_r1cs": 0.824894416029565, - "save_results": 0.010392117081210017, - "get_r1cs_info": 0.004026207025162876, - "groth16_setup": 15.126561413053423, - "export_verification_key": 1.0899655069224536, - "download_trusted_setup_file": 0.02710751595441252 + "total": 8.095745701000851, + "queued": 0.430515, + "clean_up": 6.9514737549980055, + "file_setup": 0.5215178199978254, + "create_proof": 0.6202040329990268, + "save_results": 0.0021520290029002354 }, - "file_size": 7540780, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", - "circuit_name": "rate-limiting-nullifier", - "circuit_type": "circom", - "date_created": "2024-02-14T23:52:09.320Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "854a000e-771d-4f12-b0a7-72860557d1b4", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:35:35.367Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M57.335290S", - "compute_time_sec": 57.33529, + "compute_time": "P0DT00H00M05.625640S", + "compute_time_sec": 5.62564, "compute_times": { - "total": 57.34173893509433, - "queued": 0.278472, - "clean_up": 0.10366297094151378, - "create_cpp": 1.246839945204556, - "file_setup": 0.06519381469115615, - "compile_cpp": 38.10613914998248, - "create_r1cs": 0.821301891002804, - "save_results": 0.0067642792128026485, - "get_r1cs_info": 0.002133298199623823, - "groth16_setup": 15.753068736288697, - "export_verification_key": 1.2155762687325478, - "download_trusted_setup_file": 0.020359096582978964 + "total": 5.63317780899888, + "queued": 0.426409, + "clean_up": 4.479961421999178, + "file_setup": 0.563317954998638, + "create_proof": 0.587274489000265, + "save_results": 0.002000247000978561 }, - "file_size": 7540742, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "38d6cdd9-8ae0-4bba-a019-be7beb4676a0", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T23:43:09.159Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:15:59.739Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M54.984651S", - "compute_time_sec": 54.984651, + "compute_time": "P0DT00H00M08.028110S", + "compute_time_sec": 8.02811, "compute_times": { - "total": 54.99341053608805, - "queued": 0.304312, - "clean_up": 0.06826841598376632, - "create_cpp": 1.2764658289961517, - "file_setup": 0.08957945799920708, - "compile_cpp": 36.77387927705422, - "create_r1cs": 0.801689010928385, - "save_results": 0.009336387040093541, - "get_r1cs_info": 0.003953314037062228, - "groth16_setup": 14.896520375041291, - "export_verification_key": 1.0483920950209722, - "download_trusted_setup_file": 0.024622616940177977 + "prove": 5.743801852000615, + "total": 8.034273915996891, + "queued": 0.418479, + "clean_up": 1.4221806829991692, + "file_setup": 0.026719098001194652, + "save_results": 0.0024404450014117174, + "verify_check": 0.7168494949983142, + "export_calldata": 0.1096146449999651, + "generate_witness_c": 0.011982872998487437 }, - "file_size": 7540733, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", - "circuit_name": "rate-limiting-nullifier", + "proof_id": "dca14000-9c8e-4010-84a0-6ee0f8141c63", + "circuit_name": "circom-multiplier2", + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", "circuit_type": "circom", - "date_created": "2024-02-14T21:42:21.824Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:13:48.590Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M56.975886S", - "compute_time_sec": 56.975886, + "compute_time": "P0DT00H00M05.853836S", + "compute_time_sec": 5.853836, "compute_times": { - "total": 56.984479263890535, - "queued": 0.3222, - "clean_up": 0.071199910948053, - "create_cpp": 1.246658438933082, - "file_setup": 0.08264653407968581, - "compile_cpp": 37.13031674805097, - "create_r1cs": 0.8157099969685078, - "save_results": 0.008955279947258532, - "get_r1cs_info": 0.004004108952358365, - "groth16_setup": 14.917821239912882, - "export_verification_key": 1.06573862710502, - "download_trusted_setup_file": 1.640640855068341 + "prove": 5.50850399599949, + "total": 5.85873119399912, + "queued": 0.429635, + "clean_up": 0.19279620100132888, + "file_setup": 0.018208794001111528, + "save_results": 0.0019690720000653528, + "export_calldata": 0.12116290699850651, + "generate_witness_c": 0.015544702000624966 }, - "file_size": 7540735, - "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "file_size": 1350, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5820, - "num_outputs": 3, - "num_private_inputs": 43, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", - "circuit_name": "hash-checker", + "proof_id": "b29866d5-6977-44a1-b53a-b59bd5f07c5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", "circuit_type": "circom", - "date_created": "2024-02-14T21:41:14.188Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:13:47.134Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.819064S", - "compute_time_sec": 36.819064, + "compute_time": "P0DT00H00M06.759570S", + "compute_time_sec": 6.75957, "compute_times": { - "total": 36.826748004648834, - "queued": 0.269335, - "clean_up": 0.11822917684912682, - "create_cpp": 0.7589871259406209, - "file_setup": 0.15491734398528934, - "compile_cpp": 28.743124674074352, - "create_r1cs": 0.35148238157853484, - "save_results": 0.00582153769209981, - "get_r1cs_info": 0.0006839861162006855, - "groth16_setup": 4.374190780799836, - "export_verification_key": 1.1788361864164472, - "download_trusted_setup_file": 1.1384393190965056 + "prove": 5.7691859059996204, + "total": 6.76582350299941, + "queued": 0.573203, + "clean_up": 0.8512933130004967, + "file_setup": 0.020217060002323706, + "save_results": 0.002654211999470135, + "export_calldata": 0.10469743599969661, + "generate_witness_c": 0.017217937998793786 }, - "file_size": 3867265, - "uploaded_file_name": "hash-checker.tar.gz", + "file_size": 1348, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", - "circuit_name": "semaphore", + "proof_id": "a0774be2-3c41-4cbc-addc-edd9b4e2956d", + "circuit_name": "circom-multiplier2", + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", "circuit_type": "circom", - "date_created": "2024-02-14T21:39:50.042Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:13:15.491Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M47.319956S", - "compute_time_sec": 47.319956, + "compute_time": "P0DT00H00M03.638381S", + "compute_time_sec": 3.638381, "compute_times": { - "total": 47.326535122003406, - "queued": 0.256588, - "clean_up": 0.08247739961370826, - "create_cpp": 1.000471537001431, - "file_setup": 0.0585682881064713, - "compile_cpp": 29.038879429921508, - "create_r1cs": 0.6561976410448551, - "save_results": 0.006647040136158466, - "get_r1cs_info": 0.0020793969742953777, - "groth16_setup": 15.312814712058753, - "export_verification_key": 1.1472203098237514, - "download_trusted_setup_file": 0.02056274702772498 + "prove": 2.0563713180017658, + "total": 3.6447121650016925, + "queued": 0.435142, + "clean_up": 1.4359558040014235, + "file_setup": 0.029414451997581637, + "save_results": 0.0022407860014936887, + "export_calldata": 0.10466101899874047, + "generate_witness_c": 0.015545509999356 }, - "file_size": 6775884, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1345, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", - "circuit_name": "Semaphore", + "proof_id": "bfdae09a-dab8-4925-983a-cb36fe9e1968", + "circuit_name": "circom-multiplier2", + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", "circuit_type": "circom", - "date_created": "2024-02-14T21:36:56.776Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T19:12:35.111Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M47.874450S", - "compute_time_sec": 47.87445, + "compute_time": "P0DT00H00M05.950247S", + "compute_time_sec": 5.950247, "compute_times": { - "total": 47.88067169301212, - "queued": 0.241228, - "clean_up": 0.08292657090350986, - "create_cpp": 1.0067430417984724, - "file_setup": 0.060509118251502514, - "compile_cpp": 28.465293834917247, - "create_r1cs": 0.6478999992832541, - "save_results": 0.00611361488699913, - "get_r1cs_info": 0.0020417659543454647, - "groth16_setup": 14.801113961264491, - "export_verification_key": 1.1754452609457076, - "download_trusted_setup_file": 1.6319761737249792 + "prove": 5.542268355002307, + "total": 5.956350837001082, + "queued": 0.455803, + "clean_up": 0.2413153500019689, + "file_setup": 0.024655373999848962, + "save_results": 0.0029602979993796907, + "export_calldata": 0.11759848699875874, + "generate_witness_c": 0.027109548998851096 }, - "file_size": 6775882, - "uploaded_file_name": "Semaphore.tar.gz", + "file_size": 1351, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", - "circuit_name": "email", + "proof_id": "ca34a20e-17fa-4996-a25b-57e051f3e75e", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T16:08:08.930Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T19:05:54.268Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.897920S", - "compute_time_sec": 2.89792, + "compute_time": "P0DT00H00M08.257042S", + "compute_time_sec": 8.257042, "compute_times": { - "total": 0.9285368990385905, - "queued": 0.329843, - "create_cpp": 0.04405528900679201, - "file_setup": 0.8838426299626008 + "prove": 6.118464802002563, + "total": 8.263815338999848, + "queued": 1.300164, + "clean_up": 1.2629296249979234, + "file_setup": 0.03202529799818876, + "save_results": 0.002139272997737862, + "verify_check": 0.7154526120029914, + "export_calldata": 0.11000840099950437, + "generate_witness_c": 0.02232845999969868 }, - "file_size": 24822850, - "uploaded_file_name": "email.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", - "circuit_name": "email", + "proof_id": "a72071e5-5478-4ad9-bc50-91d5a41899bd", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T16:06:51.116Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T19:05:33.736Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.346644S", - "compute_time_sec": 3.346644, + "compute_time": "P0DT00H00M06.362972S", + "compute_time_sec": 6.362972, "compute_times": { - "total": 0.8087141560390592, - "queued": 0.273012, - "create_cpp": 0.01664800103753805, - "file_setup": 0.791186569724232 + "prove": 4.702792235999368, + "total": 6.368291856000724, + "queued": 0.427813, + "clean_up": 0.7771713300026022, + "file_setup": 0.04098392900050385, + "save_results": 0.0022858249976707157, + "verify_check": 0.7296507020000718, + "export_calldata": 0.10327137200147263, + "generate_witness_c": 0.011696364999806974 }, - "file_size": 24822792, - "uploaded_file_name": "email.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", - "circuit_name": "email", + "proof_id": "9996c901-990d-4579-97f2-8f554f15751a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T16:02:01.839Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T19:02:41.057Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.017827S", - "compute_time_sec": 3.017827, + "compute_time": "P0DT00H00M07.442956S", + "compute_time_sec": 7.442956, "compute_times": { - "total": 0.8431280389195308, - "queued": 0.475505, - "create_cpp": 0.03038154193200171, - "file_setup": 0.8116235659690574 + "prove": 5.836867563997657, + "total": 7.448100458001136, + "queued": 0.429533, + "clean_up": 1.4180766429999494, + "file_setup": 0.02162611599851516, + "save_results": 0.0026051640015793964, + "export_calldata": 0.1440555890003452, + "generate_witness_c": 0.024428758002613904 }, - "file_size": 24822332, - "uploaded_file_name": "email.tar.gz", + "file_size": 1424, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", - "circuit_name": "email", + "proof_id": "33b06218-90bc-4d41-88b5-750c59905bf3", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T16:00:40.414Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:55:14.653Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.297335S", - "compute_time_sec": 0.297335, + "compute_time": "P0DT00H00M06.661497S", + "compute_time_sec": 6.661497, "compute_times": { - "total": 0.11431554611772299, - "queued": 0.292787, - "create_cpp": 0.014114855322986841, - "file_setup": 0.09887601295486093 + "prove": 6.102268026999809, + "total": 6.6664216089993715, + "queued": 0.565714, + "clean_up": 0.4257688830002735, + "file_setup": 0.017482515999290626, + "save_results": 0.0023082420011633076, + "export_calldata": 0.10708153700034018, + "generate_witness_c": 0.011075884998717811 }, - "file_size": 1416811, - "uploaded_file_name": "email.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", - "circuit_name": "email", + "proof_id": "3a2c08aa-8eab-4520-8ca6-c3c3d0a83be2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-14T15:56:00.936Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:50:30.630Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.259954S", - "compute_time_sec": 0.259954, + "compute_time": "P0DT00H00M03.081448S", + "compute_time_sec": 3.081448, "compute_times": { - "total": 0.12665929598733783, - "queued": 0.347236, - "create_cpp": 0.022852880065329373, - "file_setup": 0.10267018002923578 + "prove": 2.9426032099981967, + "total": 3.088212900001963, + "queued": 0.420681, + "clean_up": 0.004887817001872463, + "file_setup": 0.02144401899931836, + "save_results": 0.0024966839991975576, + "export_calldata": 0.10602649100110284, + "generate_witness_c": 0.010342882000259124 }, - "file_size": 1416809, - "uploaded_file_name": "email.tar.gz", + "file_size": 1421, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_name": "semaphore", + "proof_id": "bceefee1-b2fb-499e-85e7-faadbacd3530", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-12T16:06:15.388Z", - "num_proofs": 3, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:47:57.110Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M19.113279S", - "compute_time_sec": 19.113279, + "compute_time": "P0DT00H00M06.079750S", + "compute_time_sec": 6.07975, "compute_times": { - "total": 19.119710344821215, - "queued": 0.304946, - "clean_up": 0.05678791180253029, - "file_setup": 0.07778294384479523, - "create_r1cs": 0.6835691910237074, - "create_wasm": 1.5261333975940943, - "save_results": 0.01109285093843937, - "get_r1cs_info": 0.002000190317630768, - "groth16_setup": 15.561696534976363, - "export_verification_key": 1.1593163777142763, - "download_trusted_setup_file": 0.04080592654645443 + "prove": 5.86737551600163, + "total": 6.154982070998813, + "queued": 0.429452, + "clean_up": 0.05597285499970894, + "file_setup": 0.09039897099864902, + "save_results": 0.002586843998869881, + "export_calldata": 0.10872890400059987, + "generate_witness_c": 0.02942450800037477 }, - "file_size": 7081817, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", - "circuit_name": "semaphore", + "proof_id": "43e7d4c5-e79e-4cde-8216-16da4f7affd2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-12T00:14:36.781Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:43:03.195Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M21.300025S", - "compute_time_sec": 21.300025, + "compute_time": "P0DT00H00M07.389227S", + "compute_time_sec": 7.389227, "compute_times": { - "total": 21.306767147034407, - "queued": 0.293132, - "clean_up": 0.2600619550794363, - "file_setup": 0.10280199348926544, - "create_r1cs": 0.7014120128005743, - "create_wasm": 1.4916918445378542, - "save_results": 0.018025938421487808, - "get_r1cs_info": 0.003770437091588974, - "groth16_setup": 15.514674112200737, - "export_verification_key": 1.5598135478794575, - "download_trusted_setup_file": 1.654065664857626 + "prove": 6.096696715001599, + "total": 7.464751903000433, + "queued": 0.511846, + "clean_up": 1.1190660020001815, + "file_setup": 0.11400084699926083, + "save_results": 0.002097641001455486, + "export_calldata": 0.1070670169974619, + "generate_witness_c": 0.025039165000634966 }, - "file_size": 7081723, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 5554, - "num_outputs": 2, - "num_private_inputs": 42, - "num_public_inputs": 2 + "error": null }, { - "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", - "circuit_name": "semaphore", + "proof_id": "62da79ad-66f8-48b2-aee6-00576b9ef803", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-12T00:12:50.904Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:42:16.730Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.311458S", - "compute_time_sec": 0.311458, + "compute_time": "P0DT00H00M04.470973S", + "compute_time_sec": 4.470973, "compute_times": { - "total": 0.10177313163876534, - "queued": 0.288724, - "file_setup": 0.08924846164882183, - "create_wasm": 0.011913193389773369 + "prove": 4.176840074000211, + "total": 4.543050677002611, + "queued": 0.442897, + "clean_up": 0.13250841900298838, + "file_setup": 0.08925071300109266, + "save_results": 0.0035124769965477753, + "export_calldata": 0.10352052000234835, + "generate_witness_c": 0.03679126799761434 }, - "file_size": 1806552, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", - "circuit_name": "semaphore", + "proof_id": "92dafcbd-cf27-417d-9327-f7b96ba3b622", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-12T00:10:40.331Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:20:49.783Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.123483S", - "compute_time_sec": 0.123483, + "compute_time": "P0DT00H00M03.433125S", + "compute_time_sec": 3.433125, "compute_times": { - "total": 0.10418374836444855, - "queued": 0.24469, - "file_setup": 0.08240349031984806, - "create_wasm": 0.02108948677778244 + "prove": 2.5336668719537556, + "total": 3.4394880742765963, + "queued": 0.489776, + "clean_up": 0.7611926682293415, + "file_setup": 0.026595874689519405, + "save_results": 0.002055990044027567, + "export_calldata": 0.10428563365712762, + "generate_witness_c": 0.011344298254698515 }, - "file_size": 907287, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", - "circuit_name": "hashchecker", + "proof_id": "0dbdebd4-cb75-4d8e-a42b-70325cda5352", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T19:51:12.364Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:20:14.514Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M36.887947S", - "compute_time_sec": 36.887947, + "compute_time": "P0DT00H00M03.528936S", + "compute_time_sec": 3.528936, "compute_times": { - "total": 36.89425963815302, - "queued": 0.257023, - "clean_up": 0.04403446055948734, - "file_setup": 29.98060936667025, - "create_r1cs": 0.3443223936483264, - "create_wasm": 1.05553247500211, - "save_results": 0.006293457001447678, - "get_r1cs_info": 0.000581374391913414, - "groth16_setup": 4.288356346078217, - "export_verification_key": 1.171438716351986, - "download_trusted_setup_file": 0.002127542160451412 + "prove": 3.110340188955888, + "total": 3.5351677269209176, + "queued": 0.419368, + "clean_up": 0.268796571996063, + "file_setup": 0.023094948148354888, + "save_results": 0.0035148910246789455, + "export_calldata": 0.11105250404216349, + "generate_witness_c": 0.017875555902719498 }, - "file_size": 4238536, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", - "circuit_name": "hashchecker", + "proof_id": "3ad09ef0-94cd-426c-9c4a-1b89b70db8bf", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T19:35:47.834Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:20:06.963Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.242908S", - "compute_time_sec": 7.242908, + "compute_time": "P0DT00H00M03.694977S", + "compute_time_sec": 3.694977, "compute_times": { - "total": 7.252888669259846, - "queued": 0.315189, - "clean_up": 0.24440924916416407, - "file_setup": 0.10320598538964987, - "create_r1cs": 0.3493071682751179, - "create_wasm": 1.0848499182611704, - "save_results": 0.006677108816802502, - "get_r1cs_info": 0.0006677061319351196, - "groth16_setup": 4.277557077817619, - "export_verification_key": 1.1795741403475404, - "download_trusted_setup_file": 0.002051391638815403 + "prove": 2.1533293740358204, + "total": 3.699435847112909, + "queued": 0.422202, + "clean_up": 1.4061321169137955, + "file_setup": 0.01737229502759874, + "save_results": 0.0022125281393527985, + "export_calldata": 0.10844748793169856, + "generate_witness_c": 0.011587816989049315 }, - "file_size": 4238546, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1424, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_name": "hashchecker", + "proof_id": "5e53039b-53bb-4341-9f40-66ce2cfdaf8a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T19:32:24.516Z", - "num_proofs": 3, - "proving_scheme": "groth16", + "date_created": "2024-03-14T18:19:26.279Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.502453S", - "compute_time_sec": 8.502453, + "compute_time": "P0DT00H00M07.017894S", + "compute_time_sec": 7.017894, "compute_times": { - "total": 8.5082988422364, - "queued": 0.290802, - "clean_up": 0.24006511457264423, - "file_setup": 0.10109577886760235, - "create_r1cs": 0.374081764370203, - "create_wasm": 1.0719998348504305, - "save_results": 0.006332419812679291, - "get_r1cs_info": 0.0005895020440220833, - "groth16_setup": 4.342386241070926, - "export_verification_key": 1.097628473304212, - "download_trusted_setup_file": 1.2735503260046244 + "prove": 6.257673634216189, + "total": 7.024433021899313, + "queued": 0.481265, + "clean_up": 0.5901032220572233, + "file_setup": 0.04931790102273226, + "save_results": 0.0018759206868708134, + "export_calldata": 0.11300898808985949, + "generate_witness_c": 0.01208030991256237 }, - "file_size": 4238535, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1421, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 297, - "num_outputs": 0, - "num_private_inputs": 4, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", - "circuit_name": "hashchecker", + "proof_id": "97802862-57ba-4ac2-86fc-1bd7a769868d", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T19:14:59.465Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:18:50.915Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.379245S", - "compute_time_sec": 0.379245, + "compute_time": "P0DT00H00M07.471731S", + "compute_time_sec": 7.471731, "compute_times": { - "total": 0.10352941323071718, - "queued": 0.225145, - "file_setup": 0.0858859121799469, - "create_wasm": 0.016125368885695934 + "prove": 5.5631270671729, + "total": 7.477051115129143, + "queued": 0.423981, + "clean_up": 1.7722250861115754, + "file_setup": 0.01894038007594645, + "save_results": 0.0025429960805922747, + "export_calldata": 0.10855428781360388, + "generate_witness_c": 0.011164190946146846 }, - "file_size": 1804057, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1418, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", - "circuit_name": "hashchecker", + "proof_id": "e9ef60c8-8edf-43b7-920b-013f9c1ae340", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T19:09:18.022Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:16:21.616Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.300239S", - "compute_time_sec": 0.300239, + "compute_time": "P0DT00H00M06.389568S", + "compute_time_sec": 6.389568, "compute_times": { - "total": 0.09953181259334087, - "queued": 0.267199, - "file_setup": 0.08270685467869043, - "create_wasm": 0.01634138822555542 + "prove": 6.163996509974822, + "total": 6.394594549899921, + "queued": 0.723067, + "clean_up": 0.09152333298698068, + "file_setup": 0.01897246716544032, + "save_results": 0.001845130929723382, + "export_calldata": 0.10672607109881938, + "generate_witness_c": 0.011156109860166907 }, - "file_size": 1803953, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1422, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", - "circuit_name": "hashchecker", + "proof_id": "c91fc9d9-2377-489e-b08b-00746d7349a5", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T19:00:54.135Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:15:57.683Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.179718S", - "compute_time_sec": 0.179718, + "compute_time": "P0DT00H00M07.686728S", + "compute_time_sec": 7.686728, "compute_times": { - "total": 0.10090719535946846, - "queued": 0.251874, - "file_setup": 0.08464208338409662, - "create_wasm": 0.01588864903897047 + "prove": 5.851301555056125, + "total": 7.692835888359696, + "queued": 0.476854, + "clean_up": 0.9100839020684361, + "file_setup": 0.04193206364288926, + "save_results": 0.00230186665430665, + "verify_check": 0.755525354295969, + "export_calldata": 0.10952348494902253, + "generate_witness_c": 0.021680005360394716 }, - "file_size": 1803921, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1421, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", - "circuit_name": "hashchecker", + "proof_id": "e9843a60-d317-461a-9cd4-42fee37b8061", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T18:45:44.857Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:13:58.884Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.269437S", - "compute_time_sec": 0.269437, + "compute_time": "P0DT00H00M03.367759S", + "compute_time_sec": 3.367759, "compute_times": { - "total": 0.10417102556675673, - "queued": 0.229957, - "file_setup": 0.0870280647650361, - "create_wasm": 0.016761316917836666 + "prove": 2.230404970003292, + "total": 3.3720264660660177, + "queued": 0.431842, + "clean_up": 0.10493400786072016, + "file_setup": 0.0387162861879915, + "save_results": 0.002680066041648388, + "verify_check": 0.8437124330084771, + "export_calldata": 0.11436670809052885, + "generate_witness_c": 0.036693086847662926 }, - "file_size": 1803870, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1420, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", - "circuit_name": "hashchecker", + "proof_id": "903672bf-1424-4074-879f-dc3d8bcf7b09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T18:44:01.720Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T18:13:15.498Z", + "perform_verify": true, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119612S", - "compute_time_sec": 0.119612, + "compute_time": "P0DT00H00M02.740057S", + "compute_time_sec": 2.740057, "compute_times": { - "total": 0.07268805895000696, - "queued": 0.258881, - "file_setup": 0.056701790541410446, - "create_wasm": 0.015431713312864304 + "prove": 1.747901757946238, + "total": 2.7451698589138687, + "queued": 0.562105, + "clean_up": 0.004073107847943902, + "file_setup": 0.023931312141939998, + "save_results": 0.0021747678983956575, + "verify_check": 0.8415581181179732, + "export_calldata": 0.10904999403283, + "generate_witness_c": 0.016110152937471867 }, - "file_size": 905050, - "uploaded_file_name": "hashchecker.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", - "circuit_name": "semaphore", + "proof_id": "1bd36420-2d17-4820-b4c0-92bf65f5ac09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", "circuit_type": "circom", - "date_created": "2024-02-11T18:10:12.579Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-14T17:58:33.204Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.281287S", - "compute_time_sec": 0.281287, + "compute_time": "P0DT00H00M03.362596S", + "compute_time_sec": 3.362596, "compute_times": { - "total": 0.11563524045050144, - "queued": 0.305225, - "file_setup": 0.10166966635733843, - "create_wasm": 0.01360108982771635 + "prove": 3.2148704221472144, + "total": 3.3680821671150625, + "queued": 0.497672, + "clean_up": 0.00455889105796814, + "file_setup": 0.026814193930476904, + "save_results": 0.0023224949836730957, + "export_calldata": 0.10352779598906636, + "generate_witness_c": 0.015558663755655289 }, - "file_size": 1805983, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 1423, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", - "circuit_name": "semaphore", - "circuit_type": "circom", - "date_created": "2024-02-11T18:09:21.301Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "f6954f69-c080-4914-8ab1-a172dbf5e08a", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:57:15.133Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129729S", - "compute_time_sec": 0.129729, + "compute_time": "P0DT00H00M08.914962S", + "compute_time_sec": 8.914962, "compute_times": { - "total": 0.0997195653617382, - "queued": 0.324444, - "file_setup": 0.08716154284775257, - "create_wasm": 0.01209271140396595 + "total": 8.922231239033863, + "queued": 5.602238, + "clean_up": 2.959817972034216, + "file_setup": 5.245855151908472, + "create_proof": 0.7142050580587238, + "save_results": 0.001862589968368411 }, - "file_size": 1805970, - "uploaded_file_name": "semaphore.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", - "circuit_name": "circom-circuit", - "circuit_type": "circom", - "date_created": "2024-01-31T22:08:05.475Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d13035a3-05d0-42d7-8422-6347f69ecd53", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:52.106Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.909178S", - "compute_time_sec": 6.909178, + "compute_time": "P0DT00H01M26.708941S", + "compute_time_sec": 86.708941, "compute_times": { - "total": 6.960774548351765, - "queued": 24.976953, - "clean_up": 0.005624564364552498, - "create_cpp": 0.04884001612663269, - "file_setup": 0.23423208110034466, - "compile_cpp": 4.481184393167496, - "create_r1cs": 0.019831592217087746, - "save_results": 0.003675384446978569, - "get_r1cs_info": 0.0003577694296836853, - "groth16_setup": 1.123554177582264, - "export_verification_key": 1.0419799592345953, - "download_trusted_setup_file": 0.0011759810149669647 + "total": 86.71415681904182, + "queued": 0.405661, + "clean_up": 84.75011333706789, + "file_setup": 1.3262775791808963, + "create_proof": 0.6342818099074066, + "save_results": 0.0029313149861991405 }, - "file_size": 1651141, - "uploaded_file_name": "circom-circuit.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:04.723Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "fd61e981-bb5c-41e3-9428-705839e2abc8", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:06.075Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.286136S", - "compute_time_sec": 7.286136, + "compute_time": "P0DT00H01M26.510069S", + "compute_time_sec": 86.510069, "compute_times": { - "total": 7.340654090046883, - "queued": 38.074183, - "clean_up": 0.0009148658718913794, - "create_cpp": 0.04542793915607035, - "file_setup": 0.23204711498692632, - "compile_cpp": 4.680376983946189, - "create_r1cs": 0.008409275906160474, - "save_results": 0.0033105541951954365, - "get_r1cs_info": 0.0003685750998556614, - "groth16_setup": 1.178457418922335, - "export_verification_key": 1.1900099229533225, - "download_trusted_setup_file": 0.000988946994766593 + "total": 86.51598379341885, + "queued": 0.486451, + "clean_up": 85.12480085203424, + "file_setup": 0.762740237172693, + "create_proof": 0.6256867139600217, + "save_results": 0.002274115104228258 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 4398, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", "circuit_name": "circom-multiplier2", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:04.122Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:30:14.362Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.463866S", - "compute_time_sec": 7.463866, + "compute_time": "P0DT00H00M00.354832S", + "compute_time_sec": 0.354832, "compute_times": { - "total": 7.523294999962673, - "queued": 37.680306, - "clean_up": 0.0007766569033265114, - "create_cpp": 0.04011468309909105, - "file_setup": 0.2518389639444649, - "compile_cpp": 4.806413288926706, - "create_r1cs": 0.008677670964971185, - "save_results": 0.0031781040597707033, - "get_r1cs_info": 0.00039803609251976013, - "groth16_setup": 1.1818688770290464, - "export_verification_key": 1.2287184570450336, - "download_trusted_setup_file": 0.0010086549445986748 + "prove": 0.29524299991317093, + "total": 0.3594474990386516, + "queued": 0.452341, + "clean_up": 0.010387225076556206, + "file_setup": 0.0286204491276294, + "save_results": 0.0014043520204722881, + "generate_witness_c": 0.023333966033533216 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 714, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", "circuit_name": "circom-multiplier2", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:03.780Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:30:13.294Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.480065S", - "compute_time_sec": 7.480065, + "compute_time": "P0DT00H00M01.550727S", + "compute_time_sec": 1.550727, "compute_times": { - "total": 7.537460318999365, - "queued": 33.511443, - "clean_up": 0.0008328610565513372, - "create_cpp": 0.03915940411388874, - "file_setup": 0.2353337057866156, - "compile_cpp": 4.872832479886711, - "create_r1cs": 0.009635194204747677, - "save_results": 0.003330645151436329, - "get_r1cs_info": 0.00040896888822317123, - "groth16_setup": 1.243939558044076, - "export_verification_key": 1.1305532888509333, - "download_trusted_setup_file": 0.0010688810143619776 + "prove": 1.4871477987617254, + "total": 1.5559976021759212, + "queued": 0.41289, + "clean_up": 0.007122974842786789, + "file_setup": 0.03450894495472312, + "save_results": 0.002017392311245203, + "generate_witness_c": 0.024780604988336563 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", "circuit_name": "circom-multiplier2", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:03.625Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:29:28.396Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.465790S", - "compute_time_sec": 7.46579, + "compute_time": "P0DT00H00M01.462342S", + "compute_time_sec": 1.462342, "compute_times": { - "total": 7.517380404053256, - "queued": 32.017107, - "clean_up": 0.000841652974486351, - "create_cpp": 0.04037469998002052, - "file_setup": 0.21061871387064457, - "compile_cpp": 4.7562680810224265, - "create_r1cs": 0.008348200935870409, - "save_results": 0.0034994680900126696, - "get_r1cs_info": 0.000424881000071764, - "groth16_setup": 1.2855071290396154, - "export_verification_key": 1.210078198928386, - "download_trusted_setup_file": 0.0010237020906060934 + "prove": 1.3968474080320448, + "total": 1.4673558110371232, + "queued": 0.649073, + "clean_up": 0.012919645989313722, + "file_setup": 0.027661754051223397, + "save_results": 0.002378439996391535, + "generate_witness_c": 0.027080354979261756 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", "circuit_name": "circom-multiplier2", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", "circuit_type": "circom", - "date_created": "2024-01-31T18:15:02.471Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-12T00:29:12.038Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.143051S", - "compute_time_sec": 7.143051, + "compute_time": "P0DT00H00M00.378782S", + "compute_time_sec": 0.378782, "compute_times": { - "total": 7.1952535710297525, - "queued": 32.071917, - "clean_up": 0.0009264149703085423, - "create_cpp": 0.037378153996542096, - "file_setup": 0.22291689622215927, - "compile_cpp": 4.493842450901866, - "create_r1cs": 0.00868003792129457, - "save_results": 0.003541851881891489, - "get_r1cs_info": 0.0003536711446940899, - "groth16_setup": 1.202652727952227, - "export_verification_key": 1.2237500881310552, - "download_trusted_setup_file": 0.0009900499135255814 + "prove": 0.3259259192273021, + "total": 0.3832521459553391, + "queued": 0.467242, + "clean_up": 0.004174598027020693, + "file_setup": 0.018889360828325152, + "save_results": 0.0015030219219624996, + "generate_witness_c": 0.032414837973192334 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 714, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:02.067Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.182Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.529084S", - "compute_time_sec": 7.529084, + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, "compute_times": { - "total": 7.584393135970458, - "queued": 30.973415, - "clean_up": 0.00083908811211586, - "create_cpp": 0.04151515499688685, - "file_setup": 0.23193758307024837, - "compile_cpp": 4.9528708211146295, - "create_r1cs": 0.008621205808594823, - "save_results": 0.0033709488343447447, - "get_r1cs_info": 0.0004654980730265379, - "groth16_setup": 1.127253663027659, - "export_verification_key": 1.2159365471452475, - "download_trusted_setup_file": 0.0011964899022132158 + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:01.892Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.062Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.968285S", - "compute_time_sec": 6.968285, + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, "compute_times": { - "total": 7.020302023971453, - "queued": 24.589933, - "clean_up": 0.0007189519237726927, - "create_cpp": 0.039091327926144004, - "file_setup": 0.22075876407325268, - "compile_cpp": 4.478542160009965, - "create_r1cs": 0.008031236007809639, - "save_results": 0.0033459621481597424, - "get_r1cs_info": 0.00031445594504475594, - "groth16_setup": 1.1534762841183692, - "export_verification_key": 1.1147591178305447, - "download_trusted_setup_file": 0.000989275984466076 + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:01.304Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:36.018Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.959223S", - "compute_time_sec": 6.959223, + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, "compute_times": { - "total": 7.0112608759664, - "queued": 17.111301, - "clean_up": 0.0008735461160540581, - "create_cpp": 0.038755591958761215, - "file_setup": 0.24885913101024926, - "compile_cpp": 4.36299676517956, - "create_r1cs": 0.00803148397244513, - "save_results": 0.01730395178310573, - "get_r1cs_info": 0.0003368018660694361, - "groth16_setup": 1.1180529070552438, - "export_verification_key": 1.2148506320081651, - "download_trusted_setup_file": 0.0009600170888006687 + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:01.000Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.932Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.949886S", - "compute_time_sec": 6.949886, + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, "compute_times": { - "total": 7.000236368039623, - "queued": 1.134467, - "clean_up": 0.0007571689784526825, - "create_cpp": 0.03813181212171912, - "file_setup": 0.39067235100083053, - "compile_cpp": 4.379259012872353, - "create_r1cs": 0.008045257069170475, - "save_results": 0.037871989188715816, - "get_r1cs_info": 0.0003408279735594988, - "groth16_setup": 1.0681434420403093, - "export_verification_key": 1.0757975298911333, - "download_trusted_setup_file": 0.0009711629245430231 + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 }, - "file_size": 225416, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:00.922Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.924Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.086134S", - "compute_time_sec": 7.086134, + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, "compute_times": { - "total": 7.139805332990363, - "queued": 9.283956, - "clean_up": 0.0007637820672243834, - "create_cpp": 0.040777466958388686, - "file_setup": 0.22701866691932082, - "compile_cpp": 4.5694026600103825, - "create_r1cs": 0.008620185079053044, - "save_results": 0.009906678926199675, - "get_r1cs_info": 0.0005167280323803425, - "groth16_setup": 1.0815790109336376, - "export_verification_key": 1.1996698069851846, - "download_trusted_setup_file": 0.0012109570670872927 + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2024-01-17T00:39:38.679Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.909Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.550840S", - "compute_time_sec": 7.55084, + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, "compute_times": { - "total": 7.629153113812208, - "queued": 15.012343, - "clean_up": 0.011455003172159195, - "create_cpp": 0.054636724293231964, - "file_setup": 0.31103159487247467, - "compile_cpp": 4.492543734610081, - "create_r1cs": 0.0336969792842865, - "save_results": 0.005911210551857948, - "get_r1cs_info": 0.0004208497703075409, - "groth16_setup": 1.3556907046586275, - "export_verification_key": 1.3620027527213097, - "download_trusted_setup_file": 0.0013344846665859222 + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 }, - "file_size": 1650629, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:27:15.352Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.810Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.078009S", - "compute_time_sec": 8.078009, + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, "compute_times": { - "total": 8.165162647143006, - "queued": 1.05453, - "clean_up": 0.001927914097905159, - "create_cpp": 0.05209779180586338, - "file_setup": 0.2735048495233059, - "compile_cpp": 4.798323042690754, - "create_r1cs": 0.018848145380616188, - "save_results": 0.00658784992992878, - "get_r1cs_info": 0.0008379388600587845, - "groth16_setup": 1.6222364120185375, - "export_verification_key": 1.38789046369493, - "download_trusted_setup_file": 0.0024561677128076553 + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:27:14.083Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.800Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.904210S", - "compute_time_sec": 7.90421, + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, "compute_times": { - "total": 7.990685863420367, - "queued": 1.148767, - "clean_up": 0.0017737876623868942, - "create_cpp": 0.04771621339023113, - "file_setup": 0.2793459966778755, - "compile_cpp": 4.619792276993394, - "create_r1cs": 0.00932052917778492, - "save_results": 0.006265198811888695, - "get_r1cs_info": 0.0004815235733985901, - "groth16_setup": 1.4397705420851707, - "export_verification_key": 1.584412407130003, - "download_trusted_setup_file": 0.0015385709702968597 + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:27:14.042Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.792Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.840020S", - "compute_time_sec": 7.84002, + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, "compute_times": { - "total": 7.916158145293593, - "queued": 1.103501, - "clean_up": 0.001588582992553711, - "create_cpp": 0.05656779184937477, - "file_setup": 0.2618618682026863, - "compile_cpp": 4.655229337513447, - "create_r1cs": 0.010038148611783981, - "save_results": 0.005318811163306236, - "get_r1cs_info": 0.0004153270274400711, - "groth16_setup": 1.3863549754023552, - "export_verification_key": 1.5370171926915646, - "download_trusted_setup_file": 0.0013035386800765991 + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:26:26.125Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.637Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.895332S", - "compute_time_sec": 7.895332, + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, "compute_times": { - "total": 7.985105384141207, - "queued": 1.097711, - "clean_up": 0.0017092283815145493, - "create_cpp": 0.05560790188610554, - "file_setup": 0.27359912544488907, - "compile_cpp": 4.84467164054513, - "create_r1cs": 0.01020035706460476, - "save_results": 0.00596289336681366, - "get_r1cs_info": 0.0003344062715768814, - "groth16_setup": 1.3516457378864288, - "export_verification_key": 1.4395998753607273, - "download_trusted_setup_file": 0.001010250300168991 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T18:26:25.495Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.620Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.731496S", - "compute_time_sec": 7.731496, + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, "compute_times": { - "total": 7.827601557597518, - "queued": 1.26957, - "clean_up": 0.002000821754336357, - "create_cpp": 0.04701829329133034, - "file_setup": 0.2621183265000582, - "compile_cpp": 4.725081695243716, - "create_r1cs": 0.011297162622213364, - "save_results": 0.005976244807243347, - "get_r1cs_info": 0.0006684809923171997, - "groth16_setup": 1.4255939163267612, - "export_verification_key": 1.3449707236140966, - "download_trusted_setup_file": 0.0024210847914218903 + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 }, - "file_size": 225430, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:31:55.438Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.593Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.586921S", - "compute_time_sec": 7.586921, + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, "compute_times": { - "total": 7.663304785266519, - "queued": 1.132337, - "clean_up": 0.0015752892941236496, - "create_cpp": 0.049899373203516006, - "file_setup": 0.22959892638027668, - "compile_cpp": 4.780468979850411, - "create_r1cs": 0.017419403418898582, - "save_results": 0.0054653361439704895, - "get_r1cs_info": 0.0007719267159700394, - "groth16_setup": 1.2644738126546144, - "export_verification_key": 1.310561291873455, - "download_trusted_setup_file": 0.0026084203273057938 + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:27:56.593Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.516Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.801205S", - "compute_time_sec": 7.801205, + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, "compute_times": { - "total": 7.875548103824258, - "queued": 1.098988, - "clean_up": 0.0017300937324762344, - "create_cpp": 0.05396237596869469, - "file_setup": 0.2385635208338499, - "compile_cpp": 4.6406055726110935, - "create_r1cs": 0.016733812168240547, - "save_results": 0.004983868449926376, - "get_r1cs_info": 0.0006270240992307663, - "groth16_setup": 1.3868273310363293, - "export_verification_key": 1.528601661324501, - "download_trusted_setup_file": 0.002437632530927658 + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:27:42.490Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.491Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.531215S", - "compute_time_sec": 7.531215, + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, "compute_times": { - "total": 7.6094263680279255, - "queued": 1.133009, - "clean_up": 0.001713564619421959, - "create_cpp": 0.04710027575492859, - "file_setup": 0.23515290580689907, - "compile_cpp": 4.696669522672892, - "create_r1cs": 0.017408769577741623, - "save_results": 0.005742281675338745, - "get_r1cs_info": 0.0006468463689088821, - "groth16_setup": 1.3201909139752388, - "export_verification_key": 1.2817781921476126, - "download_trusted_setup_file": 0.0024629440158605576 + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:27:26.943Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.478Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.713700S", - "compute_time_sec": 7.7137, + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, "compute_times": { - "total": 7.7915890868753195, - "queued": 1.17603, - "clean_up": 0.001603648066520691, - "create_cpp": 0.04629753343760967, - "file_setup": 0.2314635906368494, - "compile_cpp": 4.7291872799396515, - "create_r1cs": 0.016094380989670753, - "save_results": 0.005229661241173744, - "get_r1cs_info": 0.0004699360579252243, - "groth16_setup": 1.3847032357007265, - "export_verification_key": 1.3747948426753283, - "download_trusted_setup_file": 0.0012649912387132645 + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:24:25.201Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.414Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.782942S", - "compute_time_sec": 7.782942, + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, "compute_times": { - "total": 7.858149649575353, - "queued": 1.192228, - "clean_up": 0.0016285404562950134, - "create_cpp": 0.04751185514032841, - "file_setup": 0.22963756695389748, - "compile_cpp": 4.810557749122381, - "create_r1cs": 0.011191016063094139, - "save_results": 0.0053499843925237656, - "get_r1cs_info": 0.0006842408329248428, - "groth16_setup": 1.305834548547864, - "export_verification_key": 1.4425791203975677, - "download_trusted_setup_file": 0.0027836784720420837 + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:24:08.702Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.362Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.712942S", - "compute_time_sec": 7.712942, + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, "compute_times": { - "total": 7.788311326876283, - "queued": 1.222064, - "clean_up": 0.0015964601188898087, - "create_cpp": 0.048168059438467026, - "file_setup": 0.24294559471309185, - "compile_cpp": 4.80493832193315, - "create_r1cs": 0.01979799196124077, - "save_results": 0.005484664812684059, - "get_r1cs_info": 0.0007523689419031143, - "groth16_setup": 1.360052939504385, - "export_verification_key": 1.3015912808477879, - "download_trusted_setup_file": 0.00248897448182106 + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:23:55.055Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.356Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.504987S", - "compute_time_sec": 7.504987, + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, "compute_times": { - "total": 7.582275737076998, - "queued": 1.111203, - "clean_up": 0.00203564390540123, - "create_cpp": 0.04740658402442932, - "file_setup": 0.2326672412455082, - "compile_cpp": 4.5253369603306055, - "create_r1cs": 0.015371032059192657, - "save_results": 0.0063849929720163345, - "get_r1cs_info": 0.0003808550536632538, - "groth16_setup": 1.3611575067043304, - "export_verification_key": 1.3897777944803238, - "download_trusted_setup_file": 0.0012431517243385315 + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:23:31.285Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.294Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.404341S", - "compute_time_sec": 7.404341, + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, "compute_times": { - "total": 7.481531243771315, - "queued": 1.164668, - "clean_up": 0.001758268103003502, - "create_cpp": 0.054409828037023544, - "file_setup": 0.228825144469738, - "compile_cpp": 4.561935219913721, - "create_r1cs": 0.01824786141514778, - "save_results": 0.005484595894813538, - "get_r1cs_info": 0.000652119517326355, - "groth16_setup": 1.3237749002873898, - "export_verification_key": 1.2835038527846336, - "download_trusted_setup_file": 0.0024792589247226715 + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:23:11.647Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.184Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.506243S", - "compute_time_sec": 7.506243, + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, "compute_times": { - "total": 7.5825384352356195, - "queued": 1.123872, - "clean_up": 0.0020943544805049896, - "create_cpp": 0.055948369204998016, - "file_setup": 0.2336848620325327, - "compile_cpp": 4.572340337559581, - "create_r1cs": 0.011611813679337502, - "save_results": 0.006018133834004402, - "get_r1cs_info": 0.000943819060921669, - "groth16_setup": 1.345878291875124, - "export_verification_key": 1.3496504835784435, - "download_trusted_setup_file": 0.003846803680062294 + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:21:38.135Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.144Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.490694S", - "compute_time_sec": 7.490694, + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, "compute_times": { - "total": 7.569987336173654, - "queued": 1.179116, - "clean_up": 0.002130907028913498, - "create_cpp": 0.04748098365962505, - "file_setup": 0.2508866246789694, - "compile_cpp": 4.549122573807836, - "create_r1cs": 0.01635313406586647, - "save_results": 0.006561141461133957, - "get_r1cs_info": 0.0007531233131885529, - "groth16_setup": 1.3041542451828718, - "export_verification_key": 1.389599822461605, - "download_trusted_setup_file": 0.002447204664349556 + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:21:25.337Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.120Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.714617S", - "compute_time_sec": 7.714617, + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, "compute_times": { - "total": 7.78945274092257, - "queued": 1.109203, - "clean_up": 0.0014195535331964493, - "create_cpp": 0.0532410591840744, - "file_setup": 0.2293473482131958, - "compile_cpp": 4.6692238971591, - "create_r1cs": 0.011476732790470123, - "save_results": 0.0056864432990550995, - "get_r1cs_info": 0.0009230468422174454, - "groth16_setup": 1.4699061587452888, - "export_verification_key": 1.3452017772942781, - "download_trusted_setup_file": 0.0025169849395751953 + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:21:07.305Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.062Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.675740S", - "compute_time_sec": 7.67574, + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, "compute_times": { - "total": 7.751045668497682, - "queued": 1.129433, - "clean_up": 0.0018131695687770844, - "create_cpp": 0.04765470325946808, - "file_setup": 0.24081012606620789, - "compile_cpp": 4.558540068566799, - "create_r1cs": 0.01800389215350151, - "save_results": 0.005974184721708298, - "get_r1cs_info": 0.0006712991744279861, - "groth16_setup": 1.373840706422925, - "export_verification_key": 1.500656010583043, - "download_trusted_setup_file": 0.002558337524533272 + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:19:55.212Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.027Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.062178S", - "compute_time_sec": 8.062178, + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, "compute_times": { - "total": 8.142503958195448, - "queued": 1.149423, - "clean_up": 0.0018021930009126663, - "create_cpp": 0.04863681085407734, - "file_setup": 0.23515266925096512, - "compile_cpp": 5.073512123897672, - "create_r1cs": 0.018286654725670815, - "save_results": 0.004714170470833778, - "get_r1cs_info": 0.0007165037095546722, - "groth16_setup": 1.3629947770386934, - "export_verification_key": 1.3937593009322882, - "download_trusted_setup_file": 0.0024403519928455353 + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:18:49.431Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:35.006Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.693335S", - "compute_time_sec": 7.693335, + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, "compute_times": { - "total": 7.781858703121543, - "queued": 1.116293, - "clean_up": 0.0017208773642778397, - "create_cpp": 0.05256185121834278, - "file_setup": 0.2557890061289072, - "compile_cpp": 4.588302677497268, - "create_r1cs": 0.010025406256318092, - "save_results": 0.0073493290692567825, - "get_r1cs_info": 0.0005155783146619797, - "groth16_setup": 1.4648161549121141, - "export_verification_key": 1.3988297637552023, - "download_trusted_setup_file": 0.0014446470886468887 + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "315b9559-c461-49ab-b089-885151347107", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:18:35.546Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.963Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.469497S", - "compute_time_sec": 7.469497, + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, "compute_times": { - "total": 7.547948880121112, - "queued": 1.248019, - "clean_up": 0.0015904363244771957, - "create_cpp": 0.0542209018021822, - "file_setup": 0.23366319201886654, - "compile_cpp": 4.586157588288188, - "create_r1cs": 0.018297061324119568, - "save_results": 0.005786450579762459, - "get_r1cs_info": 0.0006671342998743057, - "groth16_setup": 1.364309385418892, - "export_verification_key": 1.2802996914833784, - "download_trusted_setup_file": 0.002457818016409874 + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:17:44.931Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.909Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.473321S", - "compute_time_sec": 7.473321, + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, "compute_times": { - "total": 7.547661663964391, - "queued": 1.119777, - "clean_up": 0.000894695520401001, - "create_cpp": 0.05381825938820839, - "file_setup": 0.24185010977089405, - "compile_cpp": 4.524175513535738, - "create_r1cs": 0.017902396619319916, - "save_results": 0.004841597750782967, - "get_r1cs_info": 0.0008537471294403076, - "groth16_setup": 1.3410304505378008, - "export_verification_key": 1.3593134097754955, - "download_trusted_setup_file": 0.0025420039892196655 + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:16:28.531Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.896Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.690520S", - "compute_time_sec": 7.69052, + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, "compute_times": { - "total": 7.770463544875383, - "queued": 5.453395, - "clean_up": 0.0014936216175556183, - "create_cpp": 0.05430406704545021, - "file_setup": 0.23710034973919392, - "compile_cpp": 4.83283169940114, - "create_r1cs": 0.019483311101794243, - "save_results": 0.0048837121576070786, - "get_r1cs_info": 0.0006661657243967056, - "groth16_setup": 1.3555313758552074, - "export_verification_key": 1.2612487897276878, - "download_trusted_setup_file": 0.0024483725428581238 + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:16:22.368Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.873Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.866076S", - "compute_time_sec": 7.866076, + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, "compute_times": { - "total": 7.941894210875034, - "queued": 2.535538, - "clean_up": 0.0015988927334547043, - "create_cpp": 0.047808632254600525, - "file_setup": 0.27344413474202156, - "compile_cpp": 4.95066586881876, - "create_r1cs": 0.018682880327105522, - "save_results": 0.005130548030138016, - "get_r1cs_info": 0.0007092785090208054, - "groth16_setup": 1.3249204363673925, - "export_verification_key": 1.3161130715161562, - "download_trusted_setup_file": 0.0024131685495376587 + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:16:14.715Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.817Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.791801S", - "compute_time_sec": 7.791801, + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, "compute_times": { - "total": 7.869745476171374, - "queued": 1.134289, - "clean_up": 0.001745712012052536, - "create_cpp": 0.05209941044449806, - "file_setup": 0.2489724848419428, - "compile_cpp": 4.845416411757469, - "create_r1cs": 0.019992178305983543, - "save_results": 0.005489939823746681, - "get_r1cs_info": 0.0008604265749454498, - "groth16_setup": 1.321467338129878, - "export_verification_key": 1.3704753294587135, - "download_trusted_setup_file": 0.002767615020275116 + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:13:40.405Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.806Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.405829S", - "compute_time_sec": 7.405829, + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, "compute_times": { - "total": 7.476599719375372, - "queued": 1.131337, - "clean_up": 0.0016632992774248123, - "create_cpp": 0.047042084857821465, - "file_setup": 0.2487345952540636, - "compile_cpp": 4.6313931327313185, - "create_r1cs": 0.015436878427863121, - "save_results": 0.0051026009023189545, - "get_r1cs_info": 0.0007460527122020721, - "groth16_setup": 1.2485730070620775, - "export_verification_key": 1.274957099929452, - "download_trusted_setup_file": 0.002432204782962799 + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:13:12.201Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.774Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.489214S", - "compute_time_sec": 7.489214, + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, "compute_times": { - "total": 7.565977169200778, - "queued": 1.146208, - "clean_up": 0.0016220677644014359, - "create_cpp": 0.0601615309715271, - "file_setup": 0.23689182102680206, - "compile_cpp": 4.628598712384701, - "create_r1cs": 0.01757240854203701, - "save_results": 0.005794510245323181, - "get_r1cs_info": 0.0007582679390907288, - "groth16_setup": 1.3360584639012814, - "export_verification_key": 1.2756301537156105, - "download_trusted_setup_file": 0.0024445243179798126 + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:11:41.174Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.580861S", - "compute_time_sec": 7.580861, + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, "compute_times": { - "total": 7.656488731503487, - "queued": 1.097627, - "clean_up": 0.0016867052763700485, - "create_cpp": 0.04802015610039234, - "file_setup": 0.24031525664031506, - "compile_cpp": 4.603576384484768, - "create_r1cs": 0.016298340633511543, - "save_results": 0.005427641794085503, - "get_r1cs_info": 0.0008495114743709564, - "groth16_setup": 1.44757186062634, - "export_verification_key": 1.2892759256064892, - "download_trusted_setup_file": 0.0029640905559062958 + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:06:12.999Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.468363S", - "compute_time_sec": 7.468363, + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, "compute_times": { - "total": 7.544480819255114, - "queued": 1.143003, - "clean_up": 0.0016008112579584122, - "create_cpp": 0.05341379716992378, - "file_setup": 0.22887434996664524, - "compile_cpp": 4.706471795216203, - "create_r1cs": 0.01654653809964657, - "save_results": 0.006104299798607826, - "get_r1cs_info": 0.0004962123930454254, - "groth16_setup": 1.2300675436854362, - "export_verification_key": 1.299116501584649, - "download_trusted_setup_file": 0.0012989863753318787 + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:05:23.917Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.759975S", - "compute_time_sec": 7.759975, + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, "compute_times": { - "total": 7.83847594819963, - "queued": 1.10425, - "clean_up": 0.001688338816165924, - "create_cpp": 0.04832325503230095, - "file_setup": 0.2314634695649147, - "compile_cpp": 4.819877410307527, - "create_r1cs": 0.015260979533195496, - "save_results": 0.006293922662734985, - "get_r1cs_info": 0.0006519351154565811, - "groth16_setup": 1.3941991496831179, - "export_verification_key": 1.3179172277450562, - "download_trusted_setup_file": 0.0024711433798074722 + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:04:56.095Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.406479S", - "compute_time_sec": 7.406479, + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, "compute_times": { - "total": 7.483620099723339, - "queued": 1.177252, - "clean_up": 0.001823868602514267, - "create_cpp": 0.045437244698405266, - "file_setup": 0.24590439908206463, - "compile_cpp": 4.595620075240731, - "create_r1cs": 0.016566921025514603, - "save_results": 0.005170263350009918, - "get_r1cs_info": 0.00036842189729213715, - "groth16_setup": 1.3206052239984274, - "export_verification_key": 1.2503768727183342, - "download_trusted_setup_file": 0.0012859292328357697 + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:02:24.098Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.616668S", - "compute_time_sec": 7.616668, + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, "compute_times": { - "total": 7.693107321858406, - "queued": 1.109472, - "clean_up": 0.0016501452773809433, - "create_cpp": 0.05231943354010582, - "file_setup": 0.23242460750043392, - "compile_cpp": 4.745099242776632, - "create_r1cs": 0.019039543345570564, - "save_results": 0.0055495090782642365, - "get_r1cs_info": 0.0005333274602890015, - "groth16_setup": 1.285587765276432, - "export_verification_key": 1.3491349909454584, - "download_trusted_setup_file": 0.0012811962515115738 + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:01:40.573Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.484601S", - "compute_time_sec": 7.484601, + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, "compute_times": { - "total": 7.560129789635539, - "queued": 1.111989, - "clean_up": 0.0016574747860431671, - "create_cpp": 0.04680110327899456, - "file_setup": 0.23556585423648357, - "compile_cpp": 4.649155827239156, - "create_r1cs": 0.0172688327729702, - "save_results": 0.0043340642005205154, - "get_r1cs_info": 0.0007321778684854507, - "groth16_setup": 1.310708336532116, - "export_verification_key": 1.2910060994327068, - "download_trusted_setup_file": 0.002450576052069664 + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:01:12.249Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.651112S", - "compute_time_sec": 7.651112, + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, "compute_times": { - "total": 7.727200584486127, - "queued": 1.123557, - "clean_up": 0.0017795618623495102, - "create_cpp": 0.05026000365614891, - "file_setup": 0.2426721192896366, - "compile_cpp": 4.745914597064257, - "create_r1cs": 0.010544411838054657, - "save_results": 0.006228795275092125, - "get_r1cs_info": 0.0007463283836841583, - "groth16_setup": 1.2904645502567291, - "export_verification_key": 1.375608079135418, - "download_trusted_setup_file": 0.002477342262864113 + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T16:00:46.395Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.560954S", - "compute_time_sec": 7.560954, + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, "compute_times": { - "total": 7.63792067207396, - "queued": 1.118023, - "clean_up": 0.0011309515684843063, - "create_cpp": 0.05688653700053692, - "file_setup": 0.24240840040147305, - "compile_cpp": 4.653197390958667, - "create_r1cs": 0.01638108491897583, - "save_results": 0.005740107968449593, - "get_r1cs_info": 0.0008277762681245804, - "groth16_setup": 1.3475805260241032, - "export_verification_key": 1.3108154106885195, - "download_trusted_setup_file": 0.0024681556969881058 + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:59:57.004Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.474006S", - "compute_time_sec": 7.474006, + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, "compute_times": { - "total": 7.551057329401374, - "queued": 1.13943, - "clean_up": 0.0015815366059541702, - "create_cpp": 0.04650958999991417, - "file_setup": 0.2340244445949793, - "compile_cpp": 4.627846229821444, - "create_r1cs": 0.01713145151734352, - "save_results": 0.005708448588848114, - "get_r1cs_info": 0.0004803799092769623, - "groth16_setup": 1.2327740285545588, - "export_verification_key": 1.3827583715319633, - "download_trusted_setup_file": 0.001740090548992157 + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:59:11.428Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.631306S", - "compute_time_sec": 7.631306, + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, "compute_times": { - "total": 7.710235442966223, - "queued": 1.386075, - "clean_up": 0.002034531906247139, - "create_cpp": 0.04852190800011158, - "file_setup": 0.24500983953475952, - "compile_cpp": 4.704880395904183, - "create_r1cs": 0.010721936821937561, - "save_results": 0.0055764298886060715, - "get_r1cs_info": 0.0006168503314256668, - "groth16_setup": 1.448454624041915, - "export_verification_key": 1.2422269843518734, - "download_trusted_setup_file": 0.0016173608601093292 + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:58:05.906Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.838875S", - "compute_time_sec": 7.838875, + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, "compute_times": { - "total": 7.916816979646683, - "queued": 1.13646, - "clean_up": 0.0017937906086444855, - "create_cpp": 0.04604017175734043, - "file_setup": 0.25198566168546677, - "compile_cpp": 4.960162149742246, - "create_r1cs": 0.017025411128997803, - "save_results": 0.006269412115216255, - "get_r1cs_info": 0.0005705077201128006, - "groth16_setup": 1.3184205926954746, - "export_verification_key": 1.312853867188096, - "download_trusted_setup_file": 0.0013548657298088074 + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-01-14T15:10:36.167Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.494759S", - "compute_time_sec": 7.494759, + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, "compute_times": { - "total": 7.577943356707692, - "queued": 15.661842, - "clean_up": 0.0015942566096782684, - "create_cpp": 0.046944042667746544, - "file_setup": 0.23811103031039238, - "compile_cpp": 4.708118129521608, - "create_r1cs": 0.01638900674879551, - "save_results": 0.00562669150531292, - "get_r1cs_info": 0.0006911307573318481, - "groth16_setup": 1.2832315117120743, - "export_verification_key": 1.2741688843816519, - "download_trusted_setup_file": 0.0024611055850982666 + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, { - "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-19T00:01:17.518Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.829640S", - "compute_time_sec": 14.82964, + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, "compute_times": { - "total": 16.11652692966163, - "queued": 21.506947, - "clean_up": 0.00970545969903469, - "create_cpp": 0.07700999267399311, - "file_setup": 1.6147372927516699, - "compile_cpp": 7.614376271143556, - "create_r1cs": 0.154385132715106, - "save_results": 0.005050705745816231, - "get_r1cs_info": 0.0008396394550800323, - "groth16_setup": 3.3179074060171843, - "export_verification_key": 3.320323884487152, - "download_trusted_setup_file": 0.0015841908752918243 + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 }, - "file_size": 1719996, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-18T23:44:10.716Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.500698S", - "compute_time_sec": 8.500698, + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, "compute_times": { - "total": 9.787439923733473, - "queued": 1.294188, - "clean_up": 0.013815293088555336, - "create_cpp": 0.06775672547519207, - "file_setup": 1.5670747924596071, - "compile_cpp": 5.217347398400307, - "create_r1cs": 0.03056485578417778, - "save_results": 0.006023731082677841, - "get_r1cs_info": 0.0007077902555465698, - "groth16_setup": 1.4515825044363737, - "export_verification_key": 1.4297321401536465, - "download_trusted_setup_file": 0.0024385377764701843 + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 }, - "file_size": 1719996, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-18T23:42:13.949Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.803270S", - "compute_time_sec": 13.80327, + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, "compute_times": { - "total": 15.069168468937278, - "queued": 1.279988, - "clean_up": 0.010122904554009438, - "create_cpp": 0.12114278227090836, - "file_setup": 1.5526539776474237, - "compile_cpp": 7.2996343690901995, - "create_r1cs": 0.07337300851941109, - "save_results": 0.10131139867007732, - "get_r1cs_info": 0.0005603395402431488, - "groth16_setup": 2.957974351942539, - "export_verification_key": 2.9508997034281492, - "download_trusted_setup_file": 0.0010457858443260193 + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 }, - "file_size": 1719996, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-18T23:36:30.574Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.521983S", - "compute_time_sec": 13.521983, + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, "compute_times": { - "total": 14.785143690183759, - "queued": 27.741822, - "clean_up": 0.00823935680091381, - "create_cpp": 0.10304738581180573, - "file_setup": 1.505700759589672, - "compile_cpp": 7.270766986533999, - "create_r1cs": 0.07485816441476345, - "save_results": 0.0029987990856170654, - "get_r1cs_info": 0.0006173755973577499, - "groth16_setup": 2.891835331916809, - "export_verification_key": 2.924815448001027, - "download_trusted_setup_file": 0.0017245206981897354 + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 }, - "file_size": 1719981, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", - "circuit_name": "my-circuit", - "circuit_type": "circom", - "date_created": "2023-12-17T19:35:22.108Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.399840S", - "compute_time_sec": 13.39984, + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, "compute_times": { - "total": 14.661026014015079, - "queued": 20.325028, - "clean_up": 0.005762990564107895, - "create_cpp": 0.07418840192258358, - "file_setup": 1.5508117154240608, - "compile_cpp": 7.441567042842507, - "create_r1cs": 0.0411736685782671, - "save_results": 0.003770258277654648, - "get_r1cs_info": 0.0007237941026687622, - "groth16_setup": 2.749024560675025, - "export_verification_key": 2.7917208038270473, - "download_trusted_setup_file": 0.0016946438699960709 + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 }, - "file_size": 1650609, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", - "circuit_name": "my-circuit", - "circuit_type": "noir", - "date_created": "2023-12-17T18:49:58.483Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M04.373831S", - "compute_time_sec": 4.373831, + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, "compute_times": { - "total": 5.606248481199145, - "queued": 17.784967, - "clean_up": 0.000952577218413353, - "file_setup": 1.4592411685734987, - "nargo_checks": 4.145449373871088 + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 }, - "file_size": 724, - "uploaded_file_name": "my-circuit.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "my_circuit", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:44:44.083Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.215446S", - "compute_time_sec": 0.215446, + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, "compute_times": { - "total": 1.39835050329566, - "queued": 1.360483, - "file_setup": 1.395031625404954, - "nargo_checks": 0.003077572211623192 + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 }, - "file_size": 742, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:43:51.455Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.479235S", - "compute_time_sec": 1.479235, + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, "compute_times": { - "total": 2.6415348909795284, - "queued": 1.942949, - "clean_up": 0.0005522631108760834, - "file_setup": 1.3729195687919855, - "nargo_checks": 1.2678131125867367 + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 }, - "file_size": 741, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "Hi2noir_Hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:43:04.488Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.415435S", - "compute_time_sec": 1.415435, + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, "compute_times": { - "total": 2.570197055116296, - "queued": 1.245783, - "clean_up": 0.00041295401751995087, - "file_setup": 1.3385441917926073, - "nargo_checks": 1.2309921570122242 + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 }, - "file_size": 737, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "2noir_Hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:42:44.606Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.405646S", - "compute_time_sec": 1.405646, + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, "compute_times": { - "total": 2.5658690985292196, - "queued": 1.186038, - "clean_up": 0.00047394633293151855, - "file_setup": 1.3717324659228325, - "nargo_checks": 1.1934157982468605 + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 }, - "file_size": 736, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "2noir_hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:42:17.783Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.462830S", - "compute_time_sec": 1.46283, + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, "compute_times": { - "total": 2.6199891455471516, - "queued": 1.25179, - "clean_up": 0.00041804835200309753, - "file_setup": 1.3820457514375448, - "nargo_checks": 1.2372824884951115 + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 }, - "file_size": 739, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "_noir_hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", - "circuit_name": "_2noir-hi", - "circuit_type": "noir", - "date_created": "2023-12-13T16:41:44.867Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.422583S", - "compute_time_sec": 1.422583, + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, "compute_times": { - "total": 2.580868471413851, - "queued": 1.187135, - "clean_up": 0.00045336224138736725, - "file_setup": 1.360721966251731, - "nargo_checks": 1.2194277700036764 + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 }, - "file_size": 727, - "uploaded_file_name": "_2noir-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "noir_hi", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "9c8a486c-4c18-4a7a-8e79-8100500a2660", - "circuit_name": "_2halo-hi", - "circuit_type": "halo2", - "date_created": "2023-12-13T16:37:57.886Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H01M28.284700S", - "compute_time_sec": 88.2847, + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, "compute_times": { - "total": 89.44666199572384, - "queued": 2.165129, - "compile": 87.56292228028178, - "clean_up": 0.07346387021243572, - "file_setup": 1.3726620227098465, - "save_results": 0.04124521091580391, - "generate_keys": 0.3959560953080654, - "download_trusted_setup_file": 0.00015112943947315216 + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 }, - "file_size": 44933087, - "uploaded_file_name": "_2halo-hi.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "_2halo_hi::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", - "circuit_name": "_noir-circuit-32", - "circuit_type": "noir", - "date_created": "2023-12-13T16:31:57.140Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.154282S", - "compute_time_sec": 6.154282, + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, "compute_times": { - "total": 7.310710787773132, - "queued": 18.86527, - "clean_up": 0.00043790414929389954, - "file_setup": 1.3356177434325218, - "nargo_checks": 5.974256757646799 + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 }, - "file_size": 736, - "uploaded_file_name": "_noir-circuit-32.tar.gz", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 7, - "nargo_package_name": "noir_circuit_32", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "ec12dd1d-75be-4729-bdd4-0ae924f2c8e6", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-11T22:14:30.186Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H01M20.814859S", - "compute_time_sec": 80.814859, + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, "compute_times": { - "total": 82.05906438827515, - "queued": 1.410777, - "compile": 80.08948761411011, - "clean_up": 0.08174648880958557, - "file_setup": 1.495840536430478, - "save_results": 0.04187909886240959, - "generate_keys": 0.3492503445595503, - "download_trusted_setup_file": 0.00032539665699005127 + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 }, - "file_size": 44934523, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "14124f66-b386-4da6-94c3-7c9504e59b55", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-11T21:21:17.813Z", - "num_proofs": 0, - "proving_scheme": "shplonk", - "status": "Failed", + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.609091S", - "compute_time_sec": 1.609091, + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, "compute_times": { - "total": 1.430661918129772, - "queued": 1.232619, - "file_setup": 1.4302852991968393 + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 }, - "file_size": 6518, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: cargo --quiet build --release stdout: stderr: error: package `colored v2.1.0` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.69.0-nightly\nEither upgrade to rustc 1.70 or newer, or use\ncargo update -p colored@2.1.0 --precise ver\nwhere `ver` is the latest version of `colored` supporting rustc 1.69.0-nightly\n", - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "180aaddd-e613-42ba-a7d0-2b023e582fa6", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-05T21:38:35.968Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.549Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H02M31.452475S", - "compute_time_sec": 151.452475, + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, "compute_times": { - "total": 152.61581724137068, - "queued": 16.679736, - "compile": 150.85432086326182, - "clean_up": 0.08890871703624725, - "file_setup": 1.3426462803035975, - "save_results": 0.055491913110017776, - "generate_keys": 0.27397330291569233, - "download_trusted_setup_file": 0.00015251711010932922 + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 }, - "file_size": 44942284, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "1a12a25a-6ee5-48eb-96bb-2be6c57fe8a8", - "circuit_name": "halo2-circuit", - "circuit_type": "halo2", - "date_created": "2023-12-05T20:56:40.952Z", - "num_proofs": 0, - "proving_scheme": "shplonk", + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.474Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H02M47.087177S", - "compute_time_sec": 167.087177, + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, "compute_times": { - "total": 168.2553534731269, - "queued": 15.969391, - "compile": 166.52114362455904, - "clean_up": 0.08557339012622833, - "file_setup": 1.3397669158875942, - "save_results": 0.023856762796640396, - "generate_keys": 0.28439050912857056, - "download_trusted_setup_file": 0.00015943683683872223 + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 }, - "file_size": 44943541, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "class_name": "halo2_circuit::circuit_def::CircuitInput", - "curve": "KZG bn254", - "degree": 13, - "halo2_version": "axiom-v0.3.0" + "error": null }, { - "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T20:26:39.713Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.431Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.813118S", - "compute_time_sec": 1.813118, + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, "compute_times": { - "total": 3.01790676638484, - "queued": 1.305567, - "clean_up": 0.000589149072766304, - "file_setup": 1.37160237506032, - "nargo_checks": 1.6454425044357777 + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 }, - "file_size": 3951, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "noir", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T20:23:01.975Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.409Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M04.488323S", - "compute_time_sec": 4.488323, + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, "compute_times": { - "total": 5.69258569739759, - "queued": 19.825139, - "clean_up": 0.0005774423480033875, - "file_setup": 1.3714763727039099, - "nargo_checks": 4.320127023383975 + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 }, - "file_size": 706, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "noir", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T20:09:13.111Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.344Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M04.592621S", - "compute_time_sec": 4.592621, + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, "compute_times": { - "total": 5.8083343375474215, - "queued": 20.40929, - "clean_up": 0.0006539653986692429, - "file_setup": 1.3848200682550669, - "nargo_checks": 4.422410562634468 + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 }, - "file_size": 3746, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "noir", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:46:56.192Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.290Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.901192S", - "compute_time_sec": 1.901192, + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, "compute_times": { - "total": 3.042013813741505, - "queued": 1.216309, - "clean_up": 0.0005592899397015572, - "file_setup": 1.3641308145597577, - "nargo_checks": 1.6769273420795798 + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 }, - "file_size": 646, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "pagerank", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:44:36.302Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.256Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.854306S", - "compute_time_sec": 3.854306, + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, "compute_times": { - "total": 5.005337344482541, - "queued": 1.049939, - "clean_up": 0.0004933271557092667, - "file_setup": 1.3198325717821717, - "nargo_checks": 3.684743066318333 + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 }, - "file_size": 646, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "acir_opcodes": 1, - "circuit_size": 6, - "nargo_package_name": "pagerank", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:44:01.042Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.239Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.321372S", - "compute_time_sec": 1.321372, + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, "compute_times": { - "total": 2.4821140887215734, - "queued": 1.147771, - "file_setup": 1.3312397608533502, - "nargo_checks": 1.1506206970661879 + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 }, - "file_size": 649, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:42:50.433Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.167Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.254776S", - "compute_time_sec": 1.254776, + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, "compute_times": { - "total": 2.4055077601224184, - "queued": 1.040189, - "file_setup": 1.3746437635272741, - "nargo_checks": 1.0305692087858915 + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 }, - "file_size": 653, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", - "circuit_name": "noir", - "circuit_type": "noir", - "date_created": "2023-12-03T19:40:12.889Z", - "num_proofs": 0, - "proving_scheme": "barretenberg", - "status": "Failed", + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.137Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.165442S", - "compute_time_sec": 2.165442, + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, "compute_times": { - "total": 3.31729419529438, - "queued": 18.785446, - "file_setup": 1.312557090073824, - "nargo_checks": 2.004337651655078 + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 }, - "file_size": 642, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", - "acir_opcodes": null, - "circuit_size": null, - "nargo_package_name": "", - "noir_version": "0.17.0" + "error": null }, { - "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:14:03.406Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.101Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.700449S", - "compute_time_sec": 2.700449, + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, "compute_times": { - "total": 3.862834582105279, - "queued": 1.240923, - "clean_up": 0.0048230309039354324, - "file_setup": 1.4248666781932116, - "create_r1cs": 0.019674228504300117, - "create_wasm": 0.02921307645738125, - "save_results": 0.003329528495669365, - "get_r1cs_info": 0.00027392804622650146, - "groth16_setup": 1.1982815023511648, - "export_verification_key": 1.1812070365995169, - "download_trusted_setup_file": 0.0009372644126415253 + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 }, - "file_size": 1537235, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:12:15.898Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.057Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.249043S", - "compute_time_sec": 7.249043, + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, "compute_times": { - "total": 8.408733254298568, - "queued": 1.325923, - "clean_up": 0.006613824516534805, - "create_cpp": 0.05350269004702568, - "file_setup": 1.4143117368221283, - "compile_cpp": 4.4514400865882635, - "create_r1cs": 0.020590879023075104, - "save_results": 0.002988070249557495, - "get_r1cs_info": 0.00036310404539108276, - "groth16_setup": 1.2632708046585321, - "export_verification_key": 1.1944759152829647, - "download_trusted_setup_file": 0.0009543616324663162 + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 }, - "file_size": 1719868, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:08:10.932Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.015Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.128823S", - "compute_time_sec": 7.128823, + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, "compute_times": { - "total": 8.290217800065875, - "queued": 1.176634, - "clean_up": 0.006579896435141563, - "create_cpp": 0.049633922055363655, - "file_setup": 1.407272644340992, - "compile_cpp": 4.411186024546623, - "create_r1cs": 0.020449023693799973, - "save_results": 0.0031916871666908264, - "get_r1cs_info": 0.0003460422158241272, - "groth16_setup": 1.1822046767920256, - "export_verification_key": 1.2081128470599651, - "download_trusted_setup_file": 0.0009996052831411362 + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 }, - "file_size": 1719871, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T21:03:13.779Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.971Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.214778S", - "compute_time_sec": 0.214778, + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, "compute_times": { - "total": 1.39355612359941, - "queued": 1.091083, - "create_cpp": 0.005528604611754417, - "file_setup": 1.387480080127716 + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 }, - "file_size": 1086, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:54:52.720Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.913Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.127570S", - "compute_time_sec": 7.12757, + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, "compute_times": { - "total": 8.300101362168789, - "queued": 1.180095, - "clean_up": 0.006741989403963089, - "create_cpp": 0.04977302439510822, - "file_setup": 1.3937485367059708, - "compile_cpp": 4.4108633529394865, - "create_r1cs": 0.020317360758781433, - "save_results": 0.003299059346318245, - "get_r1cs_info": 0.0003479979932308197, - "groth16_setup": 1.2352007273584604, - "export_verification_key": 1.1786142773926258, - "download_trusted_setup_file": 0.0009277686476707458 + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 }, - "file_size": 1720407, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:54:30.461Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.888Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.186269S", - "compute_time_sec": 7.186269, + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, "compute_times": { - "total": 8.347925985231996, - "queued": 1.11165, - "clean_up": 0.006883986294269562, - "create_cpp": 0.055882176384329796, - "file_setup": 1.3711591251194477, - "compile_cpp": 4.481259575113654, - "create_r1cs": 0.020169200375676155, - "save_results": 0.003566296771168709, - "get_r1cs_info": 0.00035143643617630005, - "groth16_setup": 1.192156182602048, - "export_verification_key": 1.2153031043708324, - "download_trusted_setup_file": 0.0009823162108659744 + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 }, - "file_size": 1720386, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:51:38.256Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.837Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.180372S", - "compute_time_sec": 0.180372, + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, "compute_times": { - "total": 1.3365695010870695, - "queued": 1.087627, - "create_cpp": 0.005229467526078224, - "file_setup": 1.331127068027854 + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 }, - "file_size": 4524, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:51:05.065Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.806Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.227270S", - "compute_time_sec": 0.22727, + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, "compute_times": { - "total": 1.387567725032568, - "queued": 1.200424, - "create_cpp": 0.005518514662981033, - "file_setup": 1.3818144612014294 + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 }, - "file_size": 4516, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:49:50.199Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.751Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.208167S", - "compute_time_sec": 0.208167, + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, "compute_times": { - "total": 1.3689671531319618, - "queued": 1.304207, - "create_cpp": 0.005460506305098534, - "file_setup": 1.3632374834269285 + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 }, - "file_size": 4516, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:47:15.011Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.720Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174086S", - "compute_time_sec": 0.174086, + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, "compute_times": { - "total": 1.3330576121807098, - "queued": 19.864284, - "create_cpp": 0.005246447399258614, - "file_setup": 1.3275200203061104 + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 }, - "file_size": 4483, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:05:13.309Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.707Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.546964S", - "compute_time_sec": 2.546964, + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, "compute_times": { - "total": 3.7097523529082537, - "queued": 1.209301, - "clean_up": 0.0005107801407575607, - "file_setup": 1.3446728140115738, - "create_r1cs": 0.007440237328410149, - "create_wasm": 0.016755376011133194, - "save_results": 0.0036186836659908295, - "get_r1cs_info": 0.00025043077766895294, - "groth16_setup": 1.1559293158352375, - "export_verification_key": 1.1794348638504744, - "download_trusted_setup_file": 0.0008941646665334702 + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 }, - "file_size": 54024, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T20:03:06.093Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.630Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.578866S", - "compute_time_sec": 2.578866, + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, "compute_times": { - "total": 3.752036551013589, - "queued": 19.44917, - "clean_up": 0.0005340799689292908, - "file_setup": 1.3582166992127895, - "create_r1cs": 0.007758324965834618, - "create_wasm": 0.01886793226003647, - "save_results": 0.0029870178550481796, - "get_r1cs_info": 0.0002993810921907425, - "groth16_setup": 1.1675188429653645, - "export_verification_key": 1.1944289654493332, - "download_trusted_setup_file": 0.0009995810687541962 + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 }, - "file_size": 54024, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T19:28:31.237Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.588Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.697079S", - "compute_time_sec": 2.697079, + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, "compute_times": { - "total": 3.860771119594574, - "queued": 45.887615, - "clean_up": 0.0005786605179309845, - "file_setup": 1.3233154714107513, - "create_r1cs": 0.007670976221561432, - "create_wasm": 0.017503729090094566, - "save_results": 0.04876627214252949, - "get_r1cs_info": 0.0002490133047103882, - "groth16_setup": 1.2176049146801233, - "export_verification_key": 1.2436372973024845, - "download_trusted_setup_file": 0.0010085124522447586 + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 }, - "file_size": 54024, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:31:32.434Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.542Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.383253S", - "compute_time_sec": 2.383253, + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, "compute_times": { - "total": 3.5439179949462414, - "queued": 1.183641, - "clean_up": 0.0006380276754498482, - "file_setup": 1.3339016744866967, - "create_r1cs": 0.007884668186306953, - "create_wasm": 0.01797499507665634, - "save_results": 0.004143344238400459, - "get_r1cs_info": 0.000565793365240097, - "groth16_setup": 1.0339104048907757, - "export_verification_key": 1.1432477626949549, - "download_trusted_setup_file": 0.0013524582609534264 + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 }, - "file_size": 54025, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:27:06.804Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.490Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.387682S", - "compute_time_sec": 7.387682, + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, "compute_times": { - "total": 8.548618336208165, - "queued": 18.71772, - "clean_up": 0.0012578116729855537, - "create_cpp": 0.04181432072073221, - "file_setup": 1.3276818674057722, - "compile_cpp": 5.035406060516834, - "create_r1cs": 0.008279835805296898, - "save_results": 0.003593659959733486, - "get_r1cs_info": 0.0006254948675632477, - "groth16_setup": 1.091116052120924, - "export_verification_key": 1.0372483730316162, - "download_trusted_setup_file": 0.0012065665796399117 + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 }, - "file_size": 229069, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 2, - "num_outputs": 1, - "num_private_inputs": 1, - "num_public_inputs": 1 + "error": null }, { - "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:16:12.963Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.478Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.167528S", - "compute_time_sec": 0.167528, + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, "compute_times": { - "total": 1.3633314277976751, - "queued": 1.187746, - "create_cpp": 0.005508816801011562, - "file_setup": 1.3575280215591192 + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 }, - "file_size": 3143, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:16:02.472Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.415Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.364457S", - "compute_time_sec": 0.364457, + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, "compute_times": { - "total": 1.5177692053839564, - "queued": 1.273971, - "create_cpp": 0.0061752675101161, - "file_setup": 1.5113406758755445 + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 }, - "file_size": 3149, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:14:05.849Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.366Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.285739S", - "compute_time_sec": 0.285739, + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, "compute_times": { - "total": 1.433143719099462, - "queued": 1.368079, - "create_cpp": 0.00570196658372879, - "file_setup": 1.4271633345633745 + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 }, - "file_size": 3146, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:11:33.616Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.357Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.190295S", - "compute_time_sec": 0.190295, + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, "compute_times": { - "total": 1.3479114715009928, - "queued": 1.174311, - "create_cpp": 0.006716226227581501, - "file_setup": 1.3409330770373344 + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 }, - "file_size": 3148, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:09:43.690Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.309Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.180634S", - "compute_time_sec": 0.180634, + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, "compute_times": { - "total": 1.3301707739010453, - "queued": 1.267544, - "create_cpp": 0.00672531221061945, - "file_setup": 1.3231740267947316 + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 }, - "file_size": 3140, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T05:08:33.991Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.243Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.182958S", - "compute_time_sec": 0.182958, + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, "compute_times": { - "total": 1.3482676716521382, - "queued": 23.976753, - "create_cpp": 0.005651121959090233, - "file_setup": 1.3422273648902774 + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 }, - "file_size": 3141, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:48:47.509Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.216Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.247686S", - "compute_time_sec": 0.247686, + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, "compute_times": { - "total": 1.4311082614585757, - "queued": 1.440336, - "create_cpp": 0.0059531861916184425, - "file_setup": 1.4248412810266018 + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 }, - "file_size": 3144, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:47:48.347Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.197Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.186337S", - "compute_time_sec": 0.186337, + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, "compute_times": { - "total": 1.3291292237117887, - "queued": 1.389798, - "create_cpp": 0.005445321090519428, - "file_setup": 1.3232828453183174 + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 }, - "file_size": 3144, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:47:16.025Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.091Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.203844S", - "compute_time_sec": 0.203844, + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, "compute_times": { - "total": 1.358934978954494, - "queued": 1.23962, - "create_cpp": 0.005131745710968971, - "file_setup": 1.3535515246912837 + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 }, - "file_size": 3147, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", - "circuit_name": "c", - "circuit_type": "circom", - "date_created": "2023-12-02T04:44:43.907Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.078Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.211198S", - "compute_time_sec": 0.211198, + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, "compute_times": { - "total": 1.3726867232471704, - "queued": 21.28569, - "create_cpp": 0.04041997902095318, - "file_setup": 1.3318777102977037 + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 }, - "file_size": 3118, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, { - "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:58:52.961Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:32.058Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M30.485776S", - "compute_time_sec": 30.485776, + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, "compute_times": { - "total": 31.713325195014477, - "queued": 1.53179, - "clean_up": 0.0050907619297504425, - "create_cpp": 0.5502202846109867, - "file_setup": 1.4041321221739054, - "compile_cpp": 8.600912608206272, - "create_r1cs": 0.5660600401461124, - "save_results": 0.015263739973306656, - "get_r1cs_info": 0.0007791165262460709, - "groth16_setup": 18.966865327209234, - "export_verification_key": 1.5605580545961857, - "download_trusted_setup_file": 0.043034087866544724 + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:57:39.629Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.958Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M30.503827S", - "compute_time_sec": 30.503827, + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, "compute_times": { - "total": 31.731675423681736, - "queued": 1.329617, - "clean_up": 0.005224447697401047, - "create_cpp": 0.5869219042360783, - "file_setup": 1.396010784432292, - "compile_cpp": 8.755487740039825, - "create_r1cs": 0.6137677505612373, - "save_results": 0.015961000695824623, - "get_r1cs_info": 0.0007797814905643463, - "groth16_setup": 18.781834876164794, - "export_verification_key": 1.5326797477900982, - "download_trusted_setup_file": 0.04255225136876106 - }, - "file_size": 7382369, - "uploaded_file_name": "", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null }, { - "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:53:41.285Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.946Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M29.404746S", - "compute_time_sec": 29.404746, + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, "compute_times": { - "total": 30.63611113280058, - "queued": 1.393016, - "clean_up": 0.004741033539175987, - "create_cpp": 0.5701096802949905, - "file_setup": 1.4058604761958122, - "compile_cpp": 8.18474044650793, - "create_r1cs": 0.5578694771975279, - "save_results": 0.012727703899145126, - "get_r1cs_info": 0.0007434040307998657, - "groth16_setup": 18.383400244638324, - "export_verification_key": 1.4725701548159122, - "download_trusted_setup_file": 0.042938267812132835 + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", - "circuit_name": "sudoku", - "circuit_type": "circom", - "date_created": "2023-12-02T03:50:43.511Z", - "num_proofs": 1, - "proving_scheme": "groth16", + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:31.938Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M28.987369S", - "compute_time_sec": 28.987369, + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, "compute_times": { - "total": 30.219565767794847, - "queued": 73.815898, - "clean_up": 0.005328845232725143, - "create_cpp": 0.5412574652582407, - "file_setup": 1.408054981380701, - "compile_cpp": 7.979971516877413, - "create_r1cs": 0.5340761709958315, - "save_results": 0.10810003615915775, - "get_r1cs_info": 0.0008541643619537354, - "groth16_setup": 18.02999261394143, - "export_verification_key": 1.5689898952841759, - "download_trusted_setup_file": 0.04256066307425499 + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 }, - "file_size": 7382369, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 11906, - "num_outputs": 1, - "num_private_inputs": 81, - "num_public_inputs": 81 + "error": null }, { - "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", - "circuit_name": "my-circuit", + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-02T00:28:21.086Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:19:31.776Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M12.293107S", - "compute_time_sec": 12.293107, + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, "compute_times": { - "total": 1.540343570522964, - "queued": 1.149716, - "file_setup": 1.5400111814960837 + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 }, - "file_size": 3876, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", - "curve": "bls24-315", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", - "circuit_name": "my-circuit", + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-02T00:27:16.183Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:30.141Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M16.323835S", - "compute_time_sec": 16.323835, + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, "compute_times": { - "total": 17.493196861818433, - "queued": 20.294201, - "compile": 15.894271181896329, - "clean_up": 0.06409060023725033, - "file_setup": 1.479825496673584, - "save_results": 0.030155125074088573, - "compile_r1cs_and_keygen": 0.024464260786771774 + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 }, - "file_size": 19740582, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bls24-315", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", - "circuit_name": "gnark", + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-02T00:02:34.146Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:28.622Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M12.571758S", - "compute_time_sec": 12.571758, + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, "compute_times": { - "total": 13.761676067486405, - "queued": 1.17776, - "compile": 12.108159688301384, - "clean_up": 0.0739858876913786, - "file_setup": 1.5122289564460516, - "save_results": 0.0421032914891839, - "compile_r1cs_and_keygen": 0.02487844880670309 + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 }, - "file_size": 19740713, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bw6-633", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", - "circuit_name": "gnark", + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:54:25.971Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:27.059Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M15.096119S", - "compute_time_sec": 15.096119, + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, "compute_times": { - "total": 16.24127036239952, - "queued": 18.859283, - "compile": 14.711085448041558, - "clean_up": 0.060433197766542435, - "file_setup": 1.4220957215875387, - "save_results": 0.03548778221011162, - "compile_r1cs_and_keygen": 0.011818661354482174 + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 }, - "file_size": 19740996, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", - "circuit_name": "cubic", + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:30:10.306Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:19:25.393Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.119803S", - "compute_time_sec": 11.119803, + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, "compute_times": { - "total": 1.4363502692431211, - "queued": 1.930609, - "file_setup": 1.4360267175361514 + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 }, - "file_size": 19555, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", - "circuit_name": "cubic", + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:26:29.959Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:19:23.768Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.939780S", - "compute_time_sec": 13.93978, + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, "compute_times": { - "total": 1.4325123187154531, - "queued": 47.459123, - "file_setup": 1.4321166425943375 + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 }, - "file_size": 3976, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", - "circuit_name": "cubic", + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T23:11:51.697Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", + "date_created": "2024-03-02T22:19:22.175Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M13.350788S", - "compute_time_sec": 13.350788, + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, "compute_times": { - "total": 1.6208326760679483, - "queued": 19.954132, - "file_setup": 1.6202213428914547 + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 }, - "file_size": 3976, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", - "circuit_name": "cubic", + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:56:28.365Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:20.592Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.241851S", - "compute_time_sec": 11.241851, + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, "compute_times": { - "total": 12.474130183458328, - "queued": 1.420551, - "compile": 10.825671127066016, - "clean_up": 0.061418959870934486, - "file_setup": 1.5227604731917381, - "save_results": 0.04108254425227642, - "compile_r1cs_and_keygen": 0.022699812427163124 + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 }, - "file_size": 19741724, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", - "circuit_name": "cubic", + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:55:10.340Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:18.948Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.246401S", - "compute_time_sec": 11.246401, + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, "compute_times": { - "total": 12.475918658077717, - "queued": 1.465348, - "compile": 10.844971090555191, - "clean_up": 0.05561045743525028, - "file_setup": 1.5209588538855314, - "save_results": 0.032638829201459885, - "compile_r1cs_and_keygen": 0.021452149376273155 + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 }, - "file_size": 19741716, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", - "circuit_name": "cubic", + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:53:46.296Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:17.333Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.258641S", - "compute_time_sec": 11.258641, + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, "compute_times": { - "total": 12.491810835897923, - "queued": 1.516986, - "compile": 10.808460559695959, - "clean_up": 0.06728884018957615, - "file_setup": 1.5511275846511126, - "save_results": 0.04296918027102947, - "compile_r1cs_and_keygen": 0.021483000367879868 + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 }, - "file_size": 19741716, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", - "circuit_name": "cubic", + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2023-12-01T22:52:51.464Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-02T22:19:15.726Z", + "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M11.176662S", - "compute_time_sec": 11.176662, + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, "compute_times": { - "total": 12.414811408147216, - "queued": 1.367679, - "compile": 10.73251723125577, - "clean_up": 0.08182202465832233, - "file_setup": 1.5543472524732351, - "save_results": 0.023770425468683243, - "compile_r1cs_and_keygen": 0.021878626197576523 + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 }, - "file_size": 19741718, - "uploaded_file_name": "", + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "gnark_version": "v0.9.0" + "error": null }, { - "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", - "circuit_name": "circuit", - "circuit_type": "gnark", - "date_created": "2023-12-01T22:50:44.245Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.090040S", - "compute_time_sec": 14.09004, - "compute_times": { - "total": 1.543837545439601, - "queued": 21.153753, - "file_setup": 1.5434527061879635 - }, - "file_size": 4148, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", - "curve": "bn254", - "gnark_version": "v0.9.0" - }, - { - "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", - "circuit_name": "circuit", - "circuit_type": "gnark", - "date_created": "2023-12-01T22:29:14.159Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M10.460622S", - "compute_time_sec": 10.460622, - "compute_times": { - "total": 1.5692181382328272, - "queued": 1.442896, - "file_setup": 1.568734273314476 - }, - "file_size": 4148, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", - "curve": "bn254", - "gnark_version": "v0.9.0" - }, - { - "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", - "circuit_name": "circuit", - "circuit_type": "gnark", - "date_created": "2023-12-01T22:21:25.657Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Failed", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M14.046979S", - "compute_time_sec": 14.046979, - "compute_times": { - "total": 1.551876936107874, - "queued": 18.025252, - "file_setup": 1.5510845798999071 - }, - "file_size": 4143, - "uploaded_file_name": "", - "verification_key": null, - "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", - "curve": "bn254", - "gnark_version": "v0.9.0" - }, - { - "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", - "circuit_name": "multiplier2", - "circuit_type": "circom", - "date_created": "2023-12-01T19:22:16.230Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.920270S", - "compute_time_sec": 7.92027, - "compute_times": { - "total": 9.144548835232854, - "queued": 26.442871, - "clean_up": 0.0016796644777059555, - "create_cpp": 0.05204322002828121, - "file_setup": 1.3975976463407278, - "compile_cpp": 4.545235302299261, - "create_r1cs": 0.008858315646648407, - "save_results": 0.005187435075640678, - "get_r1cs_info": 0.0006442461162805557, - "groth16_setup": 1.5628649536520243, - "export_verification_key": 1.5673195589333773, - "download_trusted_setup_file": 0.0025161877274513245 - }, - "file_size": 225511, - "uploaded_file_name": "", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - } - ], - "rawHeaders": [ - "Content-Length", - "164358", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", - "body": "", - "status": 200, - "response": [ - { - "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.182Z", + "date_created": "2024-03-02T22:19:14.150Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150585S", - "compute_time_sec": 0.150585, + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, "compute_times": { - "prove": 0.11676173796877265, - "total": 0.15572588506620377, - "queued": 51.669893, - "clean_up": 0.009185672039166093, - "file_setup": 0.027514968067407608, - "save_results": 0.001868820982053876 + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.062Z", + "date_created": "2024-03-02T22:19:12.520Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223055S", - "compute_time_sec": 0.223055, + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, "compute_times": { - "prove": 0.20497421699110419, - "total": 0.22819320199778304, - "queued": 48.364288, - "clean_up": 0.0023624080349691212, - "file_setup": 0.01836701901629567, - "save_results": 0.002189519989769906 + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.018Z", + "date_created": "2024-03-02T22:19:10.959Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.213402S", - "compute_time_sec": 0.213402, + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, "compute_times": { - "prove": 0.19061215105466545, - "total": 0.21872411505319178, - "queued": 48.427521, - "clean_up": 0.004127845983020961, - "file_setup": 0.022272864007391036, - "save_results": 0.0014097680104896426 + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.932Z", + "date_created": "2024-03-02T22:19:09.368Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.176113S", - "compute_time_sec": 0.176113, + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, "compute_times": { - "prove": 0.15716673800488934, - "total": 0.18125584500376135, - "queued": 48.35111, - "clean_up": 0.006394687981810421, - "file_setup": 0.015695078996941447, - "save_results": 0.001599603972863406 + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.924Z", + "date_created": "2024-03-02T22:19:07.782Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.175913S", - "compute_time_sec": 0.175913, + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, "compute_times": { - "prove": 0.15754800499416888, - "total": 0.1815414800075814, - "queued": 48.022383, - "clean_up": 0.002829990000464022, - "file_setup": 0.018857149058021605, - "save_results": 0.0017489319434389472 + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.909Z", + "date_created": "2024-03-02T22:19:06.214Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.194250S", - "compute_time_sec": 0.19425, + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, "compute_times": { - "prove": 0.12928905605804175, - "total": 9.857152820914052, - "queued": 47.737361, - "clean_up": 0.01866333093494177, - "file_setup": 9.695790873956867, - "save_results": 0.005249700974673033 + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.810Z", + "date_created": "2024-03-02T22:19:04.623Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092544S", - "compute_time_sec": 0.092544, + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, "compute_times": { - "prove": 0.07295725599396974, - "total": 0.09864532802021131, - "queued": 47.866814, - "clean_up": 0.0027975860284641385, - "file_setup": 0.020817386044654995, - "save_results": 0.0016599719529040158 + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.800Z", + "date_created": "2024-03-02T22:19:03.050Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105093S", - "compute_time_sec": 0.105093, + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, "compute_times": { - "prove": 0.08778161800000817, - "total": 0.11094204697292298, - "queued": 47.8478, - "clean_up": 0.002542709931731224, - "file_setup": 0.018792407936416566, - "save_results": 0.0014581570867449045 + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.792Z", + "date_created": "2024-03-02T22:19:01.474Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.233969S", - "compute_time_sec": 0.233969, + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, "compute_times": { - "prove": 0.2173847450176254, - "total": 0.23918032401707023, - "queued": 47.632341, - "clean_up": 0.003762404026929289, - "file_setup": 0.015466460026800632, - "save_results": 0.0015042249578982592 + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.637Z", + "date_created": "2024-03-02T22:18:59.935Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.367199S", - "compute_time_sec": 0.367199, + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, "compute_times": { - "prove": 0.34983603993896395, - "total": 0.3715133300283924, - "queued": 47.284314, - "clean_up": 0.004351923940703273, - "file_setup": 0.01482851302716881, - "save_results": 0.0021903570741415024 + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.620Z", + "date_created": "2024-03-02T22:18:58.407Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.235932S", - "compute_time_sec": 0.235932, + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, "compute_times": { - "prove": 0.22235612478107214, - "total": 0.24128600303083658, - "queued": 50.101947, - "clean_up": 0.0031629670411348343, - "file_setup": 0.014214606955647469, - "save_results": 0.0011093378998339176 + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.593Z", + "date_created": "2024-03-02T22:18:56.860Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.916143S", - "compute_time_sec": 0.916143, + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, "compute_times": { - "prove": 0.7969153829617426, - "total": 11.417283304966986, - "queued": 46.46669, - "clean_up": 0.08386482996866107, - "file_setup": 10.52351449499838, - "save_results": 0.00758640409912914 + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.516Z", + "date_created": "2024-03-02T22:18:55.316Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.426199S", - "compute_time_sec": 0.426199, + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, "compute_times": { - "prove": 0.4102505180053413, - "total": 0.43261146097211167, - "queued": 46.82937, - "clean_up": 0.003141910012345761, - "file_setup": 0.017152403015643358, - "save_results": 0.0012355779763311148 + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.491Z", + "date_created": "2024-03-02T22:18:53.766Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.474603S", - "compute_time_sec": 0.474603, + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, "compute_times": { - "prove": 0.4527727549429983, - "total": 0.4810627130791545, - "queued": 49.399479, - "clean_up": 0.0032021570950746536, - "file_setup": 0.02290356601588428, - "save_results": 0.0017274878919124603 + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.478Z", + "date_created": "2024-03-02T22:18:52.213Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.305654S", - "compute_time_sec": 0.305654, + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, "compute_times": { - "prove": 0.2871348679764196, - "total": 0.3104168300051242, - "queued": 46.529494, - "clean_up": 0.0037129210541024804, - "file_setup": 0.017233187099918723, - "save_results": 0.0019823479233309627 + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.414Z", + "date_created": "2024-03-02T22:18:50.640Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.498123S", - "compute_time_sec": 0.498123, + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, "compute_times": { - "prove": 0.47856602212414145, - "total": 0.5038217708934098, - "queued": 45.444814, - "clean_up": 0.0037471128161996603, - "file_setup": 0.019111952977254987, - "save_results": 0.0020769149996340275 + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.362Z", + "date_created": "2024-03-02T22:18:49.058Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.518721S", - "compute_time_sec": 0.518721, + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, "compute_times": { - "prove": 0.5003455500118434, - "total": 0.5234491459559649, - "queued": 45.480803, - "clean_up": 0.0037253409391269088, - "file_setup": 0.017134927911683917, - "save_results": 0.0019250600598752499 + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.356Z", + "date_created": "2024-03-02T22:18:47.479Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.611922S", - "compute_time_sec": 0.611922, + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, "compute_times": { - "prove": 0.5805270280689001, - "total": 0.6166191740194336, - "queued": 44.232932, - "clean_up": 0.008304930990561843, - "file_setup": 0.025953233940526843, - "save_results": 0.0014997139805927873 + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.294Z", + "date_created": "2024-03-02T22:18:45.920Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308959S", - "compute_time_sec": 0.308959, + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, "compute_times": { - "prove": 0.2826259849825874, - "total": 0.3145583850564435, - "queued": 43.33347, - "clean_up": 0.003558462020009756, - "file_setup": 0.0257925660116598, - "save_results": 0.0022130260476842523 + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.184Z", + "date_created": "2024-03-02T22:18:44.421Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109062S", - "compute_time_sec": 0.109062, + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, "compute_times": { - "prove": 0.07950302597600967, - "total": 0.11443837394472212, - "queued": 47.654241, - "clean_up": 0.004247633973136544, - "file_setup": 0.028729144018143415, - "save_results": 0.001540875993669033 + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.144Z", + "date_created": "2024-03-02T22:18:42.838Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.249112S", - "compute_time_sec": 0.249112, + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, "compute_times": { - "prove": 0.21678003598935902, - "total": 0.25460609793663025, - "queued": 42.162713, - "clean_up": 0.01700777595397085, - "file_setup": 0.018869346007704735, - "save_results": 0.0016134349862113595 + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.120Z", + "date_created": "2024-03-02T22:18:41.260Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.389380S", - "compute_time_sec": 0.38938, + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, "compute_times": { - "prove": 0.3490279840771109, - "total": 0.39595628902316093, - "queued": 44.712192, - "clean_up": 0.018011081032454967, - "file_setup": 0.026378671871498227, - "save_results": 0.0021800349932163954 + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.062Z", + "date_created": "2024-03-02T22:18:39.684Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.293103S", - "compute_time_sec": 0.293103, + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, "compute_times": { - "prove": 0.2668396580265835, - "total": 0.29833219898864627, - "queued": 41.268095, - "clean_up": 0.004488729988224804, - "file_setup": 0.024880563956685364, - "save_results": 0.0017942419508472085 + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.027Z", + "date_created": "2024-03-02T22:18:38.137Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.726384S", - "compute_time_sec": 0.726384, + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, "compute_times": { - "prove": 0.6857492360286415, - "total": 0.7852012270595878, - "queued": 40.629769, - "clean_up": 0.016240264056250453, - "file_setup": 0.028827585047110915, - "save_results": 0.0025640518870204687 + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.006Z", + "date_created": "2024-03-02T22:18:36.609Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119931S", - "compute_time_sec": 0.119931, + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, "compute_times": { - "prove": 0.09887892508413643, - "total": 0.12549577211029828, - "queued": 40.552476, - "clean_up": 0.007899258052930236, - "file_setup": 0.016978575964458287, - "save_results": 0.0013200589455664158 + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.963Z", + "date_created": "2024-03-02T22:18:35.023Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308239S", - "compute_time_sec": 0.308239, + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, "compute_times": { - "prove": 0.2867297289194539, - "total": 0.314586246968247, - "queued": 39.622031, - "clean_up": 0.004962102975696325, - "file_setup": 0.0206260799895972, - "save_results": 0.001943530049175024 + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.909Z", + "date_created": "2024-03-02T22:18:33.480Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.370286S", - "compute_time_sec": 0.370286, + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, "compute_times": { - "prove": 0.34130737208761275, - "total": 0.376522185979411, - "queued": 38.669829, - "clean_up": 0.008471829001791775, - "file_setup": 0.02454887900967151, - "save_results": 0.001779031939804554 + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.896Z", + "date_created": "2024-03-02T22:18:31.932Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174815S", - "compute_time_sec": 0.174815, + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, "compute_times": { - "prove": 0.0778409120393917, - "total": 0.18085870705544949, - "queued": 42.873267, - "clean_up": 0.08188443898689002, - "file_setup": 0.018623532028868794, - "save_results": 0.0020236889831721783 + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.873Z", + "date_created": "2024-03-02T22:18:30.405Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129168S", - "compute_time_sec": 0.129168, + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, "compute_times": { - "prove": 0.11140450404491276, - "total": 11.33851779595716, - "queued": 36.762873, - "clean_up": 0.0029776159790344536, - "file_setup": 11.211716797959525, - "save_results": 0.001344212971162051 + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.817Z", + "date_created": "2024-03-02T22:18:28.882Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132006S", - "compute_time_sec": 0.132006, + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, "compute_times": { - "prove": 0.080011370126158, - "total": 0.13885680097155273, - "queued": 39.970335, - "clean_up": 0.01748181483708322, - "file_setup": 0.03901624190621078, - "save_results": 0.0019160669762641191 + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.806Z", + "date_created": "2024-03-02T22:18:27.303Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.193712S", - "compute_time_sec": 0.193712, + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, "compute_times": { - "prove": 0.17043351900065318, - "total": 10.978355454979464, - "queued": 35.874311, - "clean_up": 0.003109109995421022, - "file_setup": 10.787516613025218, - "save_results": 0.001674333994742483 + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.774Z", + "date_created": "2024-03-02T22:18:25.623Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.205276S", - "compute_time_sec": 0.205276, + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, "compute_times": { - "prove": 0.186850864905864, - "total": 11.348314038012177, - "queued": 35.925496, - "clean_up": 0.0035353717394173145, - "file_setup": 11.152006654068828, - "save_results": 0.0015276442281901836 - }, - "file_size": 532, - "proof_input": null, + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 + }, + "file_size": 532, + "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.713Z", + "date_created": "2024-03-02T22:18:24.063Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.165272S", - "compute_time_sec": 0.165272, + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, "compute_times": { - "prove": 0.14217190898489207, - "total": 0.17151216696947813, - "queued": 38.034718, - "clean_up": 0.003942857962101698, - "file_setup": 0.023223162977956235, - "save_results": 0.0017018220387399197 + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.692Z", + "date_created": "2024-03-02T22:18:22.482Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102217S", - "compute_time_sec": 0.102217, + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, "compute_times": { - "prove": 0.07969108188990504, - "total": 0.10789976501837373, - "queued": 38.13202, - "clean_up": 0.004012368037365377, - "file_setup": 0.022230835049413145, - "save_results": 0.0015486960764974356 + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.644Z", + "date_created": "2024-03-02T22:18:20.927Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.117661S", - "compute_time_sec": 1.117661, + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, "compute_times": { - "prove": 1.0916141049237922, - "total": 1.125104735023342, - "queued": 31.725794, - "clean_up": 0.006913283024914563, - "file_setup": 0.02388083899859339, - "save_results": 0.002335774013772607 + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.593Z", + "date_created": "2024-03-02T22:18:19.297Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.977064S", - "compute_time_sec": 0.977064, + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, "compute_times": { - "prove": 0.9557226439937949, - "total": 0.9839210119098425, - "queued": 35.112241, - "clean_up": 0.00471810600720346, - "file_setup": 0.02103408006951213, - "save_results": 0.00203876500017941 + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.575Z", + "date_created": "2024-03-02T22:18:17.717Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375914S", - "compute_time_sec": 0.375914, + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, "compute_times": { - "prove": 0.34089843509718776, - "total": 0.38064429303631186, - "queued": 33.110783, - "clean_up": 0.015058210003189743, - "file_setup": 0.022246263921260834, - "save_results": 0.0021008079638704658 + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.531Z", + "date_created": "2024-03-02T22:18:16.204Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.472448S", - "compute_time_sec": 0.472448, + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, "compute_times": { - "prove": 0.4435087050078437, - "total": 0.47790782095398754, - "queued": 30.700356, - "clean_up": 0.012506086030043662, - "file_setup": 0.019921150989830494, - "save_results": 0.0015664849197492003 + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.492Z", + "date_created": "2024-03-02T22:18:14.654Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087612S", - "compute_time_sec": 0.087612, + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, "compute_times": { - "prove": 0.06967927806545049, - "total": 0.092331736930646, - "queued": 29.991506, - "clean_up": 0.0028922349447384477, - "file_setup": 0.01781347393989563, - "save_results": 0.0015894660027697682 + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.474Z", + "date_created": "2024-03-02T22:18:13.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112744S", - "compute_time_sec": 0.112744, + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, "compute_times": { - "prove": 0.09469883295241743, - "total": 0.11807810491882265, - "queued": 29.972988, - "clean_up": 0.0033285249955952168, - "file_setup": 0.017642873106524348, - "save_results": 0.002044467953965068 + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.387Z", + "date_created": "2024-03-02T22:18:11.558Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097410S", - "compute_time_sec": 0.09741, + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, "compute_times": { - "prove": 0.07845993107184768, - "total": 0.10426705703139305, - "queued": 30.149625, - "clean_up": 0.003105517942458391, - "file_setup": 0.02031002496369183, - "save_results": 0.0018116270657628775 + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.386Z", + "date_created": "2024-03-02T22:18:10.032Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103245S", - "compute_time_sec": 0.103245, + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, "compute_times": { - "prove": 0.0779562909156084, - "total": 0.10882041102740914, - "queued": 29.333339, - "clean_up": 0.00295620399992913, - "file_setup": 0.026116034016013145, - "save_results": 0.0014624170726165175 + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.380Z", + "date_created": "2024-03-02T22:18:08.462Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.384743S", - "compute_time_sec": 0.384743, + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, "compute_times": { - "prove": 0.3528827680274844, - "total": 0.3893050210317597, - "queued": 29.028812, - "clean_up": 0.017584193032234907, - "file_setup": 0.016878271009773016, - "save_results": 0.0016379220178350806 + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.286Z", + "date_created": "2024-03-02T22:18:06.935Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.382096S", - "compute_time_sec": 0.382096, + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, "compute_times": { - "prove": 0.35213211202062666, - "total": 0.3891321790870279, - "queued": 29.096306, - "clean_up": 0.014389456948265433, - "file_setup": 0.02016678685322404, - "save_results": 0.00188663718290627 + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.248Z", + "date_created": "2024-03-02T22:18:05.334Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.623385S", - "compute_time_sec": 0.623385, - "compute_times": { - "prove": 0.6039510099217296, - "total": 0.6293552990537137, - "queued": 27.786781, - "clean_up": 0.0037962039932608604, - "file_setup": 0.01944179111160338, - "save_results": 0.0017109769396483898 + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, + "compute_times": { + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.228Z", + "date_created": "2024-03-02T22:18:03.737Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.470183S", - "compute_time_sec": 0.470183, + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, "compute_times": { - "prove": 0.4347335551865399, - "total": 0.47685516392812133, - "queued": 26.623268, - "clean_up": 0.017949641915038228, - "file_setup": 0.021318417973816395, - "save_results": 0.0024754919577389956 + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.128Z", + "date_created": "2024-03-02T22:18:02.220Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.523158S", - "compute_time_sec": 0.523158, + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, "compute_times": { - "prove": 0.49819166213274, - "total": 0.5295807488728315, - "queued": 25.466882, - "clean_up": 0.007454287027940154, - "file_setup": 0.02171924593858421, - "save_results": 0.0017853768076747656 + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.091Z", + "date_created": "2024-03-02T22:18:00.620Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.286944S", - "compute_time_sec": 0.286944, + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, "compute_times": { - "prove": 0.2631158559815958, - "total": 0.2923560020281002, - "queued": 28.66412, - "clean_up": 0.008188333013094962, - "file_setup": 0.019067034008912742, - "save_results": 0.0016677940730005503 + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.082Z", + "date_created": "2024-03-02T22:17:59.069Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.458130S", - "compute_time_sec": 0.45813, + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, "compute_times": { - "prove": 0.42354415403679013, - "total": 0.4653686359524727, - "queued": 24.323498, - "clean_up": 0.014879923779517412, - "file_setup": 0.024928942089900374, - "save_results": 0.0015406690072268248 + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.998Z", + "date_created": "2024-03-02T22:17:57.502Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128011S", - "compute_time_sec": 0.128011, + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, "compute_times": { - "prove": 0.09206298098433763, - "total": 0.13274087803438306, - "queued": 28.63419, - "clean_up": 0.021465381956659257, - "file_setup": 0.017213757033459842, - "save_results": 0.0016593720065429807 + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.976Z", + "date_created": "2024-03-02T22:17:55.884Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125847S", - "compute_time_sec": 0.125847, + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, "compute_times": { - "prove": 0.10572471795603633, - "total": 0.1338271670974791, - "queued": 23.56859, - "clean_up": 0.003848722204566002, - "file_setup": 0.02194214309565723, - "save_results": 0.0019167859572917223 + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.945Z", + "date_created": "2024-03-02T22:17:54.264Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122820S", - "compute_time_sec": 0.12282, + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, "compute_times": { - "prove": 0.10552407801151276, - "total": 0.12850606301799417, - "queued": 23.571138, - "clean_up": 0.0035990109900012612, - "file_setup": 0.017446335055865347, - "save_results": 0.0015994029818102717 + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.870Z", + "date_created": "2024-03-02T22:17:52.472Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105198S", - "compute_time_sec": 0.105198, + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, "compute_times": { - "prove": 0.07883684895932674, - "total": 0.1122406111098826, - "queued": 22.88221, - "clean_up": 0.003977251006290317, - "file_setup": 0.0269186079967767, - "save_results": 0.0020488761365413666 + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.855Z", + "date_created": "2024-03-02T22:17:50.941Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375989S", - "compute_time_sec": 0.375989, + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, "compute_times": { - "prove": 0.35955213801935315, - "total": 0.38039617508184165, - "queued": 22.616587, - "clean_up": 0.003521032049320638, - "file_setup": 0.015475824940949678, - "save_results": 0.0015010939678177238 + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.839Z", + "date_created": "2024-03-02T22:17:49.312Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112413S", - "compute_time_sec": 0.112413, + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, "compute_times": { - "prove": 0.09385650302283466, - "total": 0.11931004805956036, - "queued": 23.85771, - "clean_up": 0.0034119969932362437, - "file_setup": 0.020241676014848053, - "save_results": 0.0014685370260849595 + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.714Z", + "date_created": "2024-03-02T22:17:47.661Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.303833S", - "compute_time_sec": 0.303833, + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, "compute_times": { - "prove": 0.27441725484095514, - "total": 0.43832587893120944, - "queued": 22.039487, - "clean_up": 0.013608262874186039, - "file_setup": 0.02093623112887144, - "save_results": 0.0018121080938726664 + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.706Z", + "date_created": "2024-03-02T22:17:46.099Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.354849S", - "compute_time_sec": 0.354849, + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, "compute_times": { - "prove": 0.306272565969266, - "total": 0.36076175002381206, - "queued": 21.742685, - "clean_up": 0.031400882988236845, - "file_setup": 0.021054222946986556, - "save_results": 0.001673974096775055 + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.691Z", + "date_created": "2024-03-02T22:17:44.552Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.392543S", - "compute_time_sec": 0.392543, + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, "compute_times": { - "prove": 0.32281060807872564, - "total": 0.39849924307782203, - "queued": 21.744261, - "clean_up": 0.049071428016759455, - "file_setup": 0.024452029960229993, - "save_results": 0.0017178819980472326 + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.589Z", + "date_created": "2024-03-02T22:17:42.989Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.171713S", - "compute_time_sec": 0.171713, + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, "compute_times": { - "prove": 0.0936721230391413, - "total": 0.17827622988261282, - "queued": 21.124808, - "clean_up": 0.03897871193476021, - "file_setup": 0.038734283996745944, - "save_results": 0.006515543907880783 + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.567Z", + "date_created": "2024-03-02T22:17:41.451Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.380783S", - "compute_time_sec": 0.380783, + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, "compute_times": { - "prove": 0.34301244595553726, - "total": 0.38707092101685703, - "queued": 20.832537, - "clean_up": 0.0032510189339518547, - "file_setup": 0.038782318006269634, - "save_results": 0.0015539260348305106 + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.549Z", + "date_created": "2024-03-02T22:17:39.456Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.471394S", - "compute_time_sec": 0.471394, + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, "compute_times": { - "prove": 0.44031512807123363, - "total": 0.4763076149392873, - "queued": 20.750492, - "clean_up": 0.004170806030742824, - "file_setup": 0.029659383930265903, - "save_results": 0.0016929719131439924 + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.474Z", + "date_created": "2024-03-02T22:17:37.847Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124495S", - "compute_time_sec": 0.124495, + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, "compute_times": { - "prove": 0.10073043289594352, - "total": 0.13022281299345195, - "queued": 20.298391, - "clean_up": 0.003909061895683408, - "file_setup": 0.02332677412778139, - "save_results": 0.0017897870857268572 + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.431Z", + "date_created": "2024-03-02T22:17:36.258Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223264S", - "compute_time_sec": 0.223264, + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, "compute_times": { - "prove": 0.20454663503915071, - "total": 0.22819734294898808, - "queued": 19.992071, - "clean_up": 0.005460212007164955, - "file_setup": 0.016508184024132788, - "save_results": 0.0012988959206268191 + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.409Z", + "date_created": "2024-03-02T22:17:34.681Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.236397S", - "compute_time_sec": 0.236397, + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, "compute_times": { - "prove": 0.2126400190172717, - "total": 0.24228776898235083, - "queued": 20.01237, - "clean_up": 0.003821471007540822, - "file_setup": 0.023733722046017647, - "save_results": 0.0016510839341208339 + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.344Z", + "date_created": "2024-03-02T22:17:33.146Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.259418S", - "compute_time_sec": 0.259418, + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, "compute_times": { - "prove": 0.23506561596877873, - "total": 0.26543588005006313, - "queued": 19.361679, - "clean_up": 0.007562417071312666, - "file_setup": 0.020428013987839222, - "save_results": 0.001966766081750393 + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.290Z", + "date_created": "2024-03-02T22:17:31.611Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.515161S", - "compute_time_sec": 0.515161, + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, "compute_times": { - "prove": 0.49523238092660904, - "total": 0.5212377090938389, - "queued": 18.933764, - "clean_up": 0.004512671031989157, - "file_setup": 0.01928175101056695, - "save_results": 0.001811992027796805 + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.256Z", + "date_created": "2024-03-02T22:17:30.068Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157983S", - "compute_time_sec": 0.157983, + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, "compute_times": { - "prove": 0.13088228809647262, - "total": 0.16489004692994058, - "queued": 18.546469, - "clean_up": 0.009672191925346851, - "file_setup": 0.02190026408061385, - "save_results": 0.001803946914151311 + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.239Z", + "date_created": "2024-03-02T22:17:28.546Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.121145S", - "compute_time_sec": 0.121145, + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, "compute_times": { - "prove": 0.08225085295271128, - "total": 0.1268888000631705, - "queued": 18.194739, - "clean_up": 0.014004492084495723, - "file_setup": 0.028718804009258747, - "save_results": 0.0015831160126253963 + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.167Z", + "date_created": "2024-03-02T22:17:27.002Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.378241S", - "compute_time_sec": 0.378241, + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, "compute_times": { - "prove": 0.32446074998006225, - "total": 0.46455645211972296, - "queued": 17.564428, - "clean_up": 0.025895975064486265, - "file_setup": 0.0355614370200783, - "save_results": 0.0018245270475745201 + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.137Z", + "date_created": "2024-03-02T22:17:25.415Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.527332S", - "compute_time_sec": 0.527332, + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, "compute_times": { - "prove": 0.46785091701895, - "total": 0.5323068069992587, - "queued": 17.114249, - "clean_up": 0.04379052110016346, - "file_setup": 0.018304905970580876, - "save_results": 0.0018958799773827195 - }, - "file_size": 532, - "proof_input": null, + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 + }, + "file_size": 532, + "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.101Z", + "date_created": "2024-03-02T22:17:23.831Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157597S", - "compute_time_sec": 0.157597, + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, "compute_times": { - "prove": 0.12255263701081276, - "total": 0.16386522795073688, - "queued": 19.497095, - "clean_up": 0.003113526967354119, - "file_setup": 0.03630416397936642, - "save_results": 0.0015326740685850382 + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.057Z", + "date_created": "2024-03-02T22:17:22.258Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242588S", - "compute_time_sec": 0.242588, + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, "compute_times": { - "prove": 0.20696109696291387, - "total": 0.24818814708851278, - "queued": 16.264806, - "clean_up": 0.003144470974802971, - "file_setup": 0.03611759003251791, - "save_results": 0.0016494940500706434 + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.015Z", + "date_created": "2024-03-02T22:17:20.735Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242412S", - "compute_time_sec": 0.242412, + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, "compute_times": { - "prove": 0.16999451199080795, - "total": 0.24800510297063738, - "queued": 15.393279, - "clean_up": 0.05378705798648298, - "file_setup": 0.021581811015494168, - "save_results": 0.0023058250080794096 + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.971Z", + "date_created": "2024-03-02T22:17:19.166Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.973140S", - "compute_time_sec": 0.97314, + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, "compute_times": { - "prove": 0.5375044860411435, - "total": 0.9786076380405575, - "queued": 14.685862, - "clean_up": 0.41053569701034576, - "file_setup": 0.02815453300718218, - "save_results": 0.0020460280356928706 + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.913Z", + "date_created": "2024-03-02T22:17:17.494Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.365020S", - "compute_time_sec": 0.36502, + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, "compute_times": { - "prove": 0.3317899671383202, - "total": 0.37020347407087684, - "queued": 16.60799, - "clean_up": 0.003273986978456378, - "file_setup": 0.032879116013646126, - "save_results": 0.00186073686927557 + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.888Z", + "date_created": "2024-03-02T22:17:15.887Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.456895S", - "compute_time_sec": 0.456895, + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, "compute_times": { - "prove": 0.423072372097522, - "total": 0.46337219700217247, - "queued": 13.632284, - "clean_up": 0.003993527963757515, - "file_setup": 0.03403562190942466, - "save_results": 0.0018623609794303775 + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.837Z", + "date_created": "2024-03-02T22:17:14.188Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140068S", - "compute_time_sec": 0.140068, + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, "compute_times": { - "prove": 0.1145919740665704, - "total": 0.14642110699787736, - "queued": 12.877362, - "clean_up": 0.0042882689740508795, - "file_setup": 0.025636608013883233, - "save_results": 0.0015542889013886452 + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.806Z", + "date_created": "2024-03-02T22:17:12.610Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.181831S", - "compute_time_sec": 0.181831, + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, "compute_times": { - "prove": 0.14706613693851978, - "total": 0.20189034601207823, - "queued": 12.867749, - "clean_up": 0.0034584460081532598, - "file_setup": 0.03571781504433602, - "save_results": 0.0014523779973387718 + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.751Z", + "date_created": "2024-03-02T22:17:11.068Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.450066S", - "compute_time_sec": 0.450066, + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, "compute_times": { - "prove": 0.4147049420280382, - "total": 0.45607288100291044, - "queued": 11.772521, - "clean_up": 0.007868458982557058, - "file_setup": 0.030776931904256344, - "save_results": 0.0023057740181684494 + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.720Z", + "date_created": "2024-03-02T22:17:09.525Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.420386S", - "compute_time_sec": 0.420386, + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, "compute_times": { - "prove": 0.3990589149761945, - "total": 0.4270030810730532, - "queued": 10.7278, - "clean_up": 0.005256709060631692, - "file_setup": 0.02061484009027481, - "save_results": 0.001710172975435853 + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.707Z", + "date_created": "2024-03-02T22:17:07.842Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.142094S", - "compute_time_sec": 0.142094, + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, "compute_times": { - "prove": 0.09821043501142412, - "total": 0.14811538497451693, - "queued": 14.851825, - "clean_up": 0.005784207955002785, - "file_setup": 0.04186572507023811, - "save_results": 0.001917139976285398 + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.630Z", + "date_created": "2024-03-02T22:17:06.256Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.855499S", - "compute_time_sec": 0.855499, + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, "compute_times": { - "prove": 0.8245165729895234, - "total": 0.8615315690403804, - "queued": 9.176532, - "clean_up": 0.014629843994043767, - "file_setup": 0.019743680022656918, - "save_results": 0.0022631760220974684 + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.588Z", + "date_created": "2024-03-02T22:17:04.726Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.490007S", - "compute_time_sec": 0.490007, - "compute_times": { - "prove": 0.455899114953354, - "total": 0.49668906279839575, - "queued": 11.871105, - "clean_up": 0.0045558069832623005, - "file_setup": 0.03405331703834236, - "save_results": 0.0018026470206677914 + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, + "compute_times": { + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.542Z", + "date_created": "2024-03-02T22:17:03.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.008029S", - "compute_time_sec": 1.008029, + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, "compute_times": { - "prove": 0.9685044119833037, - "total": 1.0136986010475084, - "queued": 7.558703, - "clean_up": 0.021701849065721035, - "file_setup": 0.020927226985804737, - "save_results": 0.002168047009035945 + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.490Z", + "date_created": "2024-03-02T22:17:01.643Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.576096S", - "compute_time_sec": 0.576096, + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, "compute_times": { - "prove": 0.5422158139990643, - "total": 0.5823603679891676, - "queued": 6.353891, - "clean_up": 0.0037581800715997815, - "file_setup": 0.03395645902492106, - "save_results": 0.002097297925502062 + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.478Z", + "date_created": "2024-03-02T22:16:59.991Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.209934S", - "compute_time_sec": 0.209934, + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, "compute_times": { - "prove": 0.15358152601402253, - "total": 0.21605274605099112, - "queued": 10.113062, - "clean_up": 0.023381736944429576, - "file_setup": 0.037115994025953114, - "save_results": 0.001614085049368441 + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.415Z", + "date_created": "2024-03-02T22:16:58.419Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.591839S", - "compute_time_sec": 0.591839, + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, "compute_times": { - "prove": 0.5229394290363416, - "total": 0.5979725319193676, - "queued": 5.154185, - "clean_up": 0.02260146988555789, - "file_setup": 0.05059771193191409, - "save_results": 0.0014608950586989522 + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.366Z", + "date_created": "2024-03-02T22:16:56.855Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116234S", - "compute_time_sec": 0.116234, + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, "compute_times": { - "prove": 0.07700311101507396, - "total": 0.12174052593763918, - "queued": 4.424714, - "clean_up": 0.006362012936733663, - "file_setup": 0.03617248602677137, - "save_results": 0.0017600810388103127 + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.357Z", + "date_created": "2024-03-02T22:16:55.300Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099418S", - "compute_time_sec": 0.099418, + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, "compute_times": { - "prove": 0.07262928795535117, - "total": 0.10508589306846261, - "queued": 3.682512, - "clean_up": 0.003569742082618177, - "file_setup": 0.027104002074338496, - "save_results": 0.0014839039649814367 + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.309Z", + "date_created": "2024-03-02T22:16:53.639Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138870S", - "compute_time_sec": 0.13887, + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, "compute_times": { - "prove": 0.0766439950093627, - "total": 0.14458074199501425, - "queued": 2.903833, - "clean_up": 0.02824126894120127, - "file_setup": 0.03780686797108501, - "save_results": 0.0015501140151172876 + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.243Z", + "date_created": "2024-03-02T22:14:41.345Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132945S", - "compute_time_sec": 0.132945, + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, "compute_times": { - "prove": 0.10661404114216566, - "total": 0.14006488304585218, - "queued": 7.128484, - "clean_up": 0.005756359081715345, - "file_setup": 0.0256589378695935, - "save_results": 0.0016340878792107105 + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.216Z", + "date_created": "2024-03-02T22:14:41.240Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097658S", - "compute_time_sec": 0.097658, + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, "compute_times": { - "prove": 0.07415288093034178, - "total": 0.10346396896056831, - "queued": 2.235442, - "clean_up": 0.003746030037291348, - "file_setup": 0.023523699957877398, - "save_results": 0.001744512002915144 + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.197Z", + "date_created": "2024-03-02T22:14:41.236Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126620S", - "compute_time_sec": 0.12662, + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, "compute_times": { - "prove": 0.08383059408515692, - "total": 0.13342511001974344, - "queued": 2.054465, - "clean_up": 0.017144297948107123, - "file_setup": 0.030395573005080223, - "save_results": 0.001586398109793663 + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.091Z", + "date_created": "2024-03-02T22:14:41.236Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135631S", - "compute_time_sec": 0.135631, + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, "compute_times": { - "prove": 0.0823628450743854, - "total": 0.14176014298573136, - "queued": 1.539206, - "clean_up": 0.017501453985460103, - "file_setup": 0.03982250590343028, - "save_results": 0.0016014629509299994 + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.078Z", + "date_created": "2024-03-02T22:14:41.112Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138158S", - "compute_time_sec": 0.138158, + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, "compute_times": { - "prove": 0.07979016215540469, - "total": 0.14502660813741386, - "queued": 0.943551, - "clean_up": 0.020246606087312102, - "file_setup": 0.04280776507221162, - "save_results": 0.0017201078590005636 + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.058Z", + "date_created": "2024-03-02T22:14:39.613Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.570352S", - "compute_time_sec": 0.570352, + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, "compute_times": { - "prove": 0.522533038049005, - "total": 0.5765696190064773, - "queued": 5.49816, - "clean_up": 0.004591017961502075, - "file_setup": 0.04690163198392838, - "save_results": 0.00215094699524343 + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.958Z", + "date_created": "2024-03-02T22:14:38.083Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141230S", - "compute_time_sec": 0.14123, + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, "compute_times": { - "prove": 0.09054448700044304, - "total": 0.14681443898007274, - "queued": 0.857495, - "clean_up": 0.01092955400235951, - "file_setup": 0.04332920000888407, - "save_results": 0.0015883928863331676 + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.946Z", + "date_created": "2024-03-02T22:14:36.595Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124351S", - "compute_time_sec": 0.124351, + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, "compute_times": { - "prove": 0.07182355504482985, - "total": 0.12982704397290945, - "queued": 0.172555, - "clean_up": 0.020923485048115253, - "file_setup": 0.03491202800069004, - "save_results": 0.0018582409247756004 + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.938Z", + "date_created": "2024-03-02T22:14:35.046Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.148920S", - "compute_time_sec": 0.14892, + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, "compute_times": { - "prove": 0.07293843105435371, - "total": 0.15480406815186143, - "queued": 0.196521, - "clean_up": 0.040053355041891336, - "file_setup": 0.03987180581316352, - "save_results": 0.0016056180465966463 + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.776Z", + "date_created": "2024-03-02T22:14:33.547Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106213S", - "compute_time_sec": 0.106213, + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, "compute_times": { - "prove": 0.08078976103570312, - "total": 0.11167675291653723, - "queued": 0.231229, - "clean_up": 0.005760588916018605, - "file_setup": 0.023330271942541003, - "save_results": 0.0013793050311505795 + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:30.141Z", + "date_created": "2024-03-02T22:13:40.710Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111507S", - "compute_time_sec": 0.111507, + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, "compute_times": { - "prove": 0.075576186995022, - "total": 0.11713997193146497, - "queued": 0.16129, - "clean_up": 0.0037848310312256217, - "file_setup": 0.035947992000728846, - "save_results": 0.0014955269871279597 + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:28.622Z", + "date_created": "2024-03-02T22:13:39.000Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110477S", - "compute_time_sec": 0.110477, + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, "compute_times": { - "prove": 0.07629627687856555, - "total": 0.11736977496184409, - "queued": 0.188204, - "clean_up": 0.004256210057064891, - "file_setup": 0.034773221937939525, - "save_results": 0.0016197890508919954 + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:27.059Z", + "date_created": "2024-03-02T22:13:37.260Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117834S", - "compute_time_sec": 0.117834, + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, "compute_times": { - "prove": 0.07615005096886307, - "total": 0.12300548201892525, - "queued": 0.205188, - "clean_up": 0.013062510988675058, - "file_setup": 0.03202356898691505, - "save_results": 0.001405435032211244 + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:25.393Z", + "date_created": "2024-03-02T22:13:35.691Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133236S", - "compute_time_sec": 0.133236, + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, "compute_times": { - "prove": 0.08939769200515002, - "total": 0.13879455591086298, - "queued": 0.161569, - "clean_up": 0.004053406999446452, - "file_setup": 0.04343735601287335, - "save_results": 0.0015739259542897344 + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:23.768Z", + "date_created": "2024-03-02T22:13:34.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106542S", - "compute_time_sec": 0.106542, + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, "compute_times": { - "prove": 0.07830432313494384, - "total": 0.11298795603215694, - "queued": 0.210482, - "clean_up": 0.003878022078424692, - "file_setup": 0.02870348491705954, - "save_results": 0.0017148179467767477 + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:22.175Z", + "date_created": "2024-03-02T22:13:32.679Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109350S", - "compute_time_sec": 0.10935, + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, "compute_times": { - "prove": 0.07757606508675963, - "total": 0.11466619104612619, - "queued": 0.256591, - "clean_up": 0.010891324956901371, - "file_setup": 0.024280331912450492, - "save_results": 0.0015671229921281338 + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:20.592Z", + "date_created": "2024-03-02T22:13:31.191Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097386S", - "compute_time_sec": 0.097386, + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, "compute_times": { - "prove": 0.07514205400366336, - "total": 0.10310335899703205, - "queued": 0.159439, - "clean_up": 0.0037166819674894214, - "file_setup": 0.022262264043092728, - "save_results": 0.0016199250239878893 + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:18.948Z", + "date_created": "2024-03-02T22:13:29.642Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122932S", - "compute_time_sec": 0.122932, + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, "compute_times": { - "prove": 0.08516530389897525, - "total": 0.13015575311146677, - "queued": 0.233137, - "clean_up": 0.014129698975011706, - "file_setup": 0.0285584160592407, - "save_results": 0.0018891170620918274 - }, - "file_size": 532, - "proof_input": null, + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 + }, + "file_size": 532, + "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:17.333Z", + "date_created": "2024-03-02T22:13:27.981Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.131533S", - "compute_time_sec": 0.131533, + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, "compute_times": { - "prove": 0.07857439492363483, - "total": 0.13676583603955805, - "queued": 0.227587, - "clean_up": 0.010069372947327793, - "file_setup": 0.04610578005667776, - "save_results": 0.001678532105870545 + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:15.726Z", + "date_created": "2024-03-02T22:13:26.328Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109690S", - "compute_time_sec": 0.10969, + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, "compute_times": { - "prove": 0.07168154697865248, - "total": 0.11618917598389089, - "queued": 0.177243, - "clean_up": 0.0042525139870122075, - "file_setup": 0.038573550991714, - "save_results": 0.0013375390553846955 + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:14.150Z", + "date_created": "2024-03-02T21:55:54.687Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138403S", - "compute_time_sec": 0.138403, + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, "compute_times": { - "prove": 0.08462183806113899, - "total": 0.14498792798258364, - "queued": 0.218187, - "clean_up": 0.005619590170681477, - "file_setup": 0.052473017014563084, - "save_results": 0.0018791758920997381 + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:12.520Z", + "date_created": "2024-03-02T21:55:52.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.179439S", - "compute_time_sec": 0.179439, + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, "compute_times": { - "prove": 0.12221004103776067, - "total": 0.18509791197720915, - "queued": 0.218919, - "clean_up": 0.010833634994924068, - "file_setup": 0.04949615302029997, - "save_results": 0.002165056997910142 + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:10.959Z", + "date_created": "2024-03-02T21:55:49.557Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133456S", - "compute_time_sec": 0.133456, + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, "compute_times": { - "prove": 0.07268570107407868, - "total": 0.1394008860224858, - "queued": 0.151876, - "clean_up": 0.010548806982114911, - "file_setup": 0.05424705799669027, - "save_results": 0.0015943750040605664 + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:09.368Z", + "date_created": "2024-03-02T21:55:47.111Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104582S", - "compute_time_sec": 0.104582, + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, "compute_times": { - "prove": 0.0761667680926621, - "total": 0.11041608499363065, - "queued": 0.232885, - "clean_up": 0.004713465925306082, - "file_setup": 0.027426036074757576, - "save_results": 0.0016772879753261805 + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:07.782Z", + "date_created": "2024-03-02T21:55:44.587Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103484S", - "compute_time_sec": 0.103484, + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, "compute_times": { - "prove": 0.07775443291757256, - "total": 0.1097704729763791, - "queued": 0.165293, - "clean_up": 0.003079058020375669, - "file_setup": 0.027136432006955147, - "save_results": 0.0014415140030905604 + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:06.214Z", + "date_created": "2024-03-02T21:55:32.787Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110249S", - "compute_time_sec": 0.110249, + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, "compute_times": { - "prove": 0.07331179198808968, - "total": 0.11586580192670226, - "queued": 0.160156, - "clean_up": 0.0036032439675182104, - "file_setup": 0.037042855052277446, - "save_results": 0.0015652959700673819 + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:04.623Z", + "date_created": "2024-03-02T21:55:29.506Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113074S", - "compute_time_sec": 0.113074, + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, "compute_times": { - "prove": 0.07531885500065982, - "total": 0.11918418202549219, - "queued": 0.21149, - "clean_up": 0.004545237170532346, - "file_setup": 0.03716830490157008, - "save_results": 0.001786466920748353 + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:03.050Z", + "date_created": "2024-03-02T21:55:26.174Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118456S", - "compute_time_sec": 0.118456, + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, "compute_times": { - "prove": 0.08025075704790652, - "total": 0.12484451208729297, - "queued": 0.171108, - "clean_up": 0.003666321048513055, - "file_setup": 0.03877517697401345, - "save_results": 0.0017490109894424677 + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:01.474Z", + "date_created": "2024-03-02T21:10:50.403Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097245S", - "compute_time_sec": 0.097245, + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, "compute_times": { - "prove": 0.07467410003300756, - "total": 0.1032019880367443, - "queued": 1.000871, - "clean_up": 0.003617644077166915, - "file_setup": 0.023070842027664185, - "save_results": 0.0014518279349431396 + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:59.935Z", + "date_created": "2024-02-28T18:02:47.502Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124478S", - "compute_time_sec": 0.124478, + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, "compute_times": { - "prove": 0.07985819177702069, - "total": 0.131462125107646, - "queued": 0.189545, - "clean_up": 0.00692735007032752, - "file_setup": 0.04234403814189136, - "save_results": 0.001923317089676857 + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 }, - "file_size": 532, + "file_size": 451, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:58.407Z", + "date_created": "2024-02-28T18:02:39.474Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119553S", - "compute_time_sec": 0.119553, + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, "compute_times": { - "prove": 0.08296615700237453, - "total": 0.12573627301026136, - "queued": 0.226083, - "clean_up": 0.008650688105262816, - "file_setup": 0.03199622000101954, - "save_results": 0.0017465719720348716 + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" }, { - "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:56.860Z", + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103716S", - "compute_time_sec": 0.103716, + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, "compute_times": { - "prove": 0.06979906605556607, - "total": 0.10923597402870655, - "queued": 0.139177, - "clean_up": 0.0036087740445509553, - "file_setup": 0.03399856202304363, - "save_results": 0.0014903269475325942 + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:55.316Z", + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164072S", - "compute_time_sec": 0.164072, + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, "compute_times": { - "prove": 0.12517174892127514, - "total": 0.17043978604488075, - "queued": 0.207351, - "clean_up": 0.003746662987396121, - "file_setup": 0.039150891127064824, - "save_results": 0.0019460059702396393 + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:53.766Z", + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116515S", - "compute_time_sec": 0.116515, + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, "compute_times": { - "prove": 0.07856976403854787, - "total": 0.12284065398853272, - "queued": 0.204898, - "clean_up": 0.004192995955236256, - "file_setup": 0.03768792003393173, - "save_results": 0.0020342780044302344 + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:52.213Z", + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109618S", - "compute_time_sec": 0.109618, + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, "compute_times": { - "prove": 0.07834382401779294, - "total": 0.11546277697198093, - "queued": 0.228319, - "clean_up": 0.0037355918902903795, - "file_setup": 0.031366192968562245, - "save_results": 0.0016647940501570702 + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:50.640Z", + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102363S", - "compute_time_sec": 0.102363, + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, "compute_times": { - "prove": 0.07708223187364638, - "total": 0.11076221195980906, - "queued": 0.235274, - "clean_up": 0.004102661041542888, - "file_setup": 0.02742593502625823, - "save_results": 0.0017483970150351524 + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 }, - "file_size": 532, + "file_size": 789, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:49.058Z", + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126055S", - "compute_time_sec": 0.126055, + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, "compute_times": { - "prove": 0.08462739107199013, - "total": 0.13239038200117648, - "queued": 0.208639, - "clean_up": 0.017553703975863755, - "file_setup": 0.028355297981761396, - "save_results": 0.0014984130393713713 + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" }, { - "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:47.479Z", + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114603S", - "compute_time_sec": 0.114603, + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, "compute_times": { - "prove": 0.07099237700458616, - "total": 0.1205103590618819, - "queued": 0.177097, - "clean_up": 0.00736055604647845, - "file_setup": 0.04027851507999003, - "save_results": 0.0015338469529524446 + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:45.920Z", + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105545S", - "compute_time_sec": 0.105545, + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, "compute_times": { - "prove": 0.07798794494010508, - "total": 0.11226446111686528, - "queued": 0.210392, - "clean_up": 0.003587795188650489, - "file_setup": 0.02863957593217492, - "save_results": 0.0016675579827278852 + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 }, - "file_size": 532, + "file_size": 713, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:44.421Z", + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.168234S", - "compute_time_sec": 0.168234, + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, "compute_times": { - "prove": 0.10509133199229836, - "total": 0.1757285799831152, - "queued": 0.219364, - "clean_up": 0.004795938031747937, - "file_setup": 0.06402788893319666, - "save_results": 0.0014585850294679403 + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:42.838Z", + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138451S", - "compute_time_sec": 0.138451, + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, "compute_times": { - "prove": 0.08344166504684836, - "total": 0.14460852497722954, - "queued": 0.193296, - "clean_up": 0.02906027901917696, - "file_setup": 0.030170131009072065, - "save_results": 0.0015538459410890937 + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:41.260Z", + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108498S", - "compute_time_sec": 0.108498, + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, "compute_times": { - "prove": 0.07821972295641899, - "total": 0.11512337112799287, - "queued": 0.207493, - "clean_up": 0.011428299127146602, - "file_setup": 0.023141066078096628, - "save_results": 0.0019629159942269325 + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:39.684Z", + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125239S", - "compute_time_sec": 0.125239, + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, "compute_times": { - "prove": 0.07802591007202864, - "total": 0.13191273796837777, - "queued": 0.208815, - "clean_up": 0.005445771967060864, - "file_setup": 0.04654695594217628, - "save_results": 0.0015280540101230145 + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:38.137Z", + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113764S", - "compute_time_sec": 0.113764, + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, "compute_times": { - "prove": 0.07411053997930139, - "total": 0.11965196207165718, - "queued": 0.123697, - "clean_up": 0.021386098000220954, - "file_setup": 0.022322733071632683, - "save_results": 0.001491626026108861 + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:36.609Z", + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110500S", - "compute_time_sec": 0.1105, + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, "compute_times": { - "prove": 0.07843833207152784, - "total": 0.1174131550360471, - "queued": 0.188117, - "clean_up": 0.013684443198144436, - "file_setup": 0.02307076589204371, - "save_results": 0.001790786860510707 + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:35.023Z", + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113878S", - "compute_time_sec": 0.113878, + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, "compute_times": { - "prove": 0.08454172103665769, - "total": 0.11953117907978594, - "queued": 0.202486, - "clean_up": 0.004061337094753981, - "file_setup": 0.028714405023492873, - "save_results": 0.0018627499230206013 + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:33.480Z", + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124901S", - "compute_time_sec": 0.124901, + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, "compute_times": { - "prove": 0.07596357993315905, - "total": 0.13044002500828356, - "queued": 0.140458, - "clean_up": 0.005051521933637559, - "file_setup": 0.0476306100608781, - "save_results": 0.0014870570739731193 + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:31.932Z", - "perform_verify": false, - "status": "Ready", + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", + "perform_verify": false, + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109334S", - "compute_time_sec": 0.109334, + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, "compute_times": { - "prove": 0.0772264408878982, - "total": 0.11520785093307495, - "queued": 0.214539, - "clean_up": 0.014989732997491956, - "file_setup": 0.02082884218543768, - "save_results": 0.0017384679522365332 + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:30.405Z", + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099198S", - "compute_time_sec": 0.099198, + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, "compute_times": { - "prove": 0.07795899198390543, - "total": 0.3439350420376286, - "queued": 0.44235, - "clean_up": 0.003542012069374323, - "file_setup": 0.02195370604749769, - "save_results": 0.00164421193767339 + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:28.882Z", + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.096462S", - "compute_time_sec": 0.096462, + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, "compute_times": { - "prove": 0.0719371628947556, - "total": 0.10235371999442577, - "queued": 0.16149, - "clean_up": 0.0030283130472525954, - "file_setup": 0.0255846930667758, - "save_results": 0.001458707032725215 + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:27.303Z", + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126276S", - "compute_time_sec": 0.126276, + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, "compute_times": { - "prove": 0.08422461082227528, - "total": 0.13323151203803718, - "queued": 0.217879, - "clean_up": 0.01238051219843328, - "file_setup": 0.03462041402235627, - "save_results": 0.0016039679758250713 + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:25.623Z", + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138368S", - "compute_time_sec": 0.138368, + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, "compute_times": { - "prove": 0.09363546408712864, - "total": 0.14376210200134665, - "queued": 0.257057, - "clean_up": 0.007791407988406718, - "file_setup": 0.03904824494384229, - "save_results": 0.0021443869918584824 + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:24.063Z", + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098465S", - "compute_time_sec": 0.098465, + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, "compute_times": { - "prove": 0.07042361702769995, - "total": 0.10373939899727702, - "queued": 0.163439, - "clean_up": 0.003754721023142338, - "file_setup": 0.027845817035995424, - "save_results": 0.0013589690206572413 + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:22.482Z", + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140408S", - "compute_time_sec": 0.140408, + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, "compute_times": { - "prove": 0.09134363988414407, - "total": 0.1467661359347403, - "queued": 0.234166, - "clean_up": 0.011396168963983655, - "file_setup": 0.04208241100423038, - "save_results": 0.001585459103807807 + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:20.927Z", + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141387S", - "compute_time_sec": 0.141387, + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, "compute_times": { - "prove": 0.09125522000249475, - "total": 0.14774739800486714, - "queued": 0.197743, - "clean_up": 0.012068960932083428, - "file_setup": 0.04265728604514152, - "save_results": 0.0014312650309875607 + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 }, - "file_size": 532, + "file_size": 713, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:19.297Z", + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102332S", - "compute_time_sec": 0.102332, + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, "compute_times": { - "prove": 0.07266321196220815, - "total": 0.10838873707689345, - "queued": 0.146978, - "clean_up": 0.008384920074604452, - "file_setup": 0.02525644702836871, - "save_results": 0.0017374729504808784 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 + }, + "file_size": 711, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:17.717Z", + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111570S", - "compute_time_sec": 0.11157, + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, "compute_times": { - "prove": 0.07737825997173786, - "total": 0.11877415492199361, - "queued": 1.050496, - "clean_up": 0.003718754043802619, - "file_setup": 0.03554413700476289, - "save_results": 0.001658557914197445 + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:16.204Z", + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.137641S", - "compute_time_sec": 0.137641, + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, "compute_times": { - "prove": 0.0947769220219925, - "total": 0.14389025000855327, - "queued": 0.224558, - "clean_up": 0.012663225992582738, - "file_setup": 0.03437299397774041, - "save_results": 0.0016881220508366823 + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:14.654Z", + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.130554S", - "compute_time_sec": 0.130554, + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, "compute_times": { - "prove": 0.07754861598368734, - "total": 0.1364057119935751, - "queued": 0.181242, - "clean_up": 0.01912771293427795, - "file_setup": 0.03766816493589431, - "save_results": 0.0017138230614364147 + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null - }, + } + ], + "rawHeaders": [ + "Content-Length", + "234573", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed55c16ee23010cdd95f31b2f6001412c70422c172ea5e7b6a7fc01837f16e6247b643b542fcfbca49a0205ab112485dadf22eb66732339ef1bc0c9786eb7252d68593552185a1119786d7d285bc5105b78310324f12080889d319f12b21346957af4ba710c4c92c4de65342e37940e234257308c81d625f456d1d3301b939569b0b1cd77f00ef354dcfea7b8acab0ac64d0be35d0908464895034422fb9b4d0b502385156057302782ef82f0b2e670e3848bf1370681ece9cd40af42b30606a03eb103debda7001832766780e311d0325743a5c00ca9dabec228a369adbaed542a9a34c38275536f1afe2c4267a33b2397737b1d1df1a725d56b238371d4500081d93797a6f7a180c61e795001045f043f08299633a56668a153604f0faf6045255b503b6fc40b83e17eada79295fbe0778d4ca3ac3a47207af1cbeaf56c060d45aef11f21968259483924905abd3fb0e864b74971ee197fc6f72087f5aadee12e12aff098d0ffc9fd129493dff6312f7fcbf15a735edf6d3989ef37f87195ee0191ee3355ee004efbfecb63dbe021ff0df4ab531f28e3f802bfc9f527a31ff694c7bfedf8a634d29f974feef1000fe66792e4a8617800fd3b56b02565511ab64b48d3bc9a4644abe0aeb26ad4dd32678ecbd28560aefe2b2a55a7d37875f7e57279f75aada6c1be15ad159d2ca2aa3b75265cf3e4ca3cb8c76793c6fb56fd22961ed6333e585691c3e3c60b4bfcf58ecd1a3478fff1e7f00f5941d62001000000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_smart_contract_calldata=false&include_verification_key=false", + "body": "", + "status": 200, + "response": [ { - "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:13.059Z", + "proof_id": "441c1d46-a6e4-4e73-98be-1c87e892c9bb", + "circuit_name": "circom-multiplier2", + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:58.370Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105571S", - "compute_time_sec": 0.105571, + "compute_time": "P0DT00H00M04.948502S", + "compute_time_sec": 4.948502, "compute_times": { - "prove": 0.07499144691973925, - "total": 0.11162168602459133, - "queued": 0.211993, - "clean_up": 0.004386739106848836, - "file_setup": 0.030089835869148374, - "save_results": 0.0017889870796352625 + "prove": 4.804858028001036, + "total": 4.954793066997809, + "queued": 4.113693, + "clean_up": 0.005270341996947536, + "file_setup": 0.01681686499796342, + "save_results": 0.0022578030002478044, + "export_calldata": 0.10960615099975257, + "generate_witness_c": 0.015163871001277585 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:11.558Z", + "proof_id": "bfe813bc-8ba4-4c16-88bd-4460709b37b4", + "circuit_name": "circom-multiplier2", + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.254Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104533S", - "compute_time_sec": 0.104533, + "compute_time": "P0DT00H00M05.744789S", + "compute_time_sec": 5.744789, "compute_times": { - "prove": 0.07792208204045892, - "total": 0.11210504802875221, - "queued": 0.217616, - "clean_up": 0.007965726079419255, - "file_setup": 0.024172692908905447, - "save_results": 0.0016238619573414326 + "prove": 5.5894722339980945, + "total": 5.752321984997252, + "queued": 0.442669, + "clean_up": 0.004489405997446738, + "file_setup": 0.022617268001340562, + "save_results": 0.001973251000890741, + "export_calldata": 0.11522039000192308, + "generate_witness_c": 0.01802813399990555 }, - "file_size": 532, + "file_size": 1351, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:10.032Z", + "proof_id": "57b86e24-c6ed-440d-b889-d830850742d4", + "circuit_name": "circom-multiplier2", + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.234Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.120359S", - "compute_time_sec": 0.120359, + "compute_time": "P0DT00H00M03.776612S", + "compute_time_sec": 3.776612, "compute_times": { - "prove": 0.07663809997029603, - "total": 0.12461252498906106, - "queued": 0.140378, - "clean_up": 0.02126628893893212, - "file_setup": 0.02467076701577753, - "save_results": 0.0017215840052813292 + "prove": 3.6362894689991663, + "total": 3.7815391939984693, + "queued": 0.526972, + "clean_up": 0.0036153680011921097, + "file_setup": 0.018255920000228798, + "save_results": 0.0018909639984485693, + "export_calldata": 0.10398840000198106, + "generate_witness_c": 0.017069464000087464 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:08.462Z", + "proof_id": "249f452d-2c55-4148-97ea-bc05b735e041", + "circuit_name": "circom-multiplier2", + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:57.171Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111685S", - "compute_time_sec": 0.111685, + "compute_time": "P0DT00H00M05.603900S", + "compute_time_sec": 5.6039, "compute_times": { - "prove": 0.08040205901488662, - "total": 0.11877126502804458, - "queued": 0.199786, - "clean_up": 0.0037285531871020794, - "file_setup": 0.0324579190928489, - "save_results": 0.0017784868832677603 + "prove": 5.459078328000032, + "total": 5.610627756999747, + "queued": 0.420203, + "clean_up": 0.004868047999480041, + "file_setup": 0.02211545399768511, + "save_results": 0.0022768349990656134, + "export_calldata": 0.10511248600232648, + "generate_witness_c": 0.01666070999999647 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:06.935Z", + "proof_id": "3ee89584-01a2-4d8f-ac17-7502e50a8781", + "circuit_name": "circom-multiplier2", + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:00.995Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104458S", - "compute_time_sec": 0.104458, + "compute_time": "P0DT00H00M03.405317S", + "compute_time_sec": 3.405317, "compute_times": { - "prove": 0.07790789101272821, - "total": 0.11097153997980058, - "queued": 0.207337, - "clean_up": 0.007473509991541505, - "file_setup": 0.023695859010331333, - "save_results": 0.0015444039599969983 + "prove": 3.257512511998357, + "total": 3.412531285001023, + "queued": 0.445626, + "clean_up": 0.003913354001269909, + "file_setup": 0.02324151900029392, + "save_results": 0.0026117130000784528, + "export_calldata": 0.10888770000019576, + "generate_witness_c": 0.015812714998901356 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:05.334Z", + "proof_id": "efaa6bf4-3645-4880-a193-d6bd116274c7", + "circuit_name": "circom-multiplier2", + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:52.681Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174494S", - "compute_time_sec": 0.174494, + "compute_time": "P0DT00H00M05.934746S", + "compute_time_sec": 5.934746, "compute_times": { - "prove": 0.13656924897804856, - "total": 0.1803733000997454, - "queued": 0.159095, - "clean_up": 0.00582932005636394, - "file_setup": 0.035943722003139555, - "save_results": 0.0016814139671623707 + "prove": 5.787349419999373, + "total": 5.939744459999929, + "queued": 0.495867, + "clean_up": 0.0040207270030805375, + "file_setup": 0.019113056998321554, + "save_results": 0.0023805119999451563, + "export_calldata": 0.10894711299988558, + "generate_witness_c": 0.017442213000322226 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:03.737Z", + "proof_id": "dcb84b60-ecdf-4ea0-94da-4900d30aabab", + "circuit_name": "circom-multiplier2", + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:41.570Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094572S", - "compute_time_sec": 0.094572, + "compute_time": "P0DT00H00M05.617362S", + "compute_time_sec": 5.617362, "compute_times": { - "prove": 0.07406232389621437, - "total": 0.10051628504879773, - "queued": 0.192337, - "clean_up": 0.00337238609790802, - "file_setup": 0.020903730997815728, - "save_results": 0.0018227370455861092 + "prove": 5.474078178998752, + "total": 5.622463510000671, + "queued": 0.418167, + "clean_up": 0.00803620700025931, + "file_setup": 0.018854406000173185, + "save_results": 0.0017511790028947871, + "export_calldata": 0.10220659499827889, + "generate_witness_c": 0.01688886800184264 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:02.220Z", + "proof_id": "8e5c7aaa-802e-4745-9bf2-66019dd1a601", + "circuit_name": "circom-multiplier2", + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:22.558Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111599S", - "compute_time_sec": 0.111599, + "compute_time": "P0DT00H00M03.001802S", + "compute_time_sec": 3.001802, "compute_times": { - "prove": 0.08133828500285745, - "total": 0.11800080502871424, - "queued": 0.22429, - "clean_up": 0.004713690024800599, - "file_setup": 0.029832501895725727, - "save_results": 0.001725762034766376 + "prove": 2.850486497001839, + "total": 3.0079437349995715, + "queued": 0.429195, + "clean_up": 0.00477394299741718, + "file_setup": 0.02143064499978209, + "save_results": 0.002050779999990482, + "export_calldata": 0.11096191999968141, + "generate_witness_c": 0.017688288000499597 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:00.620Z", + "proof_id": "6f9d5bd9-f691-4665-8ba8-1fc3ad30f4da", + "circuit_name": "circom-multiplier2", + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", + "circuit_type": "circom", + "date_created": "2024-03-14T20:00:03.354Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114347S", - "compute_time_sec": 0.114347, + "compute_time": "P0DT00H00M05.965728S", + "compute_time_sec": 5.965728, "compute_times": { - "prove": 0.0749998859828338, - "total": 0.11923162802122533, - "queued": 0.187559, - "clean_up": 0.00959215103648603, - "file_setup": 0.032431255909614265, - "save_results": 0.0015854650409892201 + "prove": 5.812987373999931, + "total": 5.971253014999093, + "queued": 0.495867, + "clean_up": 0.005065063000074588, + "file_setup": 0.025277897002524696, + "save_results": 0.002423641999484971, + "export_calldata": 0.10757091800041962, + "generate_witness_c": 0.017406072998710442 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:59.069Z", + "proof_id": "6281a4c2-09a1-4945-84bc-b550dccd7a50", + "circuit_name": "circom-multiplier2", + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", + "circuit_type": "circom", + "date_created": "2024-03-14T19:53:16.126Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.100689S", - "compute_time_sec": 0.100689, + "compute_time": "P0DT00H00M02.228147S", + "compute_time_sec": 2.228147, "compute_times": { - "prove": 0.07633324712514877, - "total": 0.10863703698851168, - "queued": 0.172422, - "clean_up": 0.0039177220314741135, - "file_setup": 0.026381932897493243, - "save_results": 0.0016446078661829233 + "prove": 2.077421851001418, + "total": 2.234921953000594, + "queued": 0.418659, + "clean_up": 0.003966344000218669, + "file_setup": 0.030404459001147188, + "save_results": 0.0023475250018236693, + "export_calldata": 0.10374246599894832, + "generate_witness_c": 0.016470030997879803 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:57.502Z", + "proof_id": "2dc6b159-345d-4f56-8b8f-d8bb8628fa63", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:45.755Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141413S", - "compute_time_sec": 0.141413, + "compute_time": "P0DT00H00M05.721447S", + "compute_time_sec": 5.721447, "compute_times": { - "prove": 0.07754256599582732, - "total": 0.1476239999756217, - "queued": 0.170377, - "clean_up": 0.01235142897348851, - "file_setup": 0.05578526598401368, - "save_results": 0.0016236520605161786 + "prove": 5.535044663996814, + "total": 5.726598596997064, + "queued": 0.422717, + "clean_up": 0.03942027899756795, + "file_setup": 0.019663279999804217, + "save_results": 0.002537604003009619, + "export_calldata": 0.11143504299980123, + "generate_witness_c": 0.018077863001963124 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:55.884Z", + "proof_id": "c7c29d0f-2294-4c56-9115-58e4f88a74af", + "circuit_name": "circom-multiplier2", + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:35.490Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110891S", - "compute_time_sec": 0.110891, + "compute_time": "P0DT00H00M05.927519S", + "compute_time_sec": 5.927519, "compute_times": { - "prove": 0.07763317495118827, - "total": 0.11661336896941066, - "queued": 0.143468, - "clean_up": 0.0035630339989438653, - "file_setup": 0.0330983359599486, - "save_results": 0.0019896290032193065 + "prove": 5.770760945000802, + "total": 5.933365464999952, + "queued": 0.861562, + "clean_up": 0.003432298999541672, + "file_setup": 0.026692643001297256, + "save_results": 0.0025084219996642787, + "export_calldata": 0.105197737000708, + "generate_witness_c": 0.024245210999652045 }, - "file_size": 532, + "file_size": 1347, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:54.264Z", + "proof_id": "e008931a-4064-414d-accb-aac8b3205dd3", + "circuit_name": "circom-multiplier2", + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:24.665Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099387S", - "compute_time_sec": 0.099387, + "compute_time": "P0DT00H00M05.632578S", + "compute_time_sec": 5.632578, "compute_times": { - "prove": 0.07505850703455508, - "total": 0.10617876495234668, - "queued": 0.194099, - "clean_up": 0.0034724250435829163, - "file_setup": 0.025419748853892088, - "save_results": 0.001774586969986558 + "prove": 5.469727709001745, + "total": 5.638864864002244, + "queued": 0.416688, + "clean_up": 0.00552048399913474, + "file_setup": 0.034471152001060545, + "save_results": 0.0021238860026642215, + "export_calldata": 0.1107287599988922, + "generate_witness_c": 0.015849075996811735 }, - "file_size": 532, + "file_size": 1345, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:52.472Z", + "proof_id": "62ef1d39-1cc1-41e2-8b05-ae3cf2c6bafa", + "circuit_name": "circom-multiplier2", + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:54.345Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.127179S", - "compute_time_sec": 0.127179, + "compute_time": "P0DT00H00M01.864568S", + "compute_time_sec": 1.864568, "compute_times": { - "prove": 0.08727552101481706, - "total": 0.13350528001319617, - "queued": 0.199888, - "clean_up": 0.006217173999175429, - "file_setup": 0.038007476017810404, - "save_results": 0.0016796219861134887 + "prove": 1.6979890130023705, + "total": 1.8710837769976933, + "queued": 0.420843, + "clean_up": 0.004697303000284592, + "file_setup": 0.03166239900019718, + "save_results": 0.0022494080003525596, + "export_calldata": 0.11624086399751832, + "generate_witness_c": 0.017705917998682708 }, - "file_size": 532, + "file_size": 1353, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:50.941Z", + "proof_id": "b0e83342-ed0f-4847-a564-7e1189f9ddec", + "circuit_name": "circom-multiplier2", + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:50.463Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122591S", - "compute_time_sec": 0.122591, + "compute_time": "P0DT00H00M05.917205S", + "compute_time_sec": 5.917205, "compute_times": { - "prove": 0.08476738398894668, - "total": 0.1283225070219487, - "queued": 0.166336, - "clean_up": 0.004483919939957559, - "file_setup": 0.03699059609789401, - "save_results": 0.0017628020141273737 + "prove": 5.76882896099778, + "total": 5.923281269002473, + "queued": 0.473413, + "clean_up": 0.004220196002279408, + "file_setup": 0.023053355002048193, + "save_results": 0.002412202000414254, + "export_calldata": 0.11001600300005521, + "generate_witness_c": 0.014210194000042975 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:49.312Z", + "proof_id": "31737430-a60c-4afa-a802-ab9745a50855", + "circuit_name": "circom-multiplier2", + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:29.388Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141097S", - "compute_time_sec": 0.141097, + "compute_time": "P0DT00H00M03.190486S", + "compute_time_sec": 3.190486, "compute_times": { - "prove": 0.0733918990008533, - "total": 0.14723626291379333, - "queued": 0.218888, - "clean_up": 0.023661232087761164, - "file_setup": 0.04160579387098551, - "save_results": 0.008111441973596811 + "prove": 3.0487610410018533, + "total": 3.1961618709974573, + "queued": 0.433578, + "clean_up": 0.005094486998132197, + "file_setup": 0.019373082999663893, + "save_results": 0.002381483998760814, + "export_calldata": 0.1057304940004542, + "generate_witness_c": 0.01445452500047395 }, - "file_size": 532, + "file_size": 1352, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:47.661Z", + "proof_id": "1d3b53dd-df47-4eac-a4a8-63e8dcb4fba0", + "circuit_name": "circom-multiplier2", + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:29.327Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105830S", - "compute_time_sec": 0.10583, + "compute_time": "P0DT00H00M05.765340S", + "compute_time_sec": 5.76534, "compute_times": { - "prove": 0.07938949600793421, - "total": 0.11207641800865531, - "queued": 0.206942, - "clean_up": 0.00690544699318707, - "file_setup": 0.02367080794647336, - "save_results": 0.001770041068084538 + "prove": 5.587391068998841, + "total": 5.7718329329982225, + "queued": 0.447915, + "clean_up": 0.0038716149974789005, + "file_setup": 0.020665116000600392, + "save_results": 0.0016502670005138498, + "export_calldata": 0.140346321000834, + "generate_witness_c": 0.01741997200224432 }, - "file_size": 532, + "file_size": 1349, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:46.099Z", + "proof_id": "6db92f74-636d-4113-a191-016d31af5a60", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:40:56.709Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164153S", - "compute_time_sec": 0.164153, + "compute_time": "P0DT00H00M06.111263S", + "compute_time_sec": 6.111263, "compute_times": { - "prove": 0.10050884890370071, - "total": 0.16989507200196385, - "queued": 0.137523, - "clean_up": 0.0296879590023309, - "file_setup": 0.033167905057780445, - "save_results": 0.006188624072819948 + "prove": 5.801642374000949, + "total": 6.118132268999034, + "queued": 0.417176, + "clean_up": 0.15879904399844236, + "file_setup": 0.028945090998604428, + "save_results": 0.002337395002541598, + "export_calldata": 0.10591289899821277, + "generate_witness_c": 0.020032639000419294 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:44.552Z", + "proof_id": "28c4506e-ccd4-443c-90f3-adb25eb4ad03", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:40:37.936Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129635S", - "compute_time_sec": 0.129635, + "compute_time": "P0DT00H00M08.087169S", + "compute_time_sec": 8.087169, "compute_times": { - "prove": 0.07830019295215607, - "total": 0.13494652090594172, - "queued": 0.221517, - "clean_up": 0.018889005994424224, - "file_setup": 0.035788336070254445, - "save_results": 0.001614188076928258 + "total": 8.095745701000851, + "queued": 0.430515, + "clean_up": 6.9514737549980055, + "file_setup": 0.5215178199978254, + "create_proof": 0.6202040329990268, + "save_results": 0.0021520290029002354 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:42.989Z", + "proof_id": "854a000e-771d-4f12-b0a7-72860557d1b4", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T19:35:35.367Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109912S", - "compute_time_sec": 0.109912, + "compute_time": "P0DT00H00M05.625640S", + "compute_time_sec": 5.62564, "compute_times": { - "prove": 0.08981344511266798, - "total": 0.11624708399176598, - "queued": 0.223804, - "clean_up": 0.003414363949559629, - "file_setup": 0.021206943900324404, - "save_results": 0.0014059050008654594 + "total": 5.63317780899888, + "queued": 0.426409, + "clean_up": 4.479961421999178, + "file_setup": 0.563317954998638, + "create_proof": 0.587274489000265, + "save_results": 0.002000247000978561 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:41.451Z", - "perform_verify": false, + "proof_id": "38d6cdd9-8ae0-4bba-a019-be7beb4676a0", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:15:59.739Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115519S", - "compute_time_sec": 0.115519, + "compute_time": "P0DT00H00M08.028110S", + "compute_time_sec": 8.02811, "compute_times": { - "prove": 0.07633757498115301, - "total": 0.1204413790255785, - "queued": 0.742162, - "clean_up": 0.016363205038942397, - "file_setup": 0.025892338017001748, - "save_results": 0.0014968069735914469 + "prove": 5.743801852000615, + "total": 8.034273915996891, + "queued": 0.418479, + "clean_up": 1.4221806829991692, + "file_setup": 0.026719098001194652, + "save_results": 0.0024404450014117174, + "verify_check": 0.7168494949983142, + "export_calldata": 0.1096146449999651, + "generate_witness_c": 0.011982872998487437 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:39.456Z", + "proof_id": "dca14000-9c8e-4010-84a0-6ee0f8141c63", + "circuit_name": "circom-multiplier2", + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", + "circuit_type": "circom", + "date_created": "2024-03-14T19:13:48.590Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108406S", - "compute_time_sec": 0.108406, + "compute_time": "P0DT00H00M05.853836S", + "compute_time_sec": 5.853836, "compute_times": { - "prove": 0.0791304879821837, - "total": 0.11538788001053035, - "queued": 0.190948, - "clean_up": 0.003850993001833558, - "file_setup": 0.030011237133294344, - "save_results": 0.0017656770069152117 + "prove": 5.50850399599949, + "total": 5.85873119399912, + "queued": 0.429635, + "clean_up": 0.19279620100132888, + "file_setup": 0.018208794001111528, + "save_results": 0.0019690720000653528, + "export_calldata": 0.12116290699850651, + "generate_witness_c": 0.015544702000624966 }, - "file_size": 532, + "file_size": 1350, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:37.847Z", + "proof_id": "b29866d5-6977-44a1-b53a-b59bd5f07c5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", + "circuit_type": "circom", + "date_created": "2024-03-14T19:13:47.134Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092359S", - "compute_time_sec": 0.092359, + "compute_time": "P0DT00H00M06.759570S", + "compute_time_sec": 6.75957, "compute_times": { - "prove": 0.07222839200403541, - "total": 0.09727117500733584, - "queued": 0.185071, - "clean_up": 0.003502683015540242, - "file_setup": 0.019683361053466797, - "save_results": 0.0015406029997393489 + "prove": 5.7691859059996204, + "total": 6.76582350299941, + "queued": 0.573203, + "clean_up": 0.8512933130004967, + "file_setup": 0.020217060002323706, + "save_results": 0.002654211999470135, + "export_calldata": 0.10469743599969661, + "generate_witness_c": 0.017217937998793786 }, - "file_size": 532, + "file_size": 1348, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:36.258Z", + "proof_id": "a0774be2-3c41-4cbc-addc-edd9b4e2956d", + "circuit_name": "circom-multiplier2", + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", + "circuit_type": "circom", + "date_created": "2024-03-14T19:13:15.491Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112020S", - "compute_time_sec": 0.11202, + "compute_time": "P0DT00H00M03.638381S", + "compute_time_sec": 3.638381, "compute_times": { - "prove": 0.06998628401197493, - "total": 0.11816900398116559, - "queued": 0.159585, - "clean_up": 0.00885792204644531, - "file_setup": 0.037621396011672914, - "save_results": 0.0013648279709741473 + "prove": 2.0563713180017658, + "total": 3.6447121650016925, + "queued": 0.435142, + "clean_up": 1.4359558040014235, + "file_setup": 0.029414451997581637, + "save_results": 0.0022407860014936887, + "export_calldata": 0.10466101899874047, + "generate_witness_c": 0.015545509999356 }, - "file_size": 532, + "file_size": 1345, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:34.681Z", + "proof_id": "bfdae09a-dab8-4925-983a-cb36fe9e1968", + "circuit_name": "circom-multiplier2", + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:35.111Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.161413S", - "compute_time_sec": 0.161413, + "compute_time": "P0DT00H00M05.950247S", + "compute_time_sec": 5.950247, "compute_times": { - "prove": 0.12939074099995196, - "total": 0.16822218499146402, - "queued": 0.231644, - "clean_up": 0.0037453039549291134, - "file_setup": 0.03296162514016032, - "save_results": 0.0017324970103800297 + "prove": 5.542268355002307, + "total": 5.956350837001082, + "queued": 0.455803, + "clean_up": 0.2413153500019689, + "file_setup": 0.024655373999848962, + "save_results": 0.0029602979993796907, + "export_calldata": 0.11759848699875874, + "generate_witness_c": 0.027109548998851096 }, - "file_size": 532, + "file_size": 1351, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:33.146Z", - "perform_verify": false, + "proof_id": "ca34a20e-17fa-4996-a25b-57e051f3e75e", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:05:54.268Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104014S", - "compute_time_sec": 0.104014, + "compute_time": "P0DT00H00M08.257042S", + "compute_time_sec": 8.257042, "compute_times": { - "prove": 0.06997583503834903, - "total": 0.11030748602934182, - "queued": 0.190603, - "clean_up": 0.013490295968949795, - "file_setup": 0.025196701986715198, - "save_results": 0.0012690169969573617 + "prove": 6.118464802002563, + "total": 8.263815338999848, + "queued": 1.300164, + "clean_up": 1.2629296249979234, + "file_setup": 0.03202529799818876, + "save_results": 0.002139272997737862, + "verify_check": 0.7154526120029914, + "export_calldata": 0.11000840099950437, + "generate_witness_c": 0.02232845999969868 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:31.611Z", - "perform_verify": false, + "proof_id": "a72071e5-5478-4ad9-bc50-91d5a41899bd", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:05:33.736Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095778S", - "compute_time_sec": 0.095778, + "compute_time": "P0DT00H00M06.362972S", + "compute_time_sec": 6.362972, "compute_times": { - "prove": 0.07503506389912218, - "total": 0.10164016194175929, - "queued": 0.139381, - "clean_up": 0.0031234719790518284, - "file_setup": 0.021389488014392555, - "save_results": 0.001648124074563384 + "prove": 4.702792235999368, + "total": 6.368291856000724, + "queued": 0.427813, + "clean_up": 0.7771713300026022, + "file_setup": 0.04098392900050385, + "save_results": 0.0022858249976707157, + "verify_check": 0.7296507020000718, + "export_calldata": 0.10327137200147263, + "generate_witness_c": 0.011696364999806974 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:30.068Z", + "proof_id": "9996c901-990d-4579-97f2-8f554f15751a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T19:02:41.057Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117298S", - "compute_time_sec": 0.117298, + "compute_time": "P0DT00H00M07.442956S", + "compute_time_sec": 7.442956, "compute_times": { - "prove": 0.08094484405592084, - "total": 0.1229423270560801, - "queued": 0.187289, - "clean_up": 0.0036458540707826614, - "file_setup": 0.03630347200669348, - "save_results": 0.0017006490379571915 + "prove": 5.836867563997657, + "total": 7.448100458001136, + "queued": 0.429533, + "clean_up": 1.4180766429999494, + "file_setup": 0.02162611599851516, + "save_results": 0.0026051640015793964, + "export_calldata": 0.1440555890003452, + "generate_witness_c": 0.024428758002613904 }, - "file_size": 532, + "file_size": 1424, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:28.546Z", + "proof_id": "33b06218-90bc-4d41-88b5-750c59905bf3", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:55:14.653Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117620S", - "compute_time_sec": 0.11762, + "compute_time": "P0DT00H00M06.661497S", + "compute_time_sec": 6.661497, "compute_times": { - "prove": 0.08068329095840454, - "total": 0.12468839401844889, - "queued": 0.209765, - "clean_up": 0.016898180008865893, - "file_setup": 0.024950645049102604, - "save_results": 0.001741672051139176 + "prove": 6.102268026999809, + "total": 6.6664216089993715, + "queued": 0.565714, + "clean_up": 0.4257688830002735, + "file_setup": 0.017482515999290626, + "save_results": 0.0023082420011633076, + "export_calldata": 0.10708153700034018, + "generate_witness_c": 0.011075884998717811 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:27.002Z", + "proof_id": "3a2c08aa-8eab-4520-8ca6-c3c3d0a83be2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:50:30.630Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104327S", - "compute_time_sec": 0.104327, + "compute_time": "P0DT00H00M03.081448S", + "compute_time_sec": 3.081448, "compute_times": { - "prove": 0.08132059802301228, - "total": 0.1113810408860445, - "queued": 0.179005, - "clean_up": 0.0032090198947116733, - "file_setup": 0.024714926024898887, - "save_results": 0.0017327630193904042 + "prove": 2.9426032099981967, + "total": 3.088212900001963, + "queued": 0.420681, + "clean_up": 0.004887817001872463, + "file_setup": 0.02144401899931836, + "save_results": 0.0024966839991975576, + "export_calldata": 0.10602649100110284, + "generate_witness_c": 0.010342882000259124 }, - "file_size": 532, + "file_size": 1421, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:25.415Z", + "proof_id": "bceefee1-b2fb-499e-85e7-faadbacd3530", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:47:57.110Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124274S", - "compute_time_sec": 0.124274, + "compute_time": "P0DT00H00M06.079750S", + "compute_time_sec": 6.07975, "compute_times": { - "prove": 0.08284180099144578, - "total": 0.1500206938944757, - "queued": 0.246817, - "clean_up": 0.008343180874362588, - "file_setup": 0.037750212009996176, - "save_results": 0.0018301969394087791 + "prove": 5.86737551600163, + "total": 6.154982070998813, + "queued": 0.429452, + "clean_up": 0.05597285499970894, + "file_setup": 0.09039897099864902, + "save_results": 0.002586843998869881, + "export_calldata": 0.10872890400059987, + "generate_witness_c": 0.02942450800037477 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:23.831Z", + "proof_id": "43e7d4c5-e79e-4cde-8216-16da4f7affd2", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:43:03.195Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118182S", - "compute_time_sec": 0.118182, + "compute_time": "P0DT00H00M07.389227S", + "compute_time_sec": 7.389227, "compute_times": { - "prove": 0.08728135202545673, - "total": 0.12324785895179957, - "queued": 0.220211, - "clean_up": 0.004102245904505253, - "file_setup": 0.03006090992130339, - "save_results": 0.0014706840738654137 + "prove": 6.096696715001599, + "total": 7.464751903000433, + "queued": 0.511846, + "clean_up": 1.1190660020001815, + "file_setup": 0.11400084699926083, + "save_results": 0.002097641001455486, + "export_calldata": 0.1070670169974619, + "generate_witness_c": 0.025039165000634966 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:22.258Z", + "proof_id": "62da79ad-66f8-48b2-aee6-00576b9ef803", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:42:16.730Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.090207S", - "compute_time_sec": 0.090207, + "compute_time": "P0DT00H00M04.470973S", + "compute_time_sec": 4.470973, "compute_times": { - "prove": 0.06559745199047029, - "total": 0.0960762290051207, - "queued": 0.164689, - "clean_up": 0.0039045800222083926, - "file_setup": 0.024623307050205767, - "save_results": 0.0015745849814265966 + "prove": 4.176840074000211, + "total": 4.543050677002611, + "queued": 0.442897, + "clean_up": 0.13250841900298838, + "file_setup": 0.08925071300109266, + "save_results": 0.0035124769965477753, + "export_calldata": 0.10352052000234835, + "generate_witness_c": 0.03679126799761434 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:20.735Z", + "proof_id": "92dafcbd-cf27-417d-9327-f7b96ba3b622", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:20:49.783Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108537S", - "compute_time_sec": 0.108537, + "compute_time": "P0DT00H00M03.433125S", + "compute_time_sec": 3.433125, "compute_times": { - "prove": 0.08191155781969428, - "total": 0.11576922796666622, - "queued": 0.172262, - "clean_up": 0.0039061829447746277, - "file_setup": 0.027977181132882833, - "save_results": 0.0015976580325514078 + "prove": 2.5336668719537556, + "total": 3.4394880742765963, + "queued": 0.489776, + "clean_up": 0.7611926682293415, + "file_setup": 0.026595874689519405, + "save_results": 0.002055990044027567, + "export_calldata": 0.10428563365712762, + "generate_witness_c": 0.011344298254698515 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:19.166Z", + "proof_id": "0dbdebd4-cb75-4d8e-a42b-70325cda5352", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:20:14.514Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117779S", - "compute_time_sec": 0.117779, + "compute_time": "P0DT00H00M03.528936S", + "compute_time_sec": 3.528936, "compute_times": { - "prove": 0.08095375797711313, - "total": 0.12441346701234579, - "queued": 0.148608, - "clean_up": 0.01458131498657167, - "file_setup": 0.027128741960041225, - "save_results": 0.0013865360524505377 + "prove": 3.110340188955888, + "total": 3.5351677269209176, + "queued": 0.419368, + "clean_up": 0.268796571996063, + "file_setup": 0.023094948148354888, + "save_results": 0.0035148910246789455, + "export_calldata": 0.11105250404216349, + "generate_witness_c": 0.017875555902719498 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:17.494Z", + "proof_id": "3ad09ef0-94cd-426c-9c4a-1b89b70db8bf", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:20:06.963Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106302S", - "compute_time_sec": 0.106302, + "compute_time": "P0DT00H00M03.694977S", + "compute_time_sec": 3.694977, "compute_times": { - "prove": 0.07591444090940058, - "total": 0.11228657700121403, - "queued": 0.146001, - "clean_up": 0.003584724967367947, - "file_setup": 0.03080855100415647, - "save_results": 0.0016646140720695257 + "prove": 2.1533293740358204, + "total": 3.699435847112909, + "queued": 0.422202, + "clean_up": 1.4061321169137955, + "file_setup": 0.01737229502759874, + "save_results": 0.0022125281393527985, + "export_calldata": 0.10844748793169856, + "generate_witness_c": 0.011587816989049315 }, - "file_size": 532, + "file_size": 1424, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:15.887Z", + "proof_id": "5e53039b-53bb-4341-9f40-66ce2cfdaf8a", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:19:26.279Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106448S", - "compute_time_sec": 0.106448, + "compute_time": "P0DT00H00M07.017894S", + "compute_time_sec": 7.017894, "compute_times": { - "prove": 0.07768534799106419, - "total": 0.11450353683903813, - "queued": 0.211473, - "clean_up": 0.0034573860466480255, - "file_setup": 0.031260548159480095, - "save_results": 0.0016783778555691242 + "prove": 6.257673634216189, + "total": 7.024433021899313, + "queued": 0.481265, + "clean_up": 0.5901032220572233, + "file_setup": 0.04931790102273226, + "save_results": 0.0018759206868708134, + "export_calldata": 0.11300898808985949, + "generate_witness_c": 0.01208030991256237 }, - "file_size": 532, + "file_size": 1421, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:14.188Z", + "proof_id": "97802862-57ba-4ac2-86fc-1bd7a769868d", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:18:50.915Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102464S", - "compute_time_sec": 0.102464, + "compute_time": "P0DT00H00M07.471731S", + "compute_time_sec": 7.471731, "compute_times": { - "prove": 0.0763863769825548, - "total": 0.10999432997778058, - "queued": 0.174275, - "clean_up": 0.004134346963837743, - "file_setup": 0.02737189899198711, - "save_results": 0.0017699809977784753 + "prove": 5.5631270671729, + "total": 7.477051115129143, + "queued": 0.423981, + "clean_up": 1.7722250861115754, + "file_setup": 0.01894038007594645, + "save_results": 0.0025429960805922747, + "export_calldata": 0.10855428781360388, + "generate_witness_c": 0.011164190946146846 }, - "file_size": 532, + "file_size": 1418, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:12.610Z", + "proof_id": "e9ef60c8-8edf-43b7-920b-013f9c1ae340", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:16:21.616Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113569S", - "compute_time_sec": 0.113569, + "compute_time": "P0DT00H00M06.389568S", + "compute_time_sec": 6.389568, "compute_times": { - "prove": 0.07715794199611992, - "total": 0.11932651698589325, - "queued": 0.146457, - "clean_up": 0.0038819999899715185, - "file_setup": 0.036451552994549274, - "save_results": 0.001485317014157772 + "prove": 6.163996509974822, + "total": 6.394594549899921, + "queued": 0.723067, + "clean_up": 0.09152333298698068, + "file_setup": 0.01897246716544032, + "save_results": 0.001845130929723382, + "export_calldata": 0.10672607109881938, + "generate_witness_c": 0.011156109860166907 }, - "file_size": 532, + "file_size": 1422, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:11.068Z", - "perform_verify": false, + "proof_id": "c91fc9d9-2377-489e-b08b-00746d7349a5", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:15:57.683Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106394S", - "compute_time_sec": 0.106394, + "compute_time": "P0DT00H00M07.686728S", + "compute_time_sec": 7.686728, "compute_times": { - "prove": 0.0750561070162803, - "total": 0.11352195288054645, - "queued": 0.24047, - "clean_up": 0.003913701977580786, - "file_setup": 0.03255474800243974, - "save_results": 0.0015891690272837877 + "prove": 5.851301555056125, + "total": 7.692835888359696, + "queued": 0.476854, + "clean_up": 0.9100839020684361, + "file_setup": 0.04193206364288926, + "save_results": 0.00230186665430665, + "verify_check": 0.755525354295969, + "export_calldata": 0.10952348494902253, + "generate_witness_c": 0.021680005360394716 }, - "file_size": 532, + "file_size": 1421, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:09.525Z", - "perform_verify": false, + "proof_id": "e9843a60-d317-461a-9cd4-42fee37b8061", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:13:58.884Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109649S", - "compute_time_sec": 0.109649, + "compute_time": "P0DT00H00M03.367759S", + "compute_time_sec": 3.367759, "compute_times": { - "prove": 0.08671194792259485, - "total": 0.11610554496292025, - "queued": 0.204141, - "clean_up": 0.003892548964358866, - "file_setup": 0.02370181807782501, - "save_results": 0.0014596240362152457 + "prove": 2.230404970003292, + "total": 3.3720264660660177, + "queued": 0.431842, + "clean_up": 0.10493400786072016, + "file_setup": 0.0387162861879915, + "save_results": 0.002680066041648388, + "verify_check": 0.8437124330084771, + "export_calldata": 0.11436670809052885, + "generate_witness_c": 0.036693086847662926 }, - "file_size": 532, + "file_size": 1420, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:07.842Z", - "perform_verify": false, + "proof_id": "903672bf-1424-4074-879f-dc3d8bcf7b09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T18:13:15.498Z", + "perform_verify": true, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098328S", - "compute_time_sec": 0.098328, + "compute_time": "P0DT00H00M02.740057S", + "compute_time_sec": 2.740057, "compute_times": { - "prove": 0.07331796106882393, - "total": 0.10486690199468285, - "queued": 0.18668, - "clean_up": 0.003999138018116355, - "file_setup": 0.02532154694199562, - "save_results": 0.0018700809450820088 + "prove": 1.747901757946238, + "total": 2.7451698589138687, + "queued": 0.562105, + "clean_up": 0.004073107847943902, + "file_setup": 0.023931312141939998, + "save_results": 0.0021747678983956575, + "verify_check": 0.8415581181179732, + "export_calldata": 0.10904999403283, + "generate_witness_c": 0.016110152937471867 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:06.256Z", + "proof_id": "1bd36420-2d17-4820-b4c0-92bf65f5ac09", + "circuit_name": "circom-circuit", + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_type": "circom", + "date_created": "2024-03-14T17:58:33.204Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093768S", - "compute_time_sec": 0.093768, + "compute_time": "P0DT00H00M03.362596S", + "compute_time_sec": 3.362596, "compute_times": { - "prove": 0.07298256200738251, - "total": 0.09930887399241328, - "queued": 0.193559, - "clean_up": 0.003266245825216174, - "file_setup": 0.02109808987006545, - "save_results": 0.0015898591373115778 + "prove": 3.2148704221472144, + "total": 3.3680821671150625, + "queued": 0.497672, + "clean_up": 0.00455889105796814, + "file_setup": 0.026814193930476904, + "save_results": 0.0023224949836730957, + "export_calldata": 0.10352779598906636, + "generate_witness_c": 0.015558663755655289 }, - "file_size": 532, + "file_size": 1423, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:04.726Z", + "proof_id": "f6954f69-c080-4914-8ab1-a172dbf5e08a", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:57:15.133Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114898S", - "compute_time_sec": 0.114898, + "compute_time": "P0DT00H00M08.914962S", + "compute_time_sec": 8.914962, "compute_times": { - "prove": 0.08792952506337315, - "total": 0.12101772194728255, - "queued": 0.198222, - "clean_up": 0.003449682961218059, - "file_setup": 0.0276323159923777, - "save_results": 0.001681591966189444 + "total": 8.922231239033863, + "queued": 5.602238, + "clean_up": 2.959817972034216, + "file_setup": 5.245855151908472, + "create_proof": 0.7142050580587238, + "save_results": 0.001862589968368411 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:03.182Z", + "proof_id": "d13035a3-05d0-42d7-8422-6347f69ecd53", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:52.106Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106309S", - "compute_time_sec": 0.106309, + "compute_time": "P0DT00H01M26.708941S", + "compute_time_sec": 86.708941, "compute_times": { - "prove": 0.08149053400848061, - "total": 0.11204789008479565, - "queued": 0.144459, - "clean_up": 0.005163350026123226, - "file_setup": 0.023657753015868366, - "save_results": 0.0014256179565563798 + "total": 86.71415681904182, + "queued": 0.405661, + "clean_up": 84.75011333706789, + "file_setup": 1.3262775791808963, + "create_proof": 0.6342818099074066, + "save_results": 0.0029313149861991405 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:01.643Z", + "proof_id": "fd61e981-bb5c-41e3-9428-705839e2abc8", + "circuit_name": "noir-circuit", + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_type": "noir", + "date_created": "2024-03-14T17:49:06.075Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103945S", - "compute_time_sec": 0.103945, + "compute_time": "P0DT00H01M26.510069S", + "compute_time_sec": 86.510069, "compute_times": { - "prove": 0.07686708308756351, - "total": 0.11076140310615301, - "queued": 0.215168, - "clean_up": 0.0034544861409813166, - "file_setup": 0.028191099874675274, - "save_results": 0.001841096905991435 + "total": 86.51598379341885, + "queued": 0.486451, + "clean_up": 85.12480085203424, + "file_setup": 0.762740237172693, + "create_proof": 0.6256867139600217, + "save_results": 0.002274115104228258 }, - "file_size": 532, + "file_size": 4398, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:59.991Z", + "proof_id": "bfedc200-63c9-48fd-88bf-844413ad428a", + "circuit_name": "circom-multiplier2", + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_type": "circom", + "date_created": "2024-03-12T00:30:14.362Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124189S", - "compute_time_sec": 0.124189, + "compute_time": "P0DT00H00M00.354832S", + "compute_time_sec": 0.354832, "compute_times": { - "prove": 0.07686379295773804, - "total": 0.12877459998708218, - "queued": 0.184586, - "clean_up": 0.00445067195687443, - "file_setup": 0.04572292300872505, - "save_results": 0.001407155068591237 + "prove": 0.29524299991317093, + "total": 0.3594474990386516, + "queued": 0.452341, + "clean_up": 0.010387225076556206, + "file_setup": 0.0286204491276294, + "save_results": 0.0014043520204722881, + "generate_witness_c": 0.023333966033533216 }, - "file_size": 532, + "file_size": 714, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:58.419Z", + "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "circuit_name": "circom-multiplier2", + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_type": "circom", + "date_created": "2024-03-12T00:30:13.294Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115030S", - "compute_time_sec": 0.11503, + "compute_time": "P0DT00H00M01.550727S", + "compute_time_sec": 1.550727, "compute_times": { - "prove": 0.08519456698559225, - "total": 0.12087315297685564, - "queued": 0.141676, - "clean_up": 0.004536350024864078, - "file_setup": 0.02909989806357771, - "save_results": 0.0016625439748167992 + "prove": 1.4871477987617254, + "total": 1.5559976021759212, + "queued": 0.41289, + "clean_up": 0.007122974842786789, + "file_setup": 0.03450894495472312, + "save_results": 0.002017392311245203, + "generate_witness_c": 0.024780604988336563 }, - "file_size": 532, + "file_size": 711, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:56.855Z", + "proof_id": "ee512f9d-2590-4d6a-93c3-f0de07984b5e", + "circuit_name": "circom-multiplier2", + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_type": "circom", + "date_created": "2024-03-12T00:29:28.396Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116590S", - "compute_time_sec": 0.11659, + "compute_time": "P0DT00H00M01.462342S", + "compute_time_sec": 1.462342, "compute_times": { - "prove": 0.07413527299650013, - "total": 0.12391416006721556, - "queued": 0.170496, - "clean_up": 0.008216062095016241, - "file_setup": 0.03923204098828137, - "save_results": 0.0018532369285821915 + "prove": 1.3968474080320448, + "total": 1.4673558110371232, + "queued": 0.649073, + "clean_up": 0.012919645989313722, + "file_setup": 0.027661754051223397, + "save_results": 0.002378439996391535, + "generate_witness_c": 0.027080354979261756 }, - "file_size": 532, + "file_size": 711, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:55.300Z", + "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "circuit_name": "circom-multiplier2", + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_type": "circom", + "date_created": "2024-03-12T00:29:12.038Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.169733S", - "compute_time_sec": 0.169733, + "compute_time": "P0DT00H00M00.378782S", + "compute_time_sec": 0.378782, "compute_times": { - "prove": 0.13065553095657378, - "total": 0.17512868694029748, - "queued": 0.20835, - "clean_up": 0.010724585969001055, - "file_setup": 0.031707562040537596, - "save_results": 0.0017158209811896086 + "prove": 0.3259259192273021, + "total": 0.3832521459553391, + "queued": 0.467242, + "clean_up": 0.004174598027020693, + "file_setup": 0.018889360828325152, + "save_results": 0.0015030219219624996, + "generate_witness_c": 0.032414837973192334 }, - "file_size": 532, + "file_size": 714, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", + "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:53.639Z", + "date_created": "2024-03-02T22:19:36.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106419S", - "compute_time_sec": 0.106419, + "compute_time": "P0DT00H00M00.150585S", + "compute_time_sec": 0.150585, "compute_times": { - "prove": 0.07485338707920164, - "total": 0.11183754401281476, - "queued": 0.190518, - "clean_up": 0.006780734984204173, - "file_setup": 0.02835355990100652, - "save_results": 0.0015155170112848282 + "prove": 0.11676173796877265, + "total": 0.15572588506620377, + "queued": 51.669893, + "clean_up": 0.009185672039166093, + "file_setup": 0.027514968067407608, + "save_results": 0.001868820982053876 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", + "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.345Z", + "date_created": "2024-03-02T22:19:36.062Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095006S", - "compute_time_sec": 0.095006, + "compute_time": "P0DT00H00M00.223055S", + "compute_time_sec": 0.223055, "compute_times": { - "prove": 0.07408645702525973, - "total": 0.1002384020248428, - "queued": 1.425728, - "clean_up": 0.0037696199724450707, - "file_setup": 0.020419865963049233, - "save_results": 0.0015785649884492159 + "prove": 0.20497421699110419, + "total": 0.22819320199778304, + "queued": 48.364288, + "clean_up": 0.0023624080349691212, + "file_setup": 0.01836701901629567, + "save_results": 0.002189519989769906 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", + "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.240Z", + "date_created": "2024-03-02T22:19:36.018Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122299S", - "compute_time_sec": 0.122299, + "compute_time": "P0DT00H00M00.213402S", + "compute_time_sec": 0.213402, "compute_times": { - "prove": 0.07692208106163889, - "total": 0.1297405599616468, - "queued": 0.908851, - "clean_up": 0.004496873007155955, - "file_setup": 0.04598465096205473, - "save_results": 0.002022817963734269 + "prove": 0.19061215105466545, + "total": 0.21872411505319178, + "queued": 48.427521, + "clean_up": 0.004127845983020961, + "file_setup": 0.022272864007391036, + "save_results": 0.0014097680104896426 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", + "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", + "date_created": "2024-03-02T22:19:35.932Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097774S", - "compute_time_sec": 0.097774, + "compute_time": "P0DT00H00M00.176113S", + "compute_time_sec": 0.176113, "compute_times": { - "prove": 0.07189441099762917, - "total": 0.10323353402782232, - "queued": 0.808925, - "clean_up": 0.008474385016597807, - "file_setup": 0.02089866902679205, - "save_results": 0.0015711949672549963 + "prove": 0.15716673800488934, + "total": 0.18125584500376135, + "queued": 48.35111, + "clean_up": 0.006394687981810421, + "file_setup": 0.015695078996941447, + "save_results": 0.001599603972863406 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", + "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", + "date_created": "2024-03-02T22:19:35.924Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118593S", - "compute_time_sec": 0.118593, + "compute_time": "P0DT00H00M00.175913S", + "compute_time_sec": 0.175913, "compute_times": { - "prove": 0.08002680214121938, - "total": 0.12483585509471595, - "queued": 1.709023, - "clean_up": 0.00412439089268446, - "file_setup": 0.03829952888190746, - "save_results": 0.00203027599491179 + "prove": 0.15754800499416888, + "total": 0.1815414800075814, + "queued": 48.022383, + "clean_up": 0.002829990000464022, + "file_setup": 0.018857149058021605, + "save_results": 0.0017489319434389472 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", + "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.112Z", + "date_created": "2024-03-02T22:19:35.909Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094018S", - "compute_time_sec": 0.094018, + "compute_time": "P0DT00H00M00.194250S", + "compute_time_sec": 0.19425, "compute_times": { - "prove": 0.07305821299087256, - "total": 0.09998789592646062, - "queued": 0.155203, - "clean_up": 0.0034407159546390176, - "file_setup": 0.021631687064655125, - "save_results": 0.001554804970510304 + "prove": 0.12928905605804175, + "total": 9.857152820914052, + "queued": 47.737361, + "clean_up": 0.01866333093494177, + "file_setup": 9.695790873956867, + "save_results": 0.005249700974673033 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", + "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:39.613Z", + "date_created": "2024-03-02T22:19:35.810Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140531S", - "compute_time_sec": 0.140531, + "compute_time": "P0DT00H00M00.092544S", + "compute_time_sec": 0.092544, "compute_times": { - "prove": 0.09558549302164465, - "total": 0.146603410015814, - "queued": 0.185159, - "clean_up": 0.008305710973218083, - "file_setup": 0.040469719911925495, - "save_results": 0.0019295590464025736 + "prove": 0.07295725599396974, + "total": 0.09864532802021131, + "queued": 47.866814, + "clean_up": 0.0027975860284641385, + "file_setup": 0.020817386044654995, + "save_results": 0.0016599719529040158 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", + "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:38.083Z", + "date_created": "2024-03-02T22:19:35.800Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105803S", - "compute_time_sec": 0.105803, + "compute_time": "P0DT00H00M00.105093S", + "compute_time_sec": 0.105093, "compute_times": { - "prove": 0.0777802390512079, - "total": 0.11145833018235862, - "queued": 0.19316, - "clean_up": 0.0037183440290391445, - "file_setup": 0.02760996390134096, - "save_results": 0.0019434860441833735 + "prove": 0.08778161800000817, + "total": 0.11094204697292298, + "queued": 47.8478, + "clean_up": 0.002542709931731224, + "file_setup": 0.018792407936416566, + "save_results": 0.0014581570867449045 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", + "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:36.595Z", + "date_created": "2024-03-02T22:19:35.792Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098145S", - "compute_time_sec": 0.098145, + "compute_time": "P0DT00H00M00.233969S", + "compute_time_sec": 0.233969, "compute_times": { - "prove": 0.0734365259995684, - "total": 0.10388228402007371, - "queued": 0.160378, - "clean_up": 0.004396509961225092, - "file_setup": 0.024077828973531723, - "save_results": 0.001595085021108389 + "prove": 0.2173847450176254, + "total": 0.23918032401707023, + "queued": 47.632341, + "clean_up": 0.003762404026929289, + "file_setup": 0.015466460026800632, + "save_results": 0.0015042249578982592 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", + "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:35.046Z", + "date_created": "2024-03-02T22:19:35.637Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102485S", - "compute_time_sec": 0.102485, + "compute_time": "P0DT00H00M00.367199S", + "compute_time_sec": 0.367199, "compute_times": { - "prove": 0.07241792895365506, - "total": 0.1082481580087915, - "queued": 0.195278, - "clean_up": 0.0035996510414406657, - "file_setup": 0.03052784502506256, - "save_results": 0.00135330599732697 + "prove": 0.34983603993896395, + "total": 0.3715133300283924, + "queued": 47.284314, + "clean_up": 0.004351923940703273, + "file_setup": 0.01482851302716881, + "save_results": 0.0021903570741415024 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", + "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:33.547Z", + "date_created": "2024-03-02T22:19:35.620Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113940S", - "compute_time_sec": 0.11394, + "compute_time": "P0DT00H00M00.235932S", + "compute_time_sec": 0.235932, "compute_times": { - "prove": 0.08348662802018225, - "total": 0.12036114698275924, - "queued": 0.231884, - "clean_up": 0.00535669201053679, - "file_setup": 0.029328602133318782, - "save_results": 0.001801566919311881 + "prove": 0.22235612478107214, + "total": 0.24128600303083658, + "queued": 50.101947, + "clean_up": 0.0031629670411348343, + "file_setup": 0.014214606955647469, + "save_results": 0.0011093378998339176 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", + "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:40.710Z", + "date_created": "2024-03-02T22:19:35.593Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108535S", - "compute_time_sec": 0.108535, + "compute_time": "P0DT00H00M00.916143S", + "compute_time_sec": 0.916143, "compute_times": { - "prove": 0.07331131701357663, - "total": 0.11277111305389553, - "queued": 0.17423, - "clean_up": 0.005777769023552537, - "file_setup": 0.031883755000308156, - "save_results": 0.0014830770669505 + "prove": 0.7969153829617426, + "total": 11.417283304966986, + "queued": 46.46669, + "clean_up": 0.08386482996866107, + "file_setup": 10.52351449499838, + "save_results": 0.00758640409912914 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", + "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:39.000Z", + "date_created": "2024-03-02T22:19:35.516Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112695S", - "compute_time_sec": 0.112695, + "compute_time": "P0DT00H00M00.426199S", + "compute_time_sec": 0.426199, "compute_times": { - "prove": 0.07820799702312797, - "total": 0.1174575500190258, - "queued": 0.223544, - "clean_up": 0.004070866969414055, - "file_setup": 0.032682382967323065, - "save_results": 0.0021686870604753494 + "prove": 0.4102505180053413, + "total": 0.43261146097211167, + "queued": 46.82937, + "clean_up": 0.003141910012345761, + "file_setup": 0.017152403015643358, + "save_results": 0.0012355779763311148 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", + "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:37.260Z", + "date_created": "2024-03-02T22:19:35.491Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.107491S", - "compute_time_sec": 0.107491, + "compute_time": "P0DT00H00M00.474603S", + "compute_time_sec": 0.474603, "compute_times": { - "prove": 0.07868116302415729, - "total": 0.11423451104201376, - "queued": 0.210564, - "clean_up": 0.007490226998925209, - "file_setup": 0.025845387019217014, - "save_results": 0.0018579070456326008 + "prove": 0.4527727549429983, + "total": 0.4810627130791545, + "queued": 49.399479, + "clean_up": 0.0032021570950746536, + "file_setup": 0.02290356601588428, + "save_results": 0.0017274878919124603 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", + "proof_id": "4baed11c-5464-4388-9d51-15420e888150", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:35.691Z", + "date_created": "2024-03-02T22:19:35.478Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104645S", - "compute_time_sec": 0.104645, + "compute_time": "P0DT00H00M00.305654S", + "compute_time_sec": 0.305654, "compute_times": { - "prove": 0.07283521501813084, - "total": 0.11231476906687021, - "queued": 0.168258, - "clean_up": 0.0050119999796152115, - "file_setup": 0.032517564948648214, - "save_results": 0.0015029560308903456 + "prove": 0.2871348679764196, + "total": 0.3104168300051242, + "queued": 46.529494, + "clean_up": 0.0037129210541024804, + "file_setup": 0.017233187099918723, + "save_results": 0.0019823479233309627 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", + "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:34.182Z", + "date_created": "2024-03-02T22:19:35.414Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.101546S", - "compute_time_sec": 0.101546, + "compute_time": "P0DT00H00M00.498123S", + "compute_time_sec": 0.498123, "compute_times": { - "prove": 0.07385058398358524, - "total": 0.10622004000470042, - "queued": 0.214401, - "clean_up": 0.003409723984077573, - "file_setup": 0.02646243793424219, - "save_results": 0.0021518670255318284 + "prove": 0.47856602212414145, + "total": 0.5038217708934098, + "queued": 45.444814, + "clean_up": 0.0037471128161996603, + "file_setup": 0.019111952977254987, + "save_results": 0.0020769149996340275 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", + "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:32.679Z", + "date_created": "2024-03-02T22:19:35.362Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122334S", - "compute_time_sec": 0.122334, + "compute_time": "P0DT00H00M00.518721S", + "compute_time_sec": 0.518721, "compute_times": { - "prove": 0.0876556090079248, - "total": 0.1313655290286988, - "queued": 0.230724, - "clean_up": 0.005932067055255175, - "file_setup": 0.03352665202692151, - "save_results": 0.0016483389772474766 + "prove": 0.5003455500118434, + "total": 0.5234491459559649, + "queued": 45.480803, + "clean_up": 0.0037253409391269088, + "file_setup": 0.017134927911683917, + "save_results": 0.0019250600598752499 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", + "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:31.191Z", + "date_created": "2024-03-02T22:19:35.356Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093953S", - "compute_time_sec": 0.093953, + "compute_time": "P0DT00H00M00.611922S", + "compute_time_sec": 0.611922, "compute_times": { - "prove": 0.07118937093764544, - "total": 0.09999781497754157, - "queued": 0.582409, - "clean_up": 0.0037945699878036976, - "file_setup": 0.023232951993122697, - "save_results": 0.0014598669949918985 + "prove": 0.5805270280689001, + "total": 0.6166191740194336, + "queued": 44.232932, + "clean_up": 0.008304930990561843, + "file_setup": 0.025953233940526843, + "save_results": 0.0014997139805927873 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", + "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:29.642Z", + "date_created": "2024-03-02T22:19:35.294Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.183122S", - "compute_time_sec": 0.183122, + "compute_time": "P0DT00H00M00.308959S", + "compute_time_sec": 0.308959, "compute_times": { - "prove": 0.1029208250110969, - "total": 0.18900623894296587, - "queued": 0.193648, - "clean_up": 0.02979127294383943, - "file_setup": 0.051961387041956186, - "save_results": 0.0037548099644482136 + "prove": 0.2826259849825874, + "total": 0.3145583850564435, + "queued": 43.33347, + "clean_up": 0.003558462020009756, + "file_setup": 0.0257925660116598, + "save_results": 0.0022130260476842523 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", + "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:27.981Z", + "date_created": "2024-03-02T22:19:35.184Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.202523S", - "compute_time_sec": 0.202523, + "compute_time": "P0DT00H00M00.109062S", + "compute_time_sec": 0.109062, "compute_times": { - "prove": 0.11456152913160622, - "total": 0.20906984992325306, - "queued": 0.208536, - "clean_up": 0.03386854100972414, - "file_setup": 0.05412821704521775, - "save_results": 0.006115625845268369 + "prove": 0.07950302597600967, + "total": 0.11443837394472212, + "queued": 47.654241, + "clean_up": 0.004247633973136544, + "file_setup": 0.028729144018143415, + "save_results": 0.001540875993669033 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", + "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:26.328Z", + "date_created": "2024-03-02T22:19:35.144Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135499S", - "compute_time_sec": 0.135499, + "compute_time": "P0DT00H00M00.249112S", + "compute_time_sec": 0.249112, "compute_times": { - "prove": 0.07793003402184695, - "total": 0.14023755700327456, - "queued": 0.175288, - "clean_up": 0.0037696800427511334, - "file_setup": 0.0566352519672364, - "save_results": 0.0015117370057851076 + "prove": 0.21678003598935902, + "total": 0.25460609793663025, + "queued": 42.162713, + "clean_up": 0.01700777595397085, + "file_setup": 0.018869346007704735, + "save_results": 0.0016134349862113595 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", + "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:54.687Z", + "date_created": "2024-03-02T22:19:35.120Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135335S", - "compute_time_sec": 0.135335, + "compute_time": "P0DT00H00M00.389380S", + "compute_time_sec": 0.38938, "compute_times": { - "prove": 0.07691952004097402, - "total": 0.14003189594950527, - "queued": 0.198802, - "clean_up": 0.00467289995867759, - "file_setup": 0.05562937702052295, - "save_results": 0.002484833006747067 + "prove": 0.3490279840771109, + "total": 0.39595628902316093, + "queued": 44.712192, + "clean_up": 0.018011081032454967, + "file_setup": 0.026378671871498227, + "save_results": 0.0021800349932163954 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", + "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:52.059Z", + "date_created": "2024-03-02T22:19:35.062Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138890S", - "compute_time_sec": 0.13889, + "compute_time": "P0DT00H00M00.293103S", + "compute_time_sec": 0.293103, "compute_times": { - "prove": 0.07692233612760901, - "total": 0.14497115998528898, - "queued": 0.215231, - "clean_up": 0.021985383005812764, - "file_setup": 0.044280862901359797, - "save_results": 0.0014082398265600204 + "prove": 0.2668396580265835, + "total": 0.29833219898864627, + "queued": 41.268095, + "clean_up": 0.004488729988224804, + "file_setup": 0.024880563956685364, + "save_results": 0.0017942419508472085 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", + "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:49.557Z", + "date_created": "2024-03-02T22:19:35.027Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106026S", - "compute_time_sec": 0.106026, + "compute_time": "P0DT00H00M00.726384S", + "compute_time_sec": 0.726384, "compute_times": { - "prove": 0.07399564690422267, - "total": 0.11187266802880913, - "queued": 0.162814, - "clean_up": 0.0033016889356076717, - "file_setup": 0.03273502003867179, - "save_results": 0.0014213580871000886 + "prove": 0.6857492360286415, + "total": 0.7852012270595878, + "queued": 40.629769, + "clean_up": 0.016240264056250453, + "file_setup": 0.028827585047110915, + "save_results": 0.0025640518870204687 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", + "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:47.111Z", + "date_created": "2024-03-02T22:19:35.006Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122971S", - "compute_time_sec": 0.122971, + "compute_time": "P0DT00H00M00.119931S", + "compute_time_sec": 0.119931, "compute_times": { - "prove": 0.07989700802136213, - "total": 0.12778416695073247, - "queued": 0.231593, - "clean_up": 0.004338543978519738, - "file_setup": 0.04149695695377886, - "save_results": 0.001680911984294653 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "prove": 0.09887892508413643, + "total": 0.12549577211029828, + "queued": 40.552476, + "clean_up": 0.007899258052930236, + "file_setup": 0.016978575964458287, + "save_results": 0.0013200589455664158 + }, + "file_size": 532, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", + "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:44.587Z", + "date_created": "2024-03-02T22:19:34.963Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128014S", - "compute_time_sec": 0.128014, + "compute_time": "P0DT00H00M00.308239S", + "compute_time_sec": 0.308239, "compute_times": { - "prove": 0.08263401291333139, - "total": 0.13507452490739524, - "queued": 0.233086, - "clean_up": 0.008105588844045997, - "file_setup": 0.04211885016411543, - "save_results": 0.0017826261464506388 + "prove": 0.2867297289194539, + "total": 0.314586246968247, + "queued": 39.622031, + "clean_up": 0.004962102975696325, + "file_setup": 0.0206260799895972, + "save_results": 0.001943530049175024 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", + "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:32.787Z", + "date_created": "2024-03-02T22:19:34.909Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164615S", - "compute_time_sec": 0.164615, + "compute_time": "P0DT00H00M00.370286S", + "compute_time_sec": 0.370286, "compute_times": { - "prove": 0.11053177795838565, - "total": 0.17059254297055304, - "queued": 0.171935, - "clean_up": 0.004258243017829955, - "file_setup": 0.053978779003955424, - "save_results": 0.00145844800863415 + "prove": 0.34130737208761275, + "total": 0.376522185979411, + "queued": 38.669829, + "clean_up": 0.008471829001791775, + "file_setup": 0.02454887900967151, + "save_results": 0.001779031939804554 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", + "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:29.506Z", + "date_created": "2024-03-02T22:19:34.896Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.289266S", - "compute_time_sec": 0.289266, + "compute_time": "P0DT00H00M00.174815S", + "compute_time_sec": 0.174815, "compute_times": { - "prove": 0.08642632805276662, - "total": 0.29704258195124567, - "queued": 0.183331, - "clean_up": 0.15804533392656595, - "file_setup": 0.05037923192139715, - "save_results": 0.0017682620091363788 + "prove": 0.0778409120393917, + "total": 0.18085870705544949, + "queued": 42.873267, + "clean_up": 0.08188443898689002, + "file_setup": 0.018623532028868794, + "save_results": 0.0020236889831721783 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", + "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:26.174Z", + "date_created": "2024-03-02T22:19:34.873Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.178451S", - "compute_time_sec": 0.178451, + "compute_time": "P0DT00H00M00.129168S", + "compute_time_sec": 0.129168, "compute_times": { - "prove": 0.12590954499319196, - "total": 0.18570560100488365, - "queued": 0.238111, - "clean_up": 0.02239793981425464, - "file_setup": 0.03476291592232883, - "save_results": 0.002222753129899502 + "prove": 0.11140450404491276, + "total": 11.33851779595716, + "queued": 36.762873, + "clean_up": 0.0029776159790344536, + "file_setup": 11.211716797959525, + "save_results": 0.001344212971162051 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", + "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T21:10:50.403Z", + "date_created": "2024-03-02T22:19:34.817Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150832S", - "compute_time_sec": 0.150832, + "compute_time": "P0DT00H00M00.132006S", + "compute_time_sec": 0.132006, "compute_times": { - "prove": 0.11755112698301673, - "total": 0.2853551240405068, - "queued": 0.335902, - "clean_up": 0.007708279998041689, - "file_setup": 0.029812542023137212, - "save_results": 0.0016887020319700241 + "prove": 0.080011370126158, + "total": 0.13885680097155273, + "queued": 39.970335, + "clean_up": 0.01748181483708322, + "file_setup": 0.03901624190621078, + "save_results": 0.0019160669762641191 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:47.502Z", + "date_created": "2024-03-02T22:19:34.806Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.078444S", - "compute_time_sec": 0.078444, + "compute_time": "P0DT00H00M00.193712S", + "compute_time_sec": 0.193712, "compute_times": { - "prove": 0.05746597901452333, - "total": 0.08412136998958886, - "queued": 0.181406, - "clean_up": 0.0030666429083794355, - "file_setup": 0.021971813053824008, - "save_results": 0.0012382810236886144 + "prove": 0.17043351900065318, + "total": 10.978355454979464, + "queued": 35.874311, + "clean_up": 0.003109109995421022, + "file_setup": 10.787516613025218, + "save_results": 0.001674333994742483 }, - "file_size": 451, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:39.474Z", + "date_created": "2024-03-02T22:19:34.774Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.085495S", - "compute_time_sec": 0.085495, + "compute_time": "P0DT00H00M00.205276S", + "compute_time_sec": 0.205276, "compute_times": { - "prove": 0.05661044199950993, - "total": 0.08519881102256477, - "queued": 0.2228, - "file_setup": 0.028238292085006833 + "prove": 0.186850864905864, + "total": 11.348314038012177, + "queued": 35.925496, + "clean_up": 0.0035353717394173145, + "file_setup": 11.152006654068828, + "save_results": 0.0015276442281901836 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" + "error": null }, { - "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:04:03.037Z", + "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.713Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.039789S", - "compute_time_sec": 0.039789, + "compute_time": "P0DT00H00M00.165272S", + "compute_time_sec": 0.165272, "compute_times": { - "total": 0.04271465499186888, - "queued": 0.225284, - "file_setup": 0.01975348498672247, - "generate_witness_c": 0.022592113993596286 + "prove": 0.14217190898489207, + "total": 0.17151216696947813, + "queued": 38.034718, + "clean_up": 0.003942857962101698, + "file_setup": 0.023223162977956235, + "save_results": 0.0017018220387399197 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:02:47.565Z", + "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.692Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.083115S", - "compute_time_sec": 0.083115, + "compute_time": "P0DT00H00M00.102217S", + "compute_time_sec": 0.102217, "compute_times": { - "total": 0.08423641003901139, - "queued": 0.18931, - "file_setup": 0.047118005983065814, - "generate_witness_c": 0.03662721102591604 + "prove": 0.07969108188990504, + "total": 0.10789976501837373, + "queued": 38.13202, + "clean_up": 0.004012368037365377, + "file_setup": 0.022230835049413145, + "save_results": 0.0015486960764974356 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:02:37.757Z", + "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.644Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.060050S", - "compute_time_sec": 0.06005, + "compute_time": "P0DT00H00M01.117661S", + "compute_time_sec": 1.117661, "compute_times": { - "total": 0.12728848890401423, - "queued": 0.250848, - "file_setup": 0.09145022416487336, - "generate_witness_c": 0.03525270987302065 + "prove": 1.0916141049237922, + "total": 1.125104735023342, + "queued": 31.725794, + "clean_up": 0.006913283024914563, + "file_setup": 0.02388083899859339, + "save_results": 0.002335774013772607 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", - "circuit_type": "circom", - "date_created": "2024-02-27T02:00:37.596Z", + "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.593Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.056679S", - "compute_time_sec": 0.056679, + "compute_time": "P0DT00H00M00.977064S", + "compute_time_sec": 0.977064, "compute_times": { - "total": 0.12009319197386503, - "queued": 0.559087, - "file_setup": 0.08946515002753586, - "generate_witness_c": 0.030112746986560524 + "prove": 0.9557226439937949, + "total": 0.9839210119098425, + "queued": 35.112241, + "clean_up": 0.00471810600720346, + "file_setup": 0.02103408006951213, + "save_results": 0.00203876500017941 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", - "circuit_name": "hash-checker", - "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", - "circuit_type": "circom", - "date_created": "2024-02-16T16:46:40.976Z", + "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.575Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.341615S", - "compute_time_sec": 5.341615, + "compute_time": "P0DT00H00M00.375914S", + "compute_time_sec": 0.375914, "compute_times": { - "prove": 5.2774561159312725, - "total": 5.348625190556049, - "queued": 0.208614, - "clean_up": 0.005355444736778736, - "file_setup": 0.0357542559504509, - "save_results": 0.0016373288817703724, - "generate_witness_c": 0.02802356705069542 + "prove": 0.34089843509718776, + "total": 0.38064429303631186, + "queued": 33.110783, + "clean_up": 0.015058210003189743, + "file_setup": 0.022246263921260834, + "save_results": 0.0021008079638704658 }, - "file_size": 789, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_type": "circom", - "date_created": "2024-02-15T19:09:39.253Z", + "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.531Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.042131S", - "compute_time_sec": 0.042131, + "compute_time": "P0DT00H00M00.472448S", + "compute_time_sec": 0.472448, "compute_times": { - "total": 0.04482376802479848, - "queued": 0.207543, - "file_setup": 0.023827903962228447, - "generate_witness_c": 0.020594758039806038 + "prove": 0.4435087050078437, + "total": 0.47790782095398754, + "queued": 30.700356, + "clean_up": 0.012506086030043662, + "file_setup": 0.019921150989830494, + "save_results": 0.0015664849197492003 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" + "error": null }, { - "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", - "circuit_type": "circom", - "date_created": "2024-02-15T19:08:49.137Z", + "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.492Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055379S", - "compute_time_sec": 0.055379, + "compute_time": "P0DT00H00M00.087612S", + "compute_time_sec": 0.087612, "compute_times": { - "total": 0.0464545710128732, - "queued": 0.187821, - "file_setup": 0.023604326997883618, - "generate_witness_c": 0.022402279020752758 + "prove": 0.06967927806545049, + "total": 0.092331736930646, + "queued": 29.991506, + "clean_up": 0.0028922349447384477, + "file_setup": 0.01781347393989563, + "save_results": 0.0015894660027697682 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:53:18.626Z", + "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.474Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.674886S", - "compute_time_sec": 1.674886, + "compute_time": "P0DT00H00M00.112744S", + "compute_time_sec": 0.112744, "compute_times": { - "prove": 1.6106855850666761, - "total": 1.682134603150189, - "queued": 0.21114, - "clean_up": 0.015362400561571121, - "file_setup": 0.038011837750673294, - "save_results": 0.0016225874423980713, - "generate_witness_c": 0.016064194962382317 + "prove": 0.09469883295241743, + "total": 0.11807810491882265, + "queued": 29.972988, + "clean_up": 0.0033285249955952168, + "file_setup": 0.017642873106524348, + "save_results": 0.002044467953965068 }, - "file_size": 713, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:49:33.830Z", + "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.387Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.049663S", - "compute_time_sec": 0.049663, + "compute_time": "P0DT00H00M00.097410S", + "compute_time_sec": 0.09741, "compute_times": { - "total": 0.05284719355404377, - "queued": 0.217998, - "file_setup": 0.04036730155348778, - "generate_witness_c": 0.012098094448447227 + "prove": 0.07845993107184768, + "total": 0.10426705703139305, + "queued": 30.149625, + "clean_up": 0.003105517942458391, + "file_setup": 0.02031002496369183, + "save_results": 0.0018116270657628775 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:48:55.324Z", + "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.386Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.052811S", - "compute_time_sec": 0.052811, + "compute_time": "P0DT00H00M00.103245S", + "compute_time_sec": 0.103245, "compute_times": { - "total": 0.05608381051570177, - "queued": 0.226522, - "file_setup": 0.03871022444218397, - "generate_witness_c": 0.01696752943098545 + "prove": 0.0779562909156084, + "total": 0.10882041102740914, + "queued": 29.333339, + "clean_up": 0.00295620399992913, + "file_setup": 0.026116034016013145, + "save_results": 0.0014624170726165175 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:47:58.610Z", + "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.380Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.057437S", - "compute_time_sec": 0.057437, + "compute_time": "P0DT00H00M00.384743S", + "compute_time_sec": 0.384743, "compute_times": { - "total": 0.05853192321956158, - "queued": 0.205516, - "file_setup": 0.043163422495126724, - "generate_witness_c": 0.014894634485244751 + "prove": 0.3528827680274844, + "total": 0.3893050210317597, + "queued": 29.028812, + "clean_up": 0.017584193032234907, + "file_setup": 0.016878271009773016, + "save_results": 0.0016379220178350806 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", - "circuit_type": "circom", - "date_created": "2024-02-15T16:47:01.336Z", + "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.286Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055829S", - "compute_time_sec": 0.055829, + "compute_time": "P0DT00H00M00.382096S", + "compute_time_sec": 0.382096, "compute_times": { - "total": 0.05997238401323557, - "queued": 0.250181, - "file_setup": 0.04254392720758915, - "generate_witness_c": 0.01698323991149664 + "prove": 0.35213211202062666, + "total": 0.3891321790870279, + "queued": 29.096306, + "clean_up": 0.014389456948265433, + "file_setup": 0.02016678685322404, + "save_results": 0.00188663718290627 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", - "circuit_name": "semaphore", - "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", - "circuit_type": "circom", - "date_created": "2024-02-15T16:45:59.082Z", + "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.248Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.074886S", - "compute_time_sec": 0.074886, + "compute_time": "P0DT00H00M00.623385S", + "compute_time_sec": 0.623385, "compute_times": { - "total": 0.07638306729495525, - "queued": 0.222935, - "file_setup": 0.05688828695565462, - "generate_witness_c": 0.019095703959465027 + "prove": 0.6039510099217296, + "total": 0.6293552990537137, + "queued": 27.786781, + "clean_up": 0.0037962039932608604, + "file_setup": 0.01944179111160338, + "save_results": 0.0017109769396483898 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null }, { - "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_type": "circom", - "date_created": "2024-02-12T16:08:49.852Z", + "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.228Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118463S", - "compute_time_sec": 0.118463, + "compute_time": "P0DT00H00M00.470183S", + "compute_time_sec": 0.470183, "compute_times": { - "total": 0.11371562909334898, - "queued": 0.165321, - "file_setup": 0.02585006970912218, - "generate_witness_wasm": 0.08747230330482125 + "prove": 0.4347335551865399, + "total": 0.47685516392812133, + "queued": 26.623268, + "clean_up": 0.017949641915038228, + "file_setup": 0.021318417973816395, + "save_results": 0.0024754919577389956 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_type": "circom", - "date_created": "2024-02-12T16:08:15.347Z", + "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.128Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087104S", - "compute_time_sec": 0.087104, + "compute_time": "P0DT00H00M00.523158S", + "compute_time_sec": 0.523158, "compute_times": { - "total": 0.08892976585775614, - "queued": 0.188521, - "file_setup": 0.02122315624728799, - "generate_witness_wasm": 0.06728191487491131 + "prove": 0.49819166213274, + "total": 0.5295807488728315, + "queued": 25.466882, + "clean_up": 0.007454287027940154, + "file_setup": 0.02171924593858421, + "save_results": 0.0017853768076747656 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", - "circuit_type": "circom", - "date_created": "2024-02-12T16:07:32.862Z", + "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.091Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.629850S", - "compute_time_sec": 0.62985, + "compute_time": "P0DT00H00M00.286944S", + "compute_time_sec": 0.286944, "compute_times": { - "total": 0.699215236119926, - "queued": 20.443074, - "file_setup": 0.08142021484673023, - "generate_witness_wasm": 0.6153158713132143 + "prove": 0.2631158559815958, + "total": 0.2923560020281002, + "queued": 28.66412, + "clean_up": 0.008188333013094962, + "file_setup": 0.019067034008912742, + "save_results": 0.0016677940730005503 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", - "circuit_name": "hashchecker", - "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", - "circuit_type": "circom", - "date_created": "2024-02-11T19:51:56.269Z", + "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:34.082Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.556787S", - "compute_time_sec": 3.556787, + "compute_time": "P0DT00H00M00.458130S", + "compute_time_sec": 0.45813, "compute_times": { - "total": 3.282685193931684, - "queued": 31.156839, - "file_setup": 0.9440451499540359, - "generate_witness_wasm": 2.1537286299280822 + "prove": 0.42354415403679013, + "total": 0.4653686359524727, + "queued": 24.323498, + "clean_up": 0.014879923779517412, + "file_setup": 0.024928942089900374, + "save_results": 0.0015406690072268248 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", - "circuit_name": "hashchecker", - "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", - "circuit_type": "circom", - "date_created": "2024-02-11T19:35:59.958Z", + "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.998Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.786155S", - "compute_time_sec": 5.786155, + "compute_time": "P0DT00H00M00.128011S", + "compute_time_sec": 0.128011, "compute_times": { - "prove": 1.6357202199287713, - "total": 5.85425769793801, - "queued": 1.584852, - "clean_up": 0.9189370227977633, - "file_setup": 0.8701981450431049, - "save_results": 0.24538314412347972, - "generate_witness_wasm": 2.1234320180956274 + "prove": 0.09206298098433763, + "total": 0.13274087803438306, + "queued": 28.63419, + "clean_up": 0.021465381956659257, + "file_setup": 0.017213757033459842, + "save_results": 0.0016593720065429807 }, - "file_size": 712, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:34:56.907Z", + "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.976Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.387894S", - "compute_time_sec": 2.387894, + "compute_time": "P0DT00H00M00.125847S", + "compute_time_sec": 0.125847, "compute_times": { - "total": 1.9064474820625037, - "queued": 1.557474, - "file_setup": 0.8709360021166503, - "generate_witness_wasm": 0.9751034409273416 + "prove": 0.10572471795603633, + "total": 0.1338271670974791, + "queued": 23.56859, + "clean_up": 0.003848722204566002, + "file_setup": 0.02194214309565723, + "save_results": 0.0019167859572917223 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:34:33.443Z", + "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.945Z", "perform_verify": false, - "status": "Failed", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.213770S", - "compute_time_sec": 2.21377, + "compute_time": "P0DT00H00M00.122820S", + "compute_time_sec": 0.12282, "compute_times": { - "total": 1.6578402749728411, - "queued": 1.501643, - "file_setup": 0.8060235111042857, - "generate_witness_wasm": 0.791354832937941 + "prove": 0.10552407801151276, + "total": 0.12850606301799417, + "queued": 23.571138, + "clean_up": 0.0035990109900012612, + "file_setup": 0.017446335055865347, + "save_results": 0.0015994029818102717 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:33:12.169Z", - "perform_verify": false, - "status": "Failed", + "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.870Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.888816S", - "compute_time_sec": 5.888816, + "compute_time": "P0DT00H00M00.105198S", + "compute_time_sec": 0.105198, "compute_times": { - "total": 5.5928051138762385, - "queued": 20.021632, - "file_setup": 0.9408337560016662, - "generate_witness_wasm": 4.466476025991142 + "prove": 0.07883684895932674, + "total": 0.1122406111098826, + "queued": 22.88221, + "clean_up": 0.003977251006290317, + "file_setup": 0.0269186079967767, + "save_results": 0.0020488761365413666 }, - "file_size": null, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null }, { - "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", - "circuit_name": "circom-multiplier2", - "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", - "circuit_type": "circom", - "date_created": "2024-01-31T18:16:21.991Z", + "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.855Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.895357S", - "compute_time_sec": 0.895357, + "compute_time": "P0DT00H00M00.375989S", + "compute_time_sec": 0.375989, "compute_times": { - "prove": 0.6790756830014288, - "total": 0.968905714340508, - "queued": 0.662781, - "clean_up": 0.00029797712340950966, - "file_setup": 0.2733065038919449, - "save_results": 0.003135905135422945, - "generate_witness_c": 0.012809758074581623 + "prove": 0.35955213801935315, + "total": 0.38039617508184165, + "queued": 22.616587, + "clean_up": 0.003521032049320638, + "file_setup": 0.015475824940949678, + "save_results": 0.0015010939678177238 }, - "file_size": 712, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", - "circuit_name": "circom-multiplier2", - "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:45.826Z", + "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.839Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.942551S", - "compute_time_sec": 0.942551, + "compute_time": "P0DT00H00M00.112413S", + "compute_time_sec": 0.112413, "compute_times": { - "prove": 0.7584659070707858, - "total": 1.0125216851010919, - "queued": 13.788636, - "clean_up": 0.00025292718783020973, - "file_setup": 0.24108529277145863, - "save_results": 0.0026897299103438854, - "generate_witness_c": 0.009630681946873665 + "prove": 0.09385650302283466, + "total": 0.11931004805956036, + "queued": 23.85771, + "clean_up": 0.0034119969932362437, + "file_setup": 0.020241676014848053, + "save_results": 0.0014685370260849595 }, - "file_size": 712, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", - "circuit_name": "circom-multiplier2", - "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:26.403Z", + "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.714Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.306255S", - "compute_time_sec": 3.306255, + "compute_time": "P0DT00H00M00.303833S", + "compute_time_sec": 0.303833, "compute_times": { - "prove": 2.568090456072241, - "total": 3.37676440179348, - "queued": 28.788691, - "clean_up": 0.0003418959677219391, - "file_setup": 0.241387109272182, - "save_results": 0.002813168801367283, - "generate_witness_c": 0.5637943758629262 + "prove": 0.27441725484095514, + "total": 0.43832587893120944, + "queued": 22.039487, + "clean_up": 0.013608262874186039, + "file_setup": 0.02093623112887144, + "save_results": 0.0018121080938726664 }, - "file_size": 713, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", - "circuit_name": "circom-multiplier2", - "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:18.014Z", + "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.706Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.490489S", - "compute_time_sec": 5.490489, + "compute_time": "P0DT00H00M00.354849S", + "compute_time_sec": 0.354849, "compute_times": { - "prove": 5.2387496647425, - "total": 5.556455092970282, - "queued": 30.599597, - "clean_up": 0.000279237050563097, - "file_setup": 0.23077922780066729, - "save_results": 0.006773914210498333, - "generate_witness_c": 0.07928962633013725 + "prove": 0.306272565969266, + "total": 0.36076175002381206, + "queued": 21.742685, + "clean_up": 0.031400882988236845, + "file_setup": 0.021054222946986556, + "save_results": 0.001673974096775055 }, - "file_size": 711, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", - "circuit_name": "sudoku", - "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", - "circuit_type": "circom", - "date_created": "2023-12-02T03:59:27.851Z", + "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.691Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.854809S", - "compute_time_sec": 7.854809, + "compute_time": "P0DT00H00M00.392543S", + "compute_time_sec": 0.392543, "compute_times": { - "prove": 4.957428568042815, - "total": 9.034430680796504, - "queued": 0.697877, - "clean_up": 0.001238434575498104, - "file_setup": 3.9956598421558738, - "save_results": 0.07156617846339941, - "generate_witness_c": 0.008326929062604904 + "prove": 0.32281060807872564, + "total": 0.39849924307782203, + "queued": 21.744261, + "clean_up": 0.049071428016759455, + "file_setup": 0.024452029960229993, + "save_results": 0.0017178819980472326 }, - "file_size": 1037, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", - "circuit_name": "sudoku", - "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", - "circuit_type": "circom", - "date_created": "2023-12-02T03:54:14.687Z", + "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.589Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.475101S", - "compute_time_sec": 8.475101, + "compute_time": "P0DT00H00M00.171713S", + "compute_time_sec": 0.171713, "compute_times": { - "prove": 5.822698147967458, - "total": 9.663341652601957, - "queued": 0.474116, - "clean_up": 0.0010337075218558311, - "file_setup": 3.76318403147161, - "save_results": 0.06816541589796543, - "generate_witness_c": 0.007991122081875801 + "prove": 0.0936721230391413, + "total": 0.17827622988261282, + "queued": 21.124808, + "clean_up": 0.03897871193476021, + "file_setup": 0.038734283996745944, + "save_results": 0.006515543907880783 }, - "file_size": 1037, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", - "circuit_name": "sudoku", - "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", - "circuit_type": "circom", - "date_created": "2023-12-02T03:52:28.815Z", + "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "circuit_name": "poseidon", + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_type": "gnark", + "date_created": "2024-03-02T22:19:33.567Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.662090S", - "compute_time_sec": 6.66209, + "compute_time": "P0DT00H00M00.380783S", + "compute_time_sec": 0.380783, "compute_times": { - "prove": 5.845281148329377, - "total": 7.817341674119234, - "queued": 28.321561, - "clean_up": 0.0009510181844234467, - "file_setup": 1.8957333201542497, - "save_results": 0.06738575547933578, - "generate_witness_c": 0.007616886869072914 + "prove": 0.34301244595553726, + "total": 0.38707092101685703, + "queued": 20.832537, + "clean_up": 0.0032510189339518547, + "file_setup": 0.038782318006269634, + "save_results": 0.0015539260348305106 }, - "file_size": 1037, + "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "187148", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/list?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", - "body": "", - "status": 200, - "response": [ + }, { - "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", + "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.182Z", + "date_created": "2024-03-02T22:19:33.549Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150585S", - "compute_time_sec": 0.150585, + "compute_time": "P0DT00H00M00.471394S", + "compute_time_sec": 0.471394, "compute_times": { - "prove": 0.11676173796877265, - "total": 0.15572588506620377, - "queued": 51.669893, - "clean_up": 0.009185672039166093, - "file_setup": 0.027514968067407608, - "save_results": 0.001868820982053876 + "prove": 0.44031512807123363, + "total": 0.4763076149392873, + "queued": 20.750492, + "clean_up": 0.004170806030742824, + "file_setup": 0.029659383930265903, + "save_results": 0.0016929719131439924 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c7a6ad94-11fe-40cc-af14-4a2975a42c37", + "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.062Z", + "date_created": "2024-03-02T22:19:33.474Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223055S", - "compute_time_sec": 0.223055, + "compute_time": "P0DT00H00M00.124495S", + "compute_time_sec": 0.124495, "compute_times": { - "prove": 0.20497421699110419, - "total": 0.22819320199778304, - "queued": 48.364288, - "clean_up": 0.0023624080349691212, - "file_setup": 0.01836701901629567, - "save_results": 0.002189519989769906 + "prove": 0.10073043289594352, + "total": 0.13022281299345195, + "queued": 20.298391, + "clean_up": 0.003909061895683408, + "file_setup": 0.02332677412778139, + "save_results": 0.0017897870857268572 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5e901bf1-0e3c-4cd5-93f2-8e1d72ca6b61", + "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.018Z", + "date_created": "2024-03-02T22:19:33.431Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.213402S", - "compute_time_sec": 0.213402, + "compute_time": "P0DT00H00M00.223264S", + "compute_time_sec": 0.223264, "compute_times": { - "prove": 0.19061215105466545, - "total": 0.21872411505319178, - "queued": 48.427521, - "clean_up": 0.004127845983020961, - "file_setup": 0.022272864007391036, - "save_results": 0.0014097680104896426 + "prove": 0.20454663503915071, + "total": 0.22819734294898808, + "queued": 19.992071, + "clean_up": 0.005460212007164955, + "file_setup": 0.016508184024132788, + "save_results": 0.0012988959206268191 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "971badf8-e532-4ce9-9706-dcd6e9e9d6b8", + "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.932Z", + "date_created": "2024-03-02T22:19:33.409Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.176113S", - "compute_time_sec": 0.176113, + "compute_time": "P0DT00H00M00.236397S", + "compute_time_sec": 0.236397, "compute_times": { - "prove": 0.15716673800488934, - "total": 0.18125584500376135, - "queued": 48.35111, - "clean_up": 0.006394687981810421, - "file_setup": 0.015695078996941447, - "save_results": 0.001599603972863406 + "prove": 0.2126400190172717, + "total": 0.24228776898235083, + "queued": 20.01237, + "clean_up": 0.003821471007540822, + "file_setup": 0.023733722046017647, + "save_results": 0.0016510839341208339 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8823f00d-97ab-4e40-b436-a77be66499ef", + "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.924Z", + "date_created": "2024-03-02T22:19:33.344Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.175913S", - "compute_time_sec": 0.175913, + "compute_time": "P0DT00H00M00.259418S", + "compute_time_sec": 0.259418, "compute_times": { - "prove": 0.15754800499416888, - "total": 0.1815414800075814, - "queued": 48.022383, - "clean_up": 0.002829990000464022, - "file_setup": 0.018857149058021605, - "save_results": 0.0017489319434389472 + "prove": 0.23506561596877873, + "total": 0.26543588005006313, + "queued": 19.361679, + "clean_up": 0.007562417071312666, + "file_setup": 0.020428013987839222, + "save_results": 0.001966766081750393 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "56c07005-f9f5-4e6b-92b1-3d85ac70babb", + "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.909Z", + "date_created": "2024-03-02T22:19:33.290Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.194250S", - "compute_time_sec": 0.19425, + "compute_time": "P0DT00H00M00.515161S", + "compute_time_sec": 0.515161, "compute_times": { - "prove": 0.12928905605804175, - "total": 9.857152820914052, - "queued": 47.737361, - "clean_up": 0.01866333093494177, - "file_setup": 9.695790873956867, - "save_results": 0.005249700974673033 + "prove": 0.49523238092660904, + "total": 0.5212377090938389, + "queued": 18.933764, + "clean_up": 0.004512671031989157, + "file_setup": 0.01928175101056695, + "save_results": 0.001811992027796805 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1211a7c0-d1fe-4a13-8c30-455ed407b73f", + "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.810Z", + "date_created": "2024-03-02T22:19:33.256Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092544S", - "compute_time_sec": 0.092544, + "compute_time": "P0DT00H00M00.157983S", + "compute_time_sec": 0.157983, "compute_times": { - "prove": 0.07295725599396974, - "total": 0.09864532802021131, - "queued": 47.866814, - "clean_up": 0.0027975860284641385, - "file_setup": 0.020817386044654995, - "save_results": 0.0016599719529040158 + "prove": 0.13088228809647262, + "total": 0.16489004692994058, + "queued": 18.546469, + "clean_up": 0.009672191925346851, + "file_setup": 0.02190026408061385, + "save_results": 0.001803946914151311 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ff38ebae-cd77-44b2-aa70-98408c4c5dd2", + "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.800Z", + "date_created": "2024-03-02T22:19:33.239Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105093S", - "compute_time_sec": 0.105093, + "compute_time": "P0DT00H00M00.121145S", + "compute_time_sec": 0.121145, "compute_times": { - "prove": 0.08778161800000817, - "total": 0.11094204697292298, - "queued": 47.8478, - "clean_up": 0.002542709931731224, - "file_setup": 0.018792407936416566, - "save_results": 0.0014581570867449045 + "prove": 0.08225085295271128, + "total": 0.1268888000631705, + "queued": 18.194739, + "clean_up": 0.014004492084495723, + "file_setup": 0.028718804009258747, + "save_results": 0.0015831160126253963 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4ac0de61-5e45-46dc-b9cf-3c97b1372fac", + "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.792Z", + "date_created": "2024-03-02T22:19:33.167Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.233969S", - "compute_time_sec": 0.233969, + "compute_time": "P0DT00H00M00.378241S", + "compute_time_sec": 0.378241, "compute_times": { - "prove": 0.2173847450176254, - "total": 0.23918032401707023, - "queued": 47.632341, - "clean_up": 0.003762404026929289, - "file_setup": 0.015466460026800632, - "save_results": 0.0015042249578982592 + "prove": 0.32446074998006225, + "total": 0.46455645211972296, + "queued": 17.564428, + "clean_up": 0.025895975064486265, + "file_setup": 0.0355614370200783, + "save_results": 0.0018245270475745201 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fb1d6b5b-828d-4b65-9a05-bcf3f9ba72b9", + "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.637Z", + "date_created": "2024-03-02T22:19:33.137Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.367199S", - "compute_time_sec": 0.367199, + "compute_time": "P0DT00H00M00.527332S", + "compute_time_sec": 0.527332, "compute_times": { - "prove": 0.34983603993896395, - "total": 0.3715133300283924, - "queued": 47.284314, - "clean_up": 0.004351923940703273, - "file_setup": 0.01482851302716881, - "save_results": 0.0021903570741415024 + "prove": 0.46785091701895, + "total": 0.5323068069992587, + "queued": 17.114249, + "clean_up": 0.04379052110016346, + "file_setup": 0.018304905970580876, + "save_results": 0.0018958799773827195 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6ac7bc46-9cb6-4a65-9fc4-e5f13431726f", + "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.620Z", + "date_created": "2024-03-02T22:19:33.101Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.235932S", - "compute_time_sec": 0.235932, + "compute_time": "P0DT00H00M00.157597S", + "compute_time_sec": 0.157597, "compute_times": { - "prove": 0.22235612478107214, - "total": 0.24128600303083658, - "queued": 50.101947, - "clean_up": 0.0031629670411348343, - "file_setup": 0.014214606955647469, - "save_results": 0.0011093378998339176 + "prove": 0.12255263701081276, + "total": 0.16386522795073688, + "queued": 19.497095, + "clean_up": 0.003113526967354119, + "file_setup": 0.03630416397936642, + "save_results": 0.0015326740685850382 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cfb2563f-7208-48e0-93cf-b2506c3d05db", + "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.593Z", + "date_created": "2024-03-02T22:19:33.057Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.916143S", - "compute_time_sec": 0.916143, + "compute_time": "P0DT00H00M00.242588S", + "compute_time_sec": 0.242588, "compute_times": { - "prove": 0.7969153829617426, - "total": 11.417283304966986, - "queued": 46.46669, - "clean_up": 0.08386482996866107, - "file_setup": 10.52351449499838, - "save_results": 0.00758640409912914 + "prove": 0.20696109696291387, + "total": 0.24818814708851278, + "queued": 16.264806, + "clean_up": 0.003144470974802971, + "file_setup": 0.03611759003251791, + "save_results": 0.0016494940500706434 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5e21e4a8-c7f4-44f7-beb7-c0b583ed4234", + "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.516Z", + "date_created": "2024-03-02T22:19:33.015Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.426199S", - "compute_time_sec": 0.426199, + "compute_time": "P0DT00H00M00.242412S", + "compute_time_sec": 0.242412, "compute_times": { - "prove": 0.4102505180053413, - "total": 0.43261146097211167, - "queued": 46.82937, - "clean_up": 0.003141910012345761, - "file_setup": 0.017152403015643358, - "save_results": 0.0012355779763311148 + "prove": 0.16999451199080795, + "total": 0.24800510297063738, + "queued": 15.393279, + "clean_up": 0.05378705798648298, + "file_setup": 0.021581811015494168, + "save_results": 0.0023058250080794096 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d69b68b5-132a-4b04-b875-48e2c95bf842", + "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.491Z", + "date_created": "2024-03-02T22:19:32.971Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.474603S", - "compute_time_sec": 0.474603, + "compute_time": "P0DT00H00M00.973140S", + "compute_time_sec": 0.97314, "compute_times": { - "prove": 0.4527727549429983, - "total": 0.4810627130791545, - "queued": 49.399479, - "clean_up": 0.0032021570950746536, - "file_setup": 0.02290356601588428, - "save_results": 0.0017274878919124603 + "prove": 0.5375044860411435, + "total": 0.9786076380405575, + "queued": 14.685862, + "clean_up": 0.41053569701034576, + "file_setup": 0.02815453300718218, + "save_results": 0.0020460280356928706 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4baed11c-5464-4388-9d51-15420e888150", + "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.478Z", + "date_created": "2024-03-02T22:19:32.913Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.305654S", - "compute_time_sec": 0.305654, + "compute_time": "P0DT00H00M00.365020S", + "compute_time_sec": 0.36502, "compute_times": { - "prove": 0.2871348679764196, - "total": 0.3104168300051242, - "queued": 46.529494, - "clean_up": 0.0037129210541024804, - "file_setup": 0.017233187099918723, - "save_results": 0.0019823479233309627 + "prove": 0.3317899671383202, + "total": 0.37020347407087684, + "queued": 16.60799, + "clean_up": 0.003273986978456378, + "file_setup": 0.032879116013646126, + "save_results": 0.00186073686927557 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac370022-43a8-4b94-8d27-45c49db3e382", + "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.414Z", + "date_created": "2024-03-02T22:19:32.888Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.498123S", - "compute_time_sec": 0.498123, + "compute_time": "P0DT00H00M00.456895S", + "compute_time_sec": 0.456895, "compute_times": { - "prove": 0.47856602212414145, - "total": 0.5038217708934098, - "queued": 45.444814, - "clean_up": 0.0037471128161996603, - "file_setup": 0.019111952977254987, - "save_results": 0.0020769149996340275 + "prove": 0.423072372097522, + "total": 0.46337219700217247, + "queued": 13.632284, + "clean_up": 0.003993527963757515, + "file_setup": 0.03403562190942466, + "save_results": 0.0018623609794303775 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f7fa636b-2dfc-4d34-8ec8-ecc7cfd00118", + "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.362Z", + "date_created": "2024-03-02T22:19:32.837Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.518721S", - "compute_time_sec": 0.518721, + "compute_time": "P0DT00H00M00.140068S", + "compute_time_sec": 0.140068, "compute_times": { - "prove": 0.5003455500118434, - "total": 0.5234491459559649, - "queued": 45.480803, - "clean_up": 0.0037253409391269088, - "file_setup": 0.017134927911683917, - "save_results": 0.0019250600598752499 + "prove": 0.1145919740665704, + "total": 0.14642110699787736, + "queued": 12.877362, + "clean_up": 0.0042882689740508795, + "file_setup": 0.025636608013883233, + "save_results": 0.0015542889013886452 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c905f8e3-6b37-4cd4-8ae0-537b4104091b", + "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.356Z", + "date_created": "2024-03-02T22:19:32.806Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.611922S", - "compute_time_sec": 0.611922, + "compute_time": "P0DT00H00M00.181831S", + "compute_time_sec": 0.181831, "compute_times": { - "prove": 0.5805270280689001, - "total": 0.6166191740194336, - "queued": 44.232932, - "clean_up": 0.008304930990561843, - "file_setup": 0.025953233940526843, - "save_results": 0.0014997139805927873 + "prove": 0.14706613693851978, + "total": 0.20189034601207823, + "queued": 12.867749, + "clean_up": 0.0034584460081532598, + "file_setup": 0.03571781504433602, + "save_results": 0.0014523779973387718 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "afa20efa-c15d-4bf3-9a78-c251cfe045a1", + "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.294Z", + "date_created": "2024-03-02T22:19:32.751Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308959S", - "compute_time_sec": 0.308959, + "compute_time": "P0DT00H00M00.450066S", + "compute_time_sec": 0.450066, "compute_times": { - "prove": 0.2826259849825874, - "total": 0.3145583850564435, - "queued": 43.33347, - "clean_up": 0.003558462020009756, - "file_setup": 0.0257925660116598, - "save_results": 0.0022130260476842523 + "prove": 0.4147049420280382, + "total": 0.45607288100291044, + "queued": 11.772521, + "clean_up": 0.007868458982557058, + "file_setup": 0.030776931904256344, + "save_results": 0.0023057740181684494 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e168cd8d-22f7-4a26-bd15-55fd00f9b611", + "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.184Z", + "date_created": "2024-03-02T22:19:32.720Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109062S", - "compute_time_sec": 0.109062, + "compute_time": "P0DT00H00M00.420386S", + "compute_time_sec": 0.420386, "compute_times": { - "prove": 0.07950302597600967, - "total": 0.11443837394472212, - "queued": 47.654241, - "clean_up": 0.004247633973136544, - "file_setup": 0.028729144018143415, - "save_results": 0.001540875993669033 + "prove": 0.3990589149761945, + "total": 0.4270030810730532, + "queued": 10.7278, + "clean_up": 0.005256709060631692, + "file_setup": 0.02061484009027481, + "save_results": 0.001710172975435853 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d687c008-8e90-4c1e-af2a-6f394a0c9bba", + "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.144Z", + "date_created": "2024-03-02T22:19:32.707Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.249112S", - "compute_time_sec": 0.249112, + "compute_time": "P0DT00H00M00.142094S", + "compute_time_sec": 0.142094, "compute_times": { - "prove": 0.21678003598935902, - "total": 0.25460609793663025, - "queued": 42.162713, - "clean_up": 0.01700777595397085, - "file_setup": 0.018869346007704735, - "save_results": 0.0016134349862113595 + "prove": 0.09821043501142412, + "total": 0.14811538497451693, + "queued": 14.851825, + "clean_up": 0.005784207955002785, + "file_setup": 0.04186572507023811, + "save_results": 0.001917139976285398 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3796bf21-8a36-4998-8a66-4cc719159605", + "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.120Z", + "date_created": "2024-03-02T22:19:32.630Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.389380S", - "compute_time_sec": 0.38938, + "compute_time": "P0DT00H00M00.855499S", + "compute_time_sec": 0.855499, "compute_times": { - "prove": 0.3490279840771109, - "total": 0.39595628902316093, - "queued": 44.712192, - "clean_up": 0.018011081032454967, - "file_setup": 0.026378671871498227, - "save_results": 0.0021800349932163954 + "prove": 0.8245165729895234, + "total": 0.8615315690403804, + "queued": 9.176532, + "clean_up": 0.014629843994043767, + "file_setup": 0.019743680022656918, + "save_results": 0.0022631760220974684 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "50e7b3bc-7129-4a8c-9c9b-c808d5b5664f", + "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.062Z", + "date_created": "2024-03-02T22:19:32.588Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.293103S", - "compute_time_sec": 0.293103, + "compute_time": "P0DT00H00M00.490007S", + "compute_time_sec": 0.490007, "compute_times": { - "prove": 0.2668396580265835, - "total": 0.29833219898864627, - "queued": 41.268095, - "clean_up": 0.004488729988224804, - "file_setup": 0.024880563956685364, - "save_results": 0.0017942419508472085 + "prove": 0.455899114953354, + "total": 0.49668906279839575, + "queued": 11.871105, + "clean_up": 0.0045558069832623005, + "file_setup": 0.03405331703834236, + "save_results": 0.0018026470206677914 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c9b3ee3f-364c-4399-933c-bf2cdcb57a3b", + "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.027Z", + "date_created": "2024-03-02T22:19:32.542Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.726384S", - "compute_time_sec": 0.726384, + "compute_time": "P0DT00H00M01.008029S", + "compute_time_sec": 1.008029, "compute_times": { - "prove": 0.6857492360286415, - "total": 0.7852012270595878, - "queued": 40.629769, - "clean_up": 0.016240264056250453, - "file_setup": 0.028827585047110915, - "save_results": 0.0025640518870204687 + "prove": 0.9685044119833037, + "total": 1.0136986010475084, + "queued": 7.558703, + "clean_up": 0.021701849065721035, + "file_setup": 0.020927226985804737, + "save_results": 0.002168047009035945 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "87b885b0-cd64-4cd8-a8c2-bb900c39c2e4", + "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:35.006Z", + "date_created": "2024-03-02T22:19:32.490Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119931S", - "compute_time_sec": 0.119931, + "compute_time": "P0DT00H00M00.576096S", + "compute_time_sec": 0.576096, "compute_times": { - "prove": 0.09887892508413643, - "total": 0.12549577211029828, - "queued": 40.552476, - "clean_up": 0.007899258052930236, - "file_setup": 0.016978575964458287, - "save_results": 0.0013200589455664158 + "prove": 0.5422158139990643, + "total": 0.5823603679891676, + "queued": 6.353891, + "clean_up": 0.0037581800715997815, + "file_setup": 0.03395645902492106, + "save_results": 0.002097297925502062 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3cb5945c-8b7a-407d-bf07-01d615d7e104", + "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.963Z", + "date_created": "2024-03-02T22:19:32.478Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.308239S", - "compute_time_sec": 0.308239, + "compute_time": "P0DT00H00M00.209934S", + "compute_time_sec": 0.209934, "compute_times": { - "prove": 0.2867297289194539, - "total": 0.314586246968247, - "queued": 39.622031, - "clean_up": 0.004962102975696325, - "file_setup": 0.0206260799895972, - "save_results": 0.001943530049175024 + "prove": 0.15358152601402253, + "total": 0.21605274605099112, + "queued": 10.113062, + "clean_up": 0.023381736944429576, + "file_setup": 0.037115994025953114, + "save_results": 0.001614085049368441 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "deed1d97-4235-4e26-ad0f-e310809122f0", + "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.909Z", + "date_created": "2024-03-02T22:19:32.415Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.370286S", - "compute_time_sec": 0.370286, + "compute_time": "P0DT00H00M00.591839S", + "compute_time_sec": 0.591839, "compute_times": { - "prove": 0.34130737208761275, - "total": 0.376522185979411, - "queued": 38.669829, - "clean_up": 0.008471829001791775, - "file_setup": 0.02454887900967151, - "save_results": 0.001779031939804554 + "prove": 0.5229394290363416, + "total": 0.5979725319193676, + "queued": 5.154185, + "clean_up": 0.02260146988555789, + "file_setup": 0.05059771193191409, + "save_results": 0.0014608950586989522 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b376768d-6897-45bd-bda5-a7b414255b3e", + "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.896Z", + "date_created": "2024-03-02T22:19:32.366Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174815S", - "compute_time_sec": 0.174815, + "compute_time": "P0DT00H00M00.116234S", + "compute_time_sec": 0.116234, "compute_times": { - "prove": 0.0778409120393917, - "total": 0.18085870705544949, - "queued": 42.873267, - "clean_up": 0.08188443898689002, - "file_setup": 0.018623532028868794, - "save_results": 0.0020236889831721783 + "prove": 0.07700311101507396, + "total": 0.12174052593763918, + "queued": 4.424714, + "clean_up": 0.006362012936733663, + "file_setup": 0.03617248602677137, + "save_results": 0.0017600810388103127 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "199f5d9f-2ee9-4b82-9400-de8444ad11c1", + "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.873Z", + "date_created": "2024-03-02T22:19:32.357Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129168S", - "compute_time_sec": 0.129168, + "compute_time": "P0DT00H00M00.099418S", + "compute_time_sec": 0.099418, "compute_times": { - "prove": 0.11140450404491276, - "total": 11.33851779595716, - "queued": 36.762873, - "clean_up": 0.0029776159790344536, - "file_setup": 11.211716797959525, - "save_results": 0.001344212971162051 + "prove": 0.07262928795535117, + "total": 0.10508589306846261, + "queued": 3.682512, + "clean_up": 0.003569742082618177, + "file_setup": 0.027104002074338496, + "save_results": 0.0014839039649814367 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7a974299-d901-4be3-92f5-b1226b16bdfe", + "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.817Z", + "date_created": "2024-03-02T22:19:32.309Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132006S", - "compute_time_sec": 0.132006, + "compute_time": "P0DT00H00M00.138870S", + "compute_time_sec": 0.13887, "compute_times": { - "prove": 0.080011370126158, - "total": 0.13885680097155273, - "queued": 39.970335, - "clean_up": 0.01748181483708322, - "file_setup": 0.03901624190621078, - "save_results": 0.0019160669762641191 + "prove": 0.0766439950093627, + "total": 0.14458074199501425, + "queued": 2.903833, + "clean_up": 0.02824126894120127, + "file_setup": 0.03780686797108501, + "save_results": 0.0015501140151172876 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "50b0d4d0-be3a-48ed-ab46-f85fedff8425", + "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.806Z", + "date_created": "2024-03-02T22:19:32.243Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.193712S", - "compute_time_sec": 0.193712, + "compute_time": "P0DT00H00M00.132945S", + "compute_time_sec": 0.132945, "compute_times": { - "prove": 0.17043351900065318, - "total": 10.978355454979464, - "queued": 35.874311, - "clean_up": 0.003109109995421022, - "file_setup": 10.787516613025218, - "save_results": 0.001674333994742483 + "prove": 0.10661404114216566, + "total": 0.14006488304585218, + "queued": 7.128484, + "clean_up": 0.005756359081715345, + "file_setup": 0.0256589378695935, + "save_results": 0.0016340878792107105 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1c4ca425-6693-4229-86ea-f22bcf0b982f", + "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.774Z", + "date_created": "2024-03-02T22:19:32.216Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.205276S", - "compute_time_sec": 0.205276, + "compute_time": "P0DT00H00M00.097658S", + "compute_time_sec": 0.097658, "compute_times": { - "prove": 0.186850864905864, - "total": 11.348314038012177, - "queued": 35.925496, - "clean_up": 0.0035353717394173145, - "file_setup": 11.152006654068828, - "save_results": 0.0015276442281901836 + "prove": 0.07415288093034178, + "total": 0.10346396896056831, + "queued": 2.235442, + "clean_up": 0.003746030037291348, + "file_setup": 0.023523699957877398, + "save_results": 0.001744512002915144 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d093f175-3045-482a-8a6a-1ed2fc94a0f4", + "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.713Z", + "date_created": "2024-03-02T22:19:32.197Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.165272S", - "compute_time_sec": 0.165272, + "compute_time": "P0DT00H00M00.126620S", + "compute_time_sec": 0.12662, "compute_times": { - "prove": 0.14217190898489207, - "total": 0.17151216696947813, - "queued": 38.034718, - "clean_up": 0.003942857962101698, - "file_setup": 0.023223162977956235, - "save_results": 0.0017018220387399197 + "prove": 0.08383059408515692, + "total": 0.13342511001974344, + "queued": 2.054465, + "clean_up": 0.017144297948107123, + "file_setup": 0.030395573005080223, + "save_results": 0.001586398109793663 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9dd29a1c-49aa-4c62-a16d-97d356aa3cc2", + "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.692Z", + "date_created": "2024-03-02T22:19:32.091Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102217S", - "compute_time_sec": 0.102217, + "compute_time": "P0DT00H00M00.135631S", + "compute_time_sec": 0.135631, "compute_times": { - "prove": 0.07969108188990504, - "total": 0.10789976501837373, - "queued": 38.13202, - "clean_up": 0.004012368037365377, - "file_setup": 0.022230835049413145, - "save_results": 0.0015486960764974356 + "prove": 0.0823628450743854, + "total": 0.14176014298573136, + "queued": 1.539206, + "clean_up": 0.017501453985460103, + "file_setup": 0.03982250590343028, + "save_results": 0.0016014629509299994 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "bab948ef-7cfa-4761-97c8-a6247f1f7f94", + "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.644Z", + "date_created": "2024-03-02T22:19:32.078Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.117661S", - "compute_time_sec": 1.117661, + "compute_time": "P0DT00H00M00.138158S", + "compute_time_sec": 0.138158, "compute_times": { - "prove": 1.0916141049237922, - "total": 1.125104735023342, - "queued": 31.725794, - "clean_up": 0.006913283024914563, - "file_setup": 0.02388083899859339, - "save_results": 0.002335774013772607 + "prove": 0.07979016215540469, + "total": 0.14502660813741386, + "queued": 0.943551, + "clean_up": 0.020246606087312102, + "file_setup": 0.04280776507221162, + "save_results": 0.0017201078590005636 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "87c71ae2-b2cf-4a00-9ae8-b7ad59421d1e", + "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.593Z", + "date_created": "2024-03-02T22:19:32.058Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.977064S", - "compute_time_sec": 0.977064, + "compute_time": "P0DT00H00M00.570352S", + "compute_time_sec": 0.570352, "compute_times": { - "prove": 0.9557226439937949, - "total": 0.9839210119098425, - "queued": 35.112241, - "clean_up": 0.00471810600720346, - "file_setup": 0.02103408006951213, - "save_results": 0.00203876500017941 + "prove": 0.522533038049005, + "total": 0.5765696190064773, + "queued": 5.49816, + "clean_up": 0.004591017961502075, + "file_setup": 0.04690163198392838, + "save_results": 0.00215094699524343 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e338fce4-f816-47df-8739-8044e38f3bd5", + "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.575Z", + "date_created": "2024-03-02T22:19:31.958Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375914S", - "compute_time_sec": 0.375914, + "compute_time": "P0DT00H00M00.141230S", + "compute_time_sec": 0.14123, "compute_times": { - "prove": 0.34089843509718776, - "total": 0.38064429303631186, - "queued": 33.110783, - "clean_up": 0.015058210003189743, - "file_setup": 0.022246263921260834, - "save_results": 0.0021008079638704658 + "prove": 0.09054448700044304, + "total": 0.14681443898007274, + "queued": 0.857495, + "clean_up": 0.01092955400235951, + "file_setup": 0.04332920000888407, + "save_results": 0.0015883928863331676 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7e09dbd5-afbb-41b1-a50c-63ea6ab7220d", + "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.531Z", + "date_created": "2024-03-02T22:19:31.946Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.472448S", - "compute_time_sec": 0.472448, + "compute_time": "P0DT00H00M00.124351S", + "compute_time_sec": 0.124351, "compute_times": { - "prove": 0.4435087050078437, - "total": 0.47790782095398754, - "queued": 30.700356, - "clean_up": 0.012506086030043662, - "file_setup": 0.019921150989830494, - "save_results": 0.0015664849197492003 + "prove": 0.07182355504482985, + "total": 0.12982704397290945, + "queued": 0.172555, + "clean_up": 0.020923485048115253, + "file_setup": 0.03491202800069004, + "save_results": 0.0018582409247756004 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5195f61f-6c9f-44fd-b1b9-669b65b06936", + "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.492Z", + "date_created": "2024-03-02T22:19:31.938Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087612S", - "compute_time_sec": 0.087612, + "compute_time": "P0DT00H00M00.148920S", + "compute_time_sec": 0.14892, "compute_times": { - "prove": 0.06967927806545049, - "total": 0.092331736930646, - "queued": 29.991506, - "clean_up": 0.0028922349447384477, - "file_setup": 0.01781347393989563, - "save_results": 0.0015894660027697682 + "prove": 0.07293843105435371, + "total": 0.15480406815186143, + "queued": 0.196521, + "clean_up": 0.040053355041891336, + "file_setup": 0.03987180581316352, + "save_results": 0.0016056180465966463 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "662271f2-6a50-4c97-849e-f53656e4a98c", + "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.474Z", + "date_created": "2024-03-02T22:19:31.776Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112744S", - "compute_time_sec": 0.112744, + "compute_time": "P0DT00H00M00.106213S", + "compute_time_sec": 0.106213, "compute_times": { - "prove": 0.09469883295241743, - "total": 0.11807810491882265, - "queued": 29.972988, - "clean_up": 0.0033285249955952168, - "file_setup": 0.017642873106524348, - "save_results": 0.002044467953965068 + "prove": 0.08078976103570312, + "total": 0.11167675291653723, + "queued": 0.231229, + "clean_up": 0.005760588916018605, + "file_setup": 0.023330271942541003, + "save_results": 0.0013793050311505795 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8810844a-1ec2-4fd4-b9ee-90ada966cebe", + "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.387Z", + "date_created": "2024-03-02T22:19:30.141Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097410S", - "compute_time_sec": 0.09741, + "compute_time": "P0DT00H00M00.111507S", + "compute_time_sec": 0.111507, "compute_times": { - "prove": 0.07845993107184768, - "total": 0.10426705703139305, - "queued": 30.149625, - "clean_up": 0.003105517942458391, - "file_setup": 0.02031002496369183, - "save_results": 0.0018116270657628775 + "prove": 0.075576186995022, + "total": 0.11713997193146497, + "queued": 0.16129, + "clean_up": 0.0037848310312256217, + "file_setup": 0.035947992000728846, + "save_results": 0.0014955269871279597 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a436d285-cbcc-4fc4-a811-90d5d81b43f5", + "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.386Z", + "date_created": "2024-03-02T22:19:28.622Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103245S", - "compute_time_sec": 0.103245, + "compute_time": "P0DT00H00M00.110477S", + "compute_time_sec": 0.110477, "compute_times": { - "prove": 0.0779562909156084, - "total": 0.10882041102740914, - "queued": 29.333339, - "clean_up": 0.00295620399992913, - "file_setup": 0.026116034016013145, - "save_results": 0.0014624170726165175 + "prove": 0.07629627687856555, + "total": 0.11736977496184409, + "queued": 0.188204, + "clean_up": 0.004256210057064891, + "file_setup": 0.034773221937939525, + "save_results": 0.0016197890508919954 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a312ce91-d0c4-4d14-9d4d-320bec0712af", + "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.380Z", + "date_created": "2024-03-02T22:19:27.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.384743S", - "compute_time_sec": 0.384743, + "compute_time": "P0DT00H00M00.117834S", + "compute_time_sec": 0.117834, "compute_times": { - "prove": 0.3528827680274844, - "total": 0.3893050210317597, - "queued": 29.028812, - "clean_up": 0.017584193032234907, - "file_setup": 0.016878271009773016, - "save_results": 0.0016379220178350806 + "prove": 0.07615005096886307, + "total": 0.12300548201892525, + "queued": 0.205188, + "clean_up": 0.013062510988675058, + "file_setup": 0.03202356898691505, + "save_results": 0.001405435032211244 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3e75cd04-973b-4c20-8639-9579674833f3", + "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.286Z", + "date_created": "2024-03-02T22:19:25.393Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.382096S", - "compute_time_sec": 0.382096, + "compute_time": "P0DT00H00M00.133236S", + "compute_time_sec": 0.133236, "compute_times": { - "prove": 0.35213211202062666, - "total": 0.3891321790870279, - "queued": 29.096306, - "clean_up": 0.014389456948265433, - "file_setup": 0.02016678685322404, - "save_results": 0.00188663718290627 + "prove": 0.08939769200515002, + "total": 0.13879455591086298, + "queued": 0.161569, + "clean_up": 0.004053406999446452, + "file_setup": 0.04343735601287335, + "save_results": 0.0015739259542897344 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b8349167-08ac-4b65-8818-c1626f22fd1f", + "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.248Z", + "date_created": "2024-03-02T22:19:23.768Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.623385S", - "compute_time_sec": 0.623385, + "compute_time": "P0DT00H00M00.106542S", + "compute_time_sec": 0.106542, "compute_times": { - "prove": 0.6039510099217296, - "total": 0.6293552990537137, - "queued": 27.786781, - "clean_up": 0.0037962039932608604, - "file_setup": 0.01944179111160338, - "save_results": 0.0017109769396483898 + "prove": 0.07830432313494384, + "total": 0.11298795603215694, + "queued": 0.210482, + "clean_up": 0.003878022078424692, + "file_setup": 0.02870348491705954, + "save_results": 0.0017148179467767477 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "55e7e0f4-b8bc-45ef-9f51-e7c2a16802c0", + "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.228Z", + "date_created": "2024-03-02T22:19:22.175Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.470183S", - "compute_time_sec": 0.470183, + "compute_time": "P0DT00H00M00.109350S", + "compute_time_sec": 0.10935, "compute_times": { - "prove": 0.4347335551865399, - "total": 0.47685516392812133, - "queued": 26.623268, - "clean_up": 0.017949641915038228, - "file_setup": 0.021318417973816395, - "save_results": 0.0024754919577389956 + "prove": 0.07757606508675963, + "total": 0.11466619104612619, + "queued": 0.256591, + "clean_up": 0.010891324956901371, + "file_setup": 0.024280331912450492, + "save_results": 0.0015671229921281338 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "979451ad-c6fe-4dbd-b519-73a1b5abb404", + "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.128Z", + "date_created": "2024-03-02T22:19:20.592Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.523158S", - "compute_time_sec": 0.523158, + "compute_time": "P0DT00H00M00.097386S", + "compute_time_sec": 0.097386, "compute_times": { - "prove": 0.49819166213274, - "total": 0.5295807488728315, - "queued": 25.466882, - "clean_up": 0.007454287027940154, - "file_setup": 0.02171924593858421, - "save_results": 0.0017853768076747656 + "prove": 0.07514205400366336, + "total": 0.10310335899703205, + "queued": 0.159439, + "clean_up": 0.0037166819674894214, + "file_setup": 0.022262264043092728, + "save_results": 0.0016199250239878893 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "fe73c8b4-dd2f-4af0-99c6-b0087fd6720f", + "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.091Z", + "date_created": "2024-03-02T22:19:18.948Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.286944S", - "compute_time_sec": 0.286944, + "compute_time": "P0DT00H00M00.122932S", + "compute_time_sec": 0.122932, "compute_times": { - "prove": 0.2631158559815958, - "total": 0.2923560020281002, - "queued": 28.66412, - "clean_up": 0.008188333013094962, - "file_setup": 0.019067034008912742, - "save_results": 0.0016677940730005503 + "prove": 0.08516530389897525, + "total": 0.13015575311146677, + "queued": 0.233137, + "clean_up": 0.014129698975011706, + "file_setup": 0.0285584160592407, + "save_results": 0.0018891170620918274 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d472716d-ceee-4cba-99aa-e6f52fa7aed2", + "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:34.082Z", + "date_created": "2024-03-02T22:19:17.333Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.458130S", - "compute_time_sec": 0.45813, + "compute_time": "P0DT00H00M00.131533S", + "compute_time_sec": 0.131533, "compute_times": { - "prove": 0.42354415403679013, - "total": 0.4653686359524727, - "queued": 24.323498, - "clean_up": 0.014879923779517412, - "file_setup": 0.024928942089900374, - "save_results": 0.0015406690072268248 + "prove": 0.07857439492363483, + "total": 0.13676583603955805, + "queued": 0.227587, + "clean_up": 0.010069372947327793, + "file_setup": 0.04610578005667776, + "save_results": 0.001678532105870545 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "784e59ed-df94-4836-88cd-9b2c08b7a72e", + "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.998Z", + "date_created": "2024-03-02T22:19:15.726Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128011S", - "compute_time_sec": 0.128011, + "compute_time": "P0DT00H00M00.109690S", + "compute_time_sec": 0.10969, "compute_times": { - "prove": 0.09206298098433763, - "total": 0.13274087803438306, - "queued": 28.63419, - "clean_up": 0.021465381956659257, - "file_setup": 0.017213757033459842, - "save_results": 0.0016593720065429807 + "prove": 0.07168154697865248, + "total": 0.11618917598389089, + "queued": 0.177243, + "clean_up": 0.0042525139870122075, + "file_setup": 0.038573550991714, + "save_results": 0.0013375390553846955 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d9044069-c637-4882-8175-411a96ef391d", + "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.976Z", + "date_created": "2024-03-02T22:19:14.150Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125847S", - "compute_time_sec": 0.125847, + "compute_time": "P0DT00H00M00.138403S", + "compute_time_sec": 0.138403, "compute_times": { - "prove": 0.10572471795603633, - "total": 0.1338271670974791, - "queued": 23.56859, - "clean_up": 0.003848722204566002, - "file_setup": 0.02194214309565723, - "save_results": 0.0019167859572917223 + "prove": 0.08462183806113899, + "total": 0.14498792798258364, + "queued": 0.218187, + "clean_up": 0.005619590170681477, + "file_setup": 0.052473017014563084, + "save_results": 0.0018791758920997381 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b7117fe1-13e1-434f-ba48-e1f245e2238c", + "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.945Z", + "date_created": "2024-03-02T22:19:12.520Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122820S", - "compute_time_sec": 0.12282, + "compute_time": "P0DT00H00M00.179439S", + "compute_time_sec": 0.179439, "compute_times": { - "prove": 0.10552407801151276, - "total": 0.12850606301799417, - "queued": 23.571138, - "clean_up": 0.0035990109900012612, - "file_setup": 0.017446335055865347, - "save_results": 0.0015994029818102717 + "prove": 0.12221004103776067, + "total": 0.18509791197720915, + "queued": 0.218919, + "clean_up": 0.010833634994924068, + "file_setup": 0.04949615302029997, + "save_results": 0.002165056997910142 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "990e43a6-d04a-4618-9d87-18210c3ac1d9", + "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.870Z", + "date_created": "2024-03-02T22:19:10.959Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105198S", - "compute_time_sec": 0.105198, + "compute_time": "P0DT00H00M00.133456S", + "compute_time_sec": 0.133456, "compute_times": { - "prove": 0.07883684895932674, - "total": 0.1122406111098826, - "queued": 22.88221, - "clean_up": 0.003977251006290317, - "file_setup": 0.0269186079967767, - "save_results": 0.0020488761365413666 + "prove": 0.07268570107407868, + "total": 0.1394008860224858, + "queued": 0.151876, + "clean_up": 0.010548806982114911, + "file_setup": 0.05424705799669027, + "save_results": 0.0015943750040605664 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0ec0da86-8299-4244-aaaf-be162e233549", + "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.855Z", + "date_created": "2024-03-02T22:19:09.368Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.375989S", - "compute_time_sec": 0.375989, + "compute_time": "P0DT00H00M00.104582S", + "compute_time_sec": 0.104582, "compute_times": { - "prove": 0.35955213801935315, - "total": 0.38039617508184165, - "queued": 22.616587, - "clean_up": 0.003521032049320638, - "file_setup": 0.015475824940949678, - "save_results": 0.0015010939678177238 + "prove": 0.0761667680926621, + "total": 0.11041608499363065, + "queued": 0.232885, + "clean_up": 0.004713465925306082, + "file_setup": 0.027426036074757576, + "save_results": 0.0016772879753261805 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "59e6ea8d-6fe1-4768-b8ef-a7f661d8ed45", + "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.839Z", + "date_created": "2024-03-02T22:19:07.782Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112413S", - "compute_time_sec": 0.112413, + "compute_time": "P0DT00H00M00.103484S", + "compute_time_sec": 0.103484, "compute_times": { - "prove": 0.09385650302283466, - "total": 0.11931004805956036, - "queued": 23.85771, - "clean_up": 0.0034119969932362437, - "file_setup": 0.020241676014848053, - "save_results": 0.0014685370260849595 + "prove": 0.07775443291757256, + "total": 0.1097704729763791, + "queued": 0.165293, + "clean_up": 0.003079058020375669, + "file_setup": 0.027136432006955147, + "save_results": 0.0014415140030905604 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6141fefd-90f8-481d-a487-ec9e73ce0d57", + "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.714Z", + "date_created": "2024-03-02T22:19:06.214Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.303833S", - "compute_time_sec": 0.303833, + "compute_time": "P0DT00H00M00.110249S", + "compute_time_sec": 0.110249, "compute_times": { - "prove": 0.27441725484095514, - "total": 0.43832587893120944, - "queued": 22.039487, - "clean_up": 0.013608262874186039, - "file_setup": 0.02093623112887144, - "save_results": 0.0018121080938726664 + "prove": 0.07331179198808968, + "total": 0.11586580192670226, + "queued": 0.160156, + "clean_up": 0.0036032439675182104, + "file_setup": 0.037042855052277446, + "save_results": 0.0015652959700673819 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1957e39b-3435-4013-be00-ee38593d1352", + "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.706Z", + "date_created": "2024-03-02T22:19:04.623Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.354849S", - "compute_time_sec": 0.354849, + "compute_time": "P0DT00H00M00.113074S", + "compute_time_sec": 0.113074, "compute_times": { - "prove": 0.306272565969266, - "total": 0.36076175002381206, - "queued": 21.742685, - "clean_up": 0.031400882988236845, - "file_setup": 0.021054222946986556, - "save_results": 0.001673974096775055 + "prove": 0.07531885500065982, + "total": 0.11918418202549219, + "queued": 0.21149, + "clean_up": 0.004545237170532346, + "file_setup": 0.03716830490157008, + "save_results": 0.001786466920748353 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b01939af-f5b7-4ac1-be58-a5f3d8dbbdb3", + "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.691Z", + "date_created": "2024-03-02T22:19:03.050Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.392543S", - "compute_time_sec": 0.392543, + "compute_time": "P0DT00H00M00.118456S", + "compute_time_sec": 0.118456, "compute_times": { - "prove": 0.32281060807872564, - "total": 0.39849924307782203, - "queued": 21.744261, - "clean_up": 0.049071428016759455, - "file_setup": 0.024452029960229993, - "save_results": 0.0017178819980472326 + "prove": 0.08025075704790652, + "total": 0.12484451208729297, + "queued": 0.171108, + "clean_up": 0.003666321048513055, + "file_setup": 0.03877517697401345, + "save_results": 0.0017490109894424677 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f95d5428-4265-4e23-b4f0-d4dbdad6cfed", + "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.589Z", + "date_created": "2024-03-02T22:19:01.474Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.171713S", - "compute_time_sec": 0.171713, + "compute_time": "P0DT00H00M00.097245S", + "compute_time_sec": 0.097245, "compute_times": { - "prove": 0.0936721230391413, - "total": 0.17827622988261282, - "queued": 21.124808, - "clean_up": 0.03897871193476021, - "file_setup": 0.038734283996745944, - "save_results": 0.006515543907880783 + "prove": 0.07467410003300756, + "total": 0.1032019880367443, + "queued": 1.000871, + "clean_up": 0.003617644077166915, + "file_setup": 0.023070842027664185, + "save_results": 0.0014518279349431396 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3ec96129-0ed2-41b1-8be6-6c158d627d10", + "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.567Z", + "date_created": "2024-03-02T22:18:59.935Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.380783S", - "compute_time_sec": 0.380783, + "compute_time": "P0DT00H00M00.124478S", + "compute_time_sec": 0.124478, "compute_times": { - "prove": 0.34301244595553726, - "total": 0.38707092101685703, - "queued": 20.832537, - "clean_up": 0.0032510189339518547, - "file_setup": 0.038782318006269634, - "save_results": 0.0015539260348305106 + "prove": 0.07985819177702069, + "total": 0.131462125107646, + "queued": 0.189545, + "clean_up": 0.00692735007032752, + "file_setup": 0.04234403814189136, + "save_results": 0.001923317089676857 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c3eb1cd1-da2d-4d7d-9b1f-80f6fb8b8deb", + "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.549Z", + "date_created": "2024-03-02T22:18:58.407Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.471394S", - "compute_time_sec": 0.471394, + "compute_time": "P0DT00H00M00.119553S", + "compute_time_sec": 0.119553, "compute_times": { - "prove": 0.44031512807123363, - "total": 0.4763076149392873, - "queued": 20.750492, - "clean_up": 0.004170806030742824, - "file_setup": 0.029659383930265903, - "save_results": 0.0016929719131439924 + "prove": 0.08296615700237453, + "total": 0.12573627301026136, + "queued": 0.226083, + "clean_up": 0.008650688105262816, + "file_setup": 0.03199622000101954, + "save_results": 0.0017465719720348716 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6b8a7223-8496-49b9-af48-43c2cb379a9f", + "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.474Z", + "date_created": "2024-03-02T22:18:56.860Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124495S", - "compute_time_sec": 0.124495, + "compute_time": "P0DT00H00M00.103716S", + "compute_time_sec": 0.103716, "compute_times": { - "prove": 0.10073043289594352, - "total": 0.13022281299345195, - "queued": 20.298391, - "clean_up": 0.003909061895683408, - "file_setup": 0.02332677412778139, - "save_results": 0.0017897870857268572 + "prove": 0.06979906605556607, + "total": 0.10923597402870655, + "queued": 0.139177, + "clean_up": 0.0036087740445509553, + "file_setup": 0.03399856202304363, + "save_results": 0.0014903269475325942 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d6623c40-864b-4c54-88a5-3cc94fe5afa1", + "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.431Z", + "date_created": "2024-03-02T22:18:55.316Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.223264S", - "compute_time_sec": 0.223264, + "compute_time": "P0DT00H00M00.164072S", + "compute_time_sec": 0.164072, "compute_times": { - "prove": 0.20454663503915071, - "total": 0.22819734294898808, - "queued": 19.992071, - "clean_up": 0.005460212007164955, - "file_setup": 0.016508184024132788, - "save_results": 0.0012988959206268191 + "prove": 0.12517174892127514, + "total": 0.17043978604488075, + "queued": 0.207351, + "clean_up": 0.003746662987396121, + "file_setup": 0.039150891127064824, + "save_results": 0.0019460059702396393 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0cf5bc3c-90e0-4e5a-b303-91d53edff288", + "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.409Z", + "date_created": "2024-03-02T22:18:53.766Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.236397S", - "compute_time_sec": 0.236397, + "compute_time": "P0DT00H00M00.116515S", + "compute_time_sec": 0.116515, "compute_times": { - "prove": 0.2126400190172717, - "total": 0.24228776898235083, - "queued": 20.01237, - "clean_up": 0.003821471007540822, - "file_setup": 0.023733722046017647, - "save_results": 0.0016510839341208339 - }, - "file_size": 532, - "proof_input": null, - "proof": null, + "prove": 0.07856976403854787, + "total": 0.12284065398853272, + "queued": 0.204898, + "clean_up": 0.004192995955236256, + "file_setup": 0.03768792003393173, + "save_results": 0.0020342780044302344 + }, + "file_size": 532, + "proof_input": null, + "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "885f61e2-cc29-4de7-aeca-a8fe8146481b", + "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.344Z", + "date_created": "2024-03-02T22:18:52.213Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.259418S", - "compute_time_sec": 0.259418, + "compute_time": "P0DT00H00M00.109618S", + "compute_time_sec": 0.109618, "compute_times": { - "prove": 0.23506561596877873, - "total": 0.26543588005006313, - "queued": 19.361679, - "clean_up": 0.007562417071312666, - "file_setup": 0.020428013987839222, - "save_results": 0.001966766081750393 + "prove": 0.07834382401779294, + "total": 0.11546277697198093, + "queued": 0.228319, + "clean_up": 0.0037355918902903795, + "file_setup": 0.031366192968562245, + "save_results": 0.0016647940501570702 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1066603b-ec9e-4d6d-bf67-fd895b548b2d", + "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.290Z", + "date_created": "2024-03-02T22:18:50.640Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.515161S", - "compute_time_sec": 0.515161, + "compute_time": "P0DT00H00M00.102363S", + "compute_time_sec": 0.102363, "compute_times": { - "prove": 0.49523238092660904, - "total": 0.5212377090938389, - "queued": 18.933764, - "clean_up": 0.004512671031989157, - "file_setup": 0.01928175101056695, - "save_results": 0.001811992027796805 + "prove": 0.07708223187364638, + "total": 0.11076221195980906, + "queued": 0.235274, + "clean_up": 0.004102661041542888, + "file_setup": 0.02742593502625823, + "save_results": 0.0017483970150351524 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b0112339-a8e6-4825-bab1-0611501eacc5", + "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.256Z", + "date_created": "2024-03-02T22:18:49.058Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157983S", - "compute_time_sec": 0.157983, + "compute_time": "P0DT00H00M00.126055S", + "compute_time_sec": 0.126055, "compute_times": { - "prove": 0.13088228809647262, - "total": 0.16489004692994058, - "queued": 18.546469, - "clean_up": 0.009672191925346851, - "file_setup": 0.02190026408061385, - "save_results": 0.001803946914151311 + "prove": 0.08462739107199013, + "total": 0.13239038200117648, + "queued": 0.208639, + "clean_up": 0.017553703975863755, + "file_setup": 0.028355297981761396, + "save_results": 0.0014984130393713713 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "66cac6d9-82c1-4a47-8400-7302c681ba8f", + "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.239Z", + "date_created": "2024-03-02T22:18:47.479Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.121145S", - "compute_time_sec": 0.121145, + "compute_time": "P0DT00H00M00.114603S", + "compute_time_sec": 0.114603, "compute_times": { - "prove": 0.08225085295271128, - "total": 0.1268888000631705, - "queued": 18.194739, - "clean_up": 0.014004492084495723, - "file_setup": 0.028718804009258747, - "save_results": 0.0015831160126253963 + "prove": 0.07099237700458616, + "total": 0.1205103590618819, + "queued": 0.177097, + "clean_up": 0.00736055604647845, + "file_setup": 0.04027851507999003, + "save_results": 0.0015338469529524446 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1c378e15-d32b-4576-8b5d-fb13b1fe4126", + "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.167Z", + "date_created": "2024-03-02T22:18:45.920Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.378241S", - "compute_time_sec": 0.378241, + "compute_time": "P0DT00H00M00.105545S", + "compute_time_sec": 0.105545, "compute_times": { - "prove": 0.32446074998006225, - "total": 0.46455645211972296, - "queued": 17.564428, - "clean_up": 0.025895975064486265, - "file_setup": 0.0355614370200783, - "save_results": 0.0018245270475745201 + "prove": 0.07798794494010508, + "total": 0.11226446111686528, + "queued": 0.210392, + "clean_up": 0.003587795188650489, + "file_setup": 0.02863957593217492, + "save_results": 0.0016675579827278852 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "40642500-b9f1-4051-857b-c52f8915e624", + "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.137Z", + "date_created": "2024-03-02T22:18:44.421Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.527332S", - "compute_time_sec": 0.527332, + "compute_time": "P0DT00H00M00.168234S", + "compute_time_sec": 0.168234, "compute_times": { - "prove": 0.46785091701895, - "total": 0.5323068069992587, - "queued": 17.114249, - "clean_up": 0.04379052110016346, - "file_setup": 0.018304905970580876, - "save_results": 0.0018958799773827195 + "prove": 0.10509133199229836, + "total": 0.1757285799831152, + "queued": 0.219364, + "clean_up": 0.004795938031747937, + "file_setup": 0.06402788893319666, + "save_results": 0.0014585850294679403 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c6eac388-f8d2-4f35-8721-9add48d5cd11", + "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.101Z", + "date_created": "2024-03-02T22:18:42.838Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.157597S", - "compute_time_sec": 0.157597, + "compute_time": "P0DT00H00M00.138451S", + "compute_time_sec": 0.138451, "compute_times": { - "prove": 0.12255263701081276, - "total": 0.16386522795073688, - "queued": 19.497095, - "clean_up": 0.003113526967354119, - "file_setup": 0.03630416397936642, - "save_results": 0.0015326740685850382 + "prove": 0.08344166504684836, + "total": 0.14460852497722954, + "queued": 0.193296, + "clean_up": 0.02906027901917696, + "file_setup": 0.030170131009072065, + "save_results": 0.0015538459410890937 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7ee997f0-7c4a-4a88-a628-7567078c1341", + "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.057Z", + "date_created": "2024-03-02T22:18:41.260Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242588S", - "compute_time_sec": 0.242588, + "compute_time": "P0DT00H00M00.108498S", + "compute_time_sec": 0.108498, "compute_times": { - "prove": 0.20696109696291387, - "total": 0.24818814708851278, - "queued": 16.264806, - "clean_up": 0.003144470974802971, - "file_setup": 0.03611759003251791, - "save_results": 0.0016494940500706434 + "prove": 0.07821972295641899, + "total": 0.11512337112799287, + "queued": 0.207493, + "clean_up": 0.011428299127146602, + "file_setup": 0.023141066078096628, + "save_results": 0.0019629159942269325 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "915e2a14-be8f-49c0-8cae-30b050e41878", + "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:33.015Z", + "date_created": "2024-03-02T22:18:39.684Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.242412S", - "compute_time_sec": 0.242412, + "compute_time": "P0DT00H00M00.125239S", + "compute_time_sec": 0.125239, "compute_times": { - "prove": 0.16999451199080795, - "total": 0.24800510297063738, - "queued": 15.393279, - "clean_up": 0.05378705798648298, - "file_setup": 0.021581811015494168, - "save_results": 0.0023058250080794096 + "prove": 0.07802591007202864, + "total": 0.13191273796837777, + "queued": 0.208815, + "clean_up": 0.005445771967060864, + "file_setup": 0.04654695594217628, + "save_results": 0.0015280540101230145 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "27feb913-c05f-4e19-a14f-fe5484aadafd", + "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.971Z", + "date_created": "2024-03-02T22:18:38.137Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.973140S", - "compute_time_sec": 0.97314, + "compute_time": "P0DT00H00M00.113764S", + "compute_time_sec": 0.113764, "compute_times": { - "prove": 0.5375044860411435, - "total": 0.9786076380405575, - "queued": 14.685862, - "clean_up": 0.41053569701034576, - "file_setup": 0.02815453300718218, - "save_results": 0.0020460280356928706 + "prove": 0.07411053997930139, + "total": 0.11965196207165718, + "queued": 0.123697, + "clean_up": 0.021386098000220954, + "file_setup": 0.022322733071632683, + "save_results": 0.001491626026108861 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cc46a32d-33c5-4740-8446-a0cfe530e2f8", + "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.913Z", + "date_created": "2024-03-02T22:18:36.609Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.365020S", - "compute_time_sec": 0.36502, + "compute_time": "P0DT00H00M00.110500S", + "compute_time_sec": 0.1105, "compute_times": { - "prove": 0.3317899671383202, - "total": 0.37020347407087684, - "queued": 16.60799, - "clean_up": 0.003273986978456378, - "file_setup": 0.032879116013646126, - "save_results": 0.00186073686927557 + "prove": 0.07843833207152784, + "total": 0.1174131550360471, + "queued": 0.188117, + "clean_up": 0.013684443198144436, + "file_setup": 0.02307076589204371, + "save_results": 0.001790786860510707 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d5ff5f29-0e21-460d-9401-212dd33b3551", + "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.888Z", + "date_created": "2024-03-02T22:18:35.023Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.456895S", - "compute_time_sec": 0.456895, + "compute_time": "P0DT00H00M00.113878S", + "compute_time_sec": 0.113878, "compute_times": { - "prove": 0.423072372097522, - "total": 0.46337219700217247, - "queued": 13.632284, - "clean_up": 0.003993527963757515, - "file_setup": 0.03403562190942466, - "save_results": 0.0018623609794303775 + "prove": 0.08454172103665769, + "total": 0.11953117907978594, + "queued": 0.202486, + "clean_up": 0.004061337094753981, + "file_setup": 0.028714405023492873, + "save_results": 0.0018627499230206013 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9f315ade-46b0-421b-9045-94e034900fe9", + "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.837Z", + "date_created": "2024-03-02T22:18:33.480Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140068S", - "compute_time_sec": 0.140068, + "compute_time": "P0DT00H00M00.124901S", + "compute_time_sec": 0.124901, "compute_times": { - "prove": 0.1145919740665704, - "total": 0.14642110699787736, - "queued": 12.877362, - "clean_up": 0.0042882689740508795, - "file_setup": 0.025636608013883233, - "save_results": 0.0015542889013886452 + "prove": 0.07596357993315905, + "total": 0.13044002500828356, + "queued": 0.140458, + "clean_up": 0.005051521933637559, + "file_setup": 0.0476306100608781, + "save_results": 0.0014870570739731193 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c8b09563-88b8-41ae-8418-3c1e8563d72d", + "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.806Z", + "date_created": "2024-03-02T22:18:31.932Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.181831S", - "compute_time_sec": 0.181831, + "compute_time": "P0DT00H00M00.109334S", + "compute_time_sec": 0.109334, "compute_times": { - "prove": 0.14706613693851978, - "total": 0.20189034601207823, - "queued": 12.867749, - "clean_up": 0.0034584460081532598, - "file_setup": 0.03571781504433602, - "save_results": 0.0014523779973387718 + "prove": 0.0772264408878982, + "total": 0.11520785093307495, + "queued": 0.214539, + "clean_up": 0.014989732997491956, + "file_setup": 0.02082884218543768, + "save_results": 0.0017384679522365332 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2f9b6987-2a71-4b14-9800-892920b2ce0e", + "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.751Z", + "date_created": "2024-03-02T22:18:30.405Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.450066S", - "compute_time_sec": 0.450066, + "compute_time": "P0DT00H00M00.099198S", + "compute_time_sec": 0.099198, "compute_times": { - "prove": 0.4147049420280382, - "total": 0.45607288100291044, - "queued": 11.772521, - "clean_up": 0.007868458982557058, - "file_setup": 0.030776931904256344, - "save_results": 0.0023057740181684494 + "prove": 0.07795899198390543, + "total": 0.3439350420376286, + "queued": 0.44235, + "clean_up": 0.003542012069374323, + "file_setup": 0.02195370604749769, + "save_results": 0.00164421193767339 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac1aa070-e76d-4a12-8965-f3876ce18bb2", + "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.720Z", + "date_created": "2024-03-02T22:18:28.882Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.420386S", - "compute_time_sec": 0.420386, + "compute_time": "P0DT00H00M00.096462S", + "compute_time_sec": 0.096462, "compute_times": { - "prove": 0.3990589149761945, - "total": 0.4270030810730532, - "queued": 10.7278, - "clean_up": 0.005256709060631692, - "file_setup": 0.02061484009027481, - "save_results": 0.001710172975435853 + "prove": 0.0719371628947556, + "total": 0.10235371999442577, + "queued": 0.16149, + "clean_up": 0.0030283130472525954, + "file_setup": 0.0255846930667758, + "save_results": 0.001458707032725215 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a26e533f-a096-4c43-ab7a-2d069128a069", + "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.707Z", + "date_created": "2024-03-02T22:18:27.303Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.142094S", - "compute_time_sec": 0.142094, + "compute_time": "P0DT00H00M00.126276S", + "compute_time_sec": 0.126276, "compute_times": { - "prove": 0.09821043501142412, - "total": 0.14811538497451693, - "queued": 14.851825, - "clean_up": 0.005784207955002785, - "file_setup": 0.04186572507023811, - "save_results": 0.001917139976285398 + "prove": 0.08422461082227528, + "total": 0.13323151203803718, + "queued": 0.217879, + "clean_up": 0.01238051219843328, + "file_setup": 0.03462041402235627, + "save_results": 0.0016039679758250713 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e594502e-f8a6-4ea9-a35e-47bc37323bca", + "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.630Z", + "date_created": "2024-03-02T22:18:25.623Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.855499S", - "compute_time_sec": 0.855499, + "compute_time": "P0DT00H00M00.138368S", + "compute_time_sec": 0.138368, "compute_times": { - "prove": 0.8245165729895234, - "total": 0.8615315690403804, - "queued": 9.176532, - "clean_up": 0.014629843994043767, - "file_setup": 0.019743680022656918, - "save_results": 0.0022631760220974684 + "prove": 0.09363546408712864, + "total": 0.14376210200134665, + "queued": 0.257057, + "clean_up": 0.007791407988406718, + "file_setup": 0.03904824494384229, + "save_results": 0.0021443869918584824 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "9bfac4f2-41d2-4d82-befc-2cc1845dd7c4", + "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.588Z", + "date_created": "2024-03-02T22:18:24.063Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.490007S", - "compute_time_sec": 0.490007, + "compute_time": "P0DT00H00M00.098465S", + "compute_time_sec": 0.098465, "compute_times": { - "prove": 0.455899114953354, - "total": 0.49668906279839575, - "queued": 11.871105, - "clean_up": 0.0045558069832623005, - "file_setup": 0.03405331703834236, - "save_results": 0.0018026470206677914 + "prove": 0.07042361702769995, + "total": 0.10373939899727702, + "queued": 0.163439, + "clean_up": 0.003754721023142338, + "file_setup": 0.027845817035995424, + "save_results": 0.0013589690206572413 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "15f7d160-739e-41ba-ab05-c5976875ef65", + "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.542Z", + "date_created": "2024-03-02T22:18:22.482Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.008029S", - "compute_time_sec": 1.008029, + "compute_time": "P0DT00H00M00.140408S", + "compute_time_sec": 0.140408, "compute_times": { - "prove": 0.9685044119833037, - "total": 1.0136986010475084, - "queued": 7.558703, - "clean_up": 0.021701849065721035, - "file_setup": 0.020927226985804737, - "save_results": 0.002168047009035945 + "prove": 0.09134363988414407, + "total": 0.1467661359347403, + "queued": 0.234166, + "clean_up": 0.011396168963983655, + "file_setup": 0.04208241100423038, + "save_results": 0.001585459103807807 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7a9e13ed-e9ac-4313-a080-911fc06c660e", + "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.490Z", + "date_created": "2024-03-02T22:18:20.927Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.576096S", - "compute_time_sec": 0.576096, + "compute_time": "P0DT00H00M00.141387S", + "compute_time_sec": 0.141387, "compute_times": { - "prove": 0.5422158139990643, - "total": 0.5823603679891676, - "queued": 6.353891, - "clean_up": 0.0037581800715997815, - "file_setup": 0.03395645902492106, - "save_results": 0.002097297925502062 + "prove": 0.09125522000249475, + "total": 0.14774739800486714, + "queued": 0.197743, + "clean_up": 0.012068960932083428, + "file_setup": 0.04265728604514152, + "save_results": 0.0014312650309875607 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "db110c1e-37b4-4462-96be-3e06c1672e6d", + "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.478Z", + "date_created": "2024-03-02T22:18:19.297Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.209934S", - "compute_time_sec": 0.209934, + "compute_time": "P0DT00H00M00.102332S", + "compute_time_sec": 0.102332, "compute_times": { - "prove": 0.15358152601402253, - "total": 0.21605274605099112, - "queued": 10.113062, - "clean_up": 0.023381736944429576, - "file_setup": 0.037115994025953114, - "save_results": 0.001614085049368441 + "prove": 0.07266321196220815, + "total": 0.10838873707689345, + "queued": 0.146978, + "clean_up": 0.008384920074604452, + "file_setup": 0.02525644702836871, + "save_results": 0.0017374729504808784 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "417e9e0a-47ad-47fc-bd14-53c554023295", + "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.415Z", + "date_created": "2024-03-02T22:18:17.717Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.591839S", - "compute_time_sec": 0.591839, + "compute_time": "P0DT00H00M00.111570S", + "compute_time_sec": 0.11157, "compute_times": { - "prove": 0.5229394290363416, - "total": 0.5979725319193676, - "queued": 5.154185, - "clean_up": 0.02260146988555789, - "file_setup": 0.05059771193191409, - "save_results": 0.0014608950586989522 + "prove": 0.07737825997173786, + "total": 0.11877415492199361, + "queued": 1.050496, + "clean_up": 0.003718754043802619, + "file_setup": 0.03554413700476289, + "save_results": 0.001658557914197445 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6c858466-06ef-4a6e-b931-6bc5a1f69ec6", + "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.366Z", + "date_created": "2024-03-02T22:18:16.204Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116234S", - "compute_time_sec": 0.116234, + "compute_time": "P0DT00H00M00.137641S", + "compute_time_sec": 0.137641, "compute_times": { - "prove": 0.07700311101507396, - "total": 0.12174052593763918, - "queued": 4.424714, - "clean_up": 0.006362012936733663, - "file_setup": 0.03617248602677137, - "save_results": 0.0017600810388103127 + "prove": 0.0947769220219925, + "total": 0.14389025000855327, + "queued": 0.224558, + "clean_up": 0.012663225992582738, + "file_setup": 0.03437299397774041, + "save_results": 0.0016881220508366823 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6565f0ba-fc49-4065-9d48-a2b546834ccf", + "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.357Z", + "date_created": "2024-03-02T22:18:14.654Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099418S", - "compute_time_sec": 0.099418, + "compute_time": "P0DT00H00M00.130554S", + "compute_time_sec": 0.130554, "compute_times": { - "prove": 0.07262928795535117, - "total": 0.10508589306846261, - "queued": 3.682512, - "clean_up": 0.003569742082618177, - "file_setup": 0.027104002074338496, - "save_results": 0.0014839039649814367 + "prove": 0.07754861598368734, + "total": 0.1364057119935751, + "queued": 0.181242, + "clean_up": 0.01912771293427795, + "file_setup": 0.03766816493589431, + "save_results": 0.0017138230614364147 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eee813e7-a771-4f6e-af0a-471135a5a6a2", + "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.309Z", + "date_created": "2024-03-02T22:18:13.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138870S", - "compute_time_sec": 0.13887, + "compute_time": "P0DT00H00M00.105571S", + "compute_time_sec": 0.105571, "compute_times": { - "prove": 0.0766439950093627, - "total": 0.14458074199501425, - "queued": 2.903833, - "clean_up": 0.02824126894120127, - "file_setup": 0.03780686797108501, - "save_results": 0.0015501140151172876 + "prove": 0.07499144691973925, + "total": 0.11162168602459133, + "queued": 0.211993, + "clean_up": 0.004386739106848836, + "file_setup": 0.030089835869148374, + "save_results": 0.0017889870796352625 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ed6c1c50-5b54-4f7c-9617-5a203467d8f8", + "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.243Z", + "date_created": "2024-03-02T22:18:11.558Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.132945S", - "compute_time_sec": 0.132945, + "compute_time": "P0DT00H00M00.104533S", + "compute_time_sec": 0.104533, "compute_times": { - "prove": 0.10661404114216566, - "total": 0.14006488304585218, - "queued": 7.128484, - "clean_up": 0.005756359081715345, - "file_setup": 0.0256589378695935, - "save_results": 0.0016340878792107105 + "prove": 0.07792208204045892, + "total": 0.11210504802875221, + "queued": 0.217616, + "clean_up": 0.007965726079419255, + "file_setup": 0.024172692908905447, + "save_results": 0.0016238619573414326 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3c2de31f-b8bb-4245-8071-0aafaf601fc1", + "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.216Z", + "date_created": "2024-03-02T22:18:10.032Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097658S", - "compute_time_sec": 0.097658, + "compute_time": "P0DT00H00M00.120359S", + "compute_time_sec": 0.120359, "compute_times": { - "prove": 0.07415288093034178, - "total": 0.10346396896056831, - "queued": 2.235442, - "clean_up": 0.003746030037291348, - "file_setup": 0.023523699957877398, - "save_results": 0.001744512002915144 + "prove": 0.07663809997029603, + "total": 0.12461252498906106, + "queued": 0.140378, + "clean_up": 0.02126628893893212, + "file_setup": 0.02467076701577753, + "save_results": 0.0017215840052813292 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ffb50a1c-350e-43dd-b60a-6c8483c0df29", + "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.197Z", + "date_created": "2024-03-02T22:18:08.462Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126620S", - "compute_time_sec": 0.12662, + "compute_time": "P0DT00H00M00.111685S", + "compute_time_sec": 0.111685, "compute_times": { - "prove": 0.08383059408515692, - "total": 0.13342511001974344, - "queued": 2.054465, - "clean_up": 0.017144297948107123, - "file_setup": 0.030395573005080223, - "save_results": 0.001586398109793663 + "prove": 0.08040205901488662, + "total": 0.11877126502804458, + "queued": 0.199786, + "clean_up": 0.0037285531871020794, + "file_setup": 0.0324579190928489, + "save_results": 0.0017784868832677603 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "45bd7bee-056f-459d-b245-c107919bc6d9", + "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.091Z", + "date_created": "2024-03-02T22:18:06.935Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135631S", - "compute_time_sec": 0.135631, + "compute_time": "P0DT00H00M00.104458S", + "compute_time_sec": 0.104458, "compute_times": { - "prove": 0.0823628450743854, - "total": 0.14176014298573136, - "queued": 1.539206, - "clean_up": 0.017501453985460103, - "file_setup": 0.03982250590343028, - "save_results": 0.0016014629509299994 + "prove": 0.07790789101272821, + "total": 0.11097153997980058, + "queued": 0.207337, + "clean_up": 0.007473509991541505, + "file_setup": 0.023695859010331333, + "save_results": 0.0015444039599969983 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f83eaec4-290c-4ff9-955b-ee8fd7204940", + "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.078Z", + "date_created": "2024-03-02T22:18:05.334Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138158S", - "compute_time_sec": 0.138158, + "compute_time": "P0DT00H00M00.174494S", + "compute_time_sec": 0.174494, "compute_times": { - "prove": 0.07979016215540469, - "total": 0.14502660813741386, - "queued": 0.943551, - "clean_up": 0.020246606087312102, - "file_setup": 0.04280776507221162, - "save_results": 0.0017201078590005636 + "prove": 0.13656924897804856, + "total": 0.1803733000997454, + "queued": 0.159095, + "clean_up": 0.00582932005636394, + "file_setup": 0.035943722003139555, + "save_results": 0.0016814139671623707 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "18aa6fd1-9b23-4ed4-a429-2232639bc8fd", + "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:32.058Z", + "date_created": "2024-03-02T22:18:03.737Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.570352S", - "compute_time_sec": 0.570352, + "compute_time": "P0DT00H00M00.094572S", + "compute_time_sec": 0.094572, "compute_times": { - "prove": 0.522533038049005, - "total": 0.5765696190064773, - "queued": 5.49816, - "clean_up": 0.004591017961502075, - "file_setup": 0.04690163198392838, - "save_results": 0.00215094699524343 + "prove": 0.07406232389621437, + "total": 0.10051628504879773, + "queued": 0.192337, + "clean_up": 0.00337238609790802, + "file_setup": 0.020903730997815728, + "save_results": 0.0018227370455861092 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f0f57796-89f6-4412-ad17-c17b17422e25", + "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.958Z", + "date_created": "2024-03-02T22:18:02.220Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141230S", - "compute_time_sec": 0.14123, + "compute_time": "P0DT00H00M00.111599S", + "compute_time_sec": 0.111599, "compute_times": { - "prove": 0.09054448700044304, - "total": 0.14681443898007274, - "queued": 0.857495, - "clean_up": 0.01092955400235951, - "file_setup": 0.04332920000888407, - "save_results": 0.0015883928863331676 + "prove": 0.08133828500285745, + "total": 0.11800080502871424, + "queued": 0.22429, + "clean_up": 0.004713690024800599, + "file_setup": 0.029832501895725727, + "save_results": 0.001725762034766376 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f5a4a622-f7a8-404c-b2da-5b21a8561c9f", + "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.946Z", + "date_created": "2024-03-02T22:18:00.620Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124351S", - "compute_time_sec": 0.124351, + "compute_time": "P0DT00H00M00.114347S", + "compute_time_sec": 0.114347, "compute_times": { - "prove": 0.07182355504482985, - "total": 0.12982704397290945, - "queued": 0.172555, - "clean_up": 0.020923485048115253, - "file_setup": 0.03491202800069004, - "save_results": 0.0018582409247756004 + "prove": 0.0749998859828338, + "total": 0.11923162802122533, + "queued": 0.187559, + "clean_up": 0.00959215103648603, + "file_setup": 0.032431255909614265, + "save_results": 0.0015854650409892201 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cb32a75d-35f2-4cd6-b701-7c0f6447e8d8", + "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.938Z", + "date_created": "2024-03-02T22:17:59.069Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.148920S", - "compute_time_sec": 0.14892, + "compute_time": "P0DT00H00M00.100689S", + "compute_time_sec": 0.100689, "compute_times": { - "prove": 0.07293843105435371, - "total": 0.15480406815186143, - "queued": 0.196521, - "clean_up": 0.040053355041891336, - "file_setup": 0.03987180581316352, - "save_results": 0.0016056180465966463 + "prove": 0.07633324712514877, + "total": 0.10863703698851168, + "queued": 0.172422, + "clean_up": 0.0039177220314741135, + "file_setup": 0.026381932897493243, + "save_results": 0.0016446078661829233 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6048ea4d-0ac7-4ddd-8625-72cc6733b20b", + "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:31.776Z", + "date_created": "2024-03-02T22:17:57.502Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106213S", - "compute_time_sec": 0.106213, + "compute_time": "P0DT00H00M00.141413S", + "compute_time_sec": 0.141413, "compute_times": { - "prove": 0.08078976103570312, - "total": 0.11167675291653723, - "queued": 0.231229, - "clean_up": 0.005760588916018605, - "file_setup": 0.023330271942541003, - "save_results": 0.0013793050311505795 + "prove": 0.07754256599582732, + "total": 0.1476239999756217, + "queued": 0.170377, + "clean_up": 0.01235142897348851, + "file_setup": 0.05578526598401368, + "save_results": 0.0016236520605161786 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b47f4538-6eec-4541-8462-a3026d067f07", + "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:30.141Z", + "date_created": "2024-03-02T22:17:55.884Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111507S", - "compute_time_sec": 0.111507, + "compute_time": "P0DT00H00M00.110891S", + "compute_time_sec": 0.110891, "compute_times": { - "prove": 0.075576186995022, - "total": 0.11713997193146497, - "queued": 0.16129, - "clean_up": 0.0037848310312256217, - "file_setup": 0.035947992000728846, - "save_results": 0.0014955269871279597 + "prove": 0.07763317495118827, + "total": 0.11661336896941066, + "queued": 0.143468, + "clean_up": 0.0035630339989438653, + "file_setup": 0.0330983359599486, + "save_results": 0.0019896290032193065 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5026dd06-f06f-48da-9d2e-80f137936c78", + "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:28.622Z", + "date_created": "2024-03-02T22:17:54.264Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110477S", - "compute_time_sec": 0.110477, + "compute_time": "P0DT00H00M00.099387S", + "compute_time_sec": 0.099387, "compute_times": { - "prove": 0.07629627687856555, - "total": 0.11736977496184409, - "queued": 0.188204, - "clean_up": 0.004256210057064891, - "file_setup": 0.034773221937939525, - "save_results": 0.0016197890508919954 - }, - "file_size": 532, - "proof_input": null, - "proof": null, + "prove": 0.07505850703455508, + "total": 0.10617876495234668, + "queued": 0.194099, + "clean_up": 0.0034724250435829163, + "file_setup": 0.025419748853892088, + "save_results": 0.001774586969986558 + }, + "file_size": 532, + "proof_input": null, + "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "418744a7-3df4-4194-a25c-70bcb51cd0c3", + "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:27.059Z", + "date_created": "2024-03-02T22:17:52.472Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117834S", - "compute_time_sec": 0.117834, + "compute_time": "P0DT00H00M00.127179S", + "compute_time_sec": 0.127179, "compute_times": { - "prove": 0.07615005096886307, - "total": 0.12300548201892525, - "queued": 0.205188, - "clean_up": 0.013062510988675058, - "file_setup": 0.03202356898691505, - "save_results": 0.001405435032211244 + "prove": 0.08727552101481706, + "total": 0.13350528001319617, + "queued": 0.199888, + "clean_up": 0.006217173999175429, + "file_setup": 0.038007476017810404, + "save_results": 0.0016796219861134887 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a74e80df-36c2-4e80-b1c9-db52cbe0efeb", + "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:25.393Z", + "date_created": "2024-03-02T22:17:50.941Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133236S", - "compute_time_sec": 0.133236, + "compute_time": "P0DT00H00M00.122591S", + "compute_time_sec": 0.122591, "compute_times": { - "prove": 0.08939769200515002, - "total": 0.13879455591086298, - "queued": 0.161569, - "clean_up": 0.004053406999446452, - "file_setup": 0.04343735601287335, - "save_results": 0.0015739259542897344 + "prove": 0.08476738398894668, + "total": 0.1283225070219487, + "queued": 0.166336, + "clean_up": 0.004483919939957559, + "file_setup": 0.03699059609789401, + "save_results": 0.0017628020141273737 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ac68289c-6440-4b62-9159-0991e3b8255f", + "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:23.768Z", + "date_created": "2024-03-02T22:17:49.312Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106542S", - "compute_time_sec": 0.106542, + "compute_time": "P0DT00H00M00.141097S", + "compute_time_sec": 0.141097, "compute_times": { - "prove": 0.07830432313494384, - "total": 0.11298795603215694, - "queued": 0.210482, - "clean_up": 0.003878022078424692, - "file_setup": 0.02870348491705954, - "save_results": 0.0017148179467767477 + "prove": 0.0733918990008533, + "total": 0.14723626291379333, + "queued": 0.218888, + "clean_up": 0.023661232087761164, + "file_setup": 0.04160579387098551, + "save_results": 0.008111441973596811 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1eaf7bc0-6054-4466-a0b0-19d8ca548f85", + "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:22.175Z", + "date_created": "2024-03-02T22:17:47.661Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109350S", - "compute_time_sec": 0.10935, + "compute_time": "P0DT00H00M00.105830S", + "compute_time_sec": 0.10583, "compute_times": { - "prove": 0.07757606508675963, - "total": 0.11466619104612619, - "queued": 0.256591, - "clean_up": 0.010891324956901371, - "file_setup": 0.024280331912450492, - "save_results": 0.0015671229921281338 + "prove": 0.07938949600793421, + "total": 0.11207641800865531, + "queued": 0.206942, + "clean_up": 0.00690544699318707, + "file_setup": 0.02367080794647336, + "save_results": 0.001770041068084538 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8a05b6d4-1d92-4d25-9a2f-e4f5f5b6f3b7", + "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:20.592Z", + "date_created": "2024-03-02T22:17:46.099Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097386S", - "compute_time_sec": 0.097386, + "compute_time": "P0DT00H00M00.164153S", + "compute_time_sec": 0.164153, "compute_times": { - "prove": 0.07514205400366336, - "total": 0.10310335899703205, - "queued": 0.159439, - "clean_up": 0.0037166819674894214, - "file_setup": 0.022262264043092728, - "save_results": 0.0016199250239878893 + "prove": 0.10050884890370071, + "total": 0.16989507200196385, + "queued": 0.137523, + "clean_up": 0.0296879590023309, + "file_setup": 0.033167905057780445, + "save_results": 0.006188624072819948 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "27ffbe09-1197-46a3-9160-9cb5660e28aa", + "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:18.948Z", + "date_created": "2024-03-02T22:17:44.552Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122932S", - "compute_time_sec": 0.122932, + "compute_time": "P0DT00H00M00.129635S", + "compute_time_sec": 0.129635, "compute_times": { - "prove": 0.08516530389897525, - "total": 0.13015575311146677, - "queued": 0.233137, - "clean_up": 0.014129698975011706, - "file_setup": 0.0285584160592407, - "save_results": 0.0018891170620918274 + "prove": 0.07830019295215607, + "total": 0.13494652090594172, + "queued": 0.221517, + "clean_up": 0.018889005994424224, + "file_setup": 0.035788336070254445, + "save_results": 0.001614188076928258 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "256c1ddb-e724-444d-9ff2-c6188ce88f2b", + "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:17.333Z", + "date_created": "2024-03-02T22:17:42.989Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.131533S", - "compute_time_sec": 0.131533, + "compute_time": "P0DT00H00M00.109912S", + "compute_time_sec": 0.109912, "compute_times": { - "prove": 0.07857439492363483, - "total": 0.13676583603955805, - "queued": 0.227587, - "clean_up": 0.010069372947327793, - "file_setup": 0.04610578005667776, - "save_results": 0.001678532105870545 + "prove": 0.08981344511266798, + "total": 0.11624708399176598, + "queued": 0.223804, + "clean_up": 0.003414363949559629, + "file_setup": 0.021206943900324404, + "save_results": 0.0014059050008654594 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8d00a51e-a48d-40d4-b326-8bcd47c96433", + "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:15.726Z", + "date_created": "2024-03-02T22:17:41.451Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109690S", - "compute_time_sec": 0.10969, + "compute_time": "P0DT00H00M00.115519S", + "compute_time_sec": 0.115519, "compute_times": { - "prove": 0.07168154697865248, - "total": 0.11618917598389089, - "queued": 0.177243, - "clean_up": 0.0042525139870122075, - "file_setup": 0.038573550991714, - "save_results": 0.0013375390553846955 + "prove": 0.07633757498115301, + "total": 0.1204413790255785, + "queued": 0.742162, + "clean_up": 0.016363205038942397, + "file_setup": 0.025892338017001748, + "save_results": 0.0014968069735914469 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e3233695-09fc-472e-99df-cf53236f6ab5", + "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:14.150Z", + "date_created": "2024-03-02T22:17:39.456Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138403S", - "compute_time_sec": 0.138403, + "compute_time": "P0DT00H00M00.108406S", + "compute_time_sec": 0.108406, "compute_times": { - "prove": 0.08462183806113899, - "total": 0.14498792798258364, - "queued": 0.218187, - "clean_up": 0.005619590170681477, - "file_setup": 0.052473017014563084, - "save_results": 0.0018791758920997381 + "prove": 0.0791304879821837, + "total": 0.11538788001053035, + "queued": 0.190948, + "clean_up": 0.003850993001833558, + "file_setup": 0.030011237133294344, + "save_results": 0.0017656770069152117 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d0c6f6aa-8cd6-4091-b13e-58db69687871", + "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:12.520Z", + "date_created": "2024-03-02T22:17:37.847Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.179439S", - "compute_time_sec": 0.179439, + "compute_time": "P0DT00H00M00.092359S", + "compute_time_sec": 0.092359, "compute_times": { - "prove": 0.12221004103776067, - "total": 0.18509791197720915, - "queued": 0.218919, - "clean_up": 0.010833634994924068, - "file_setup": 0.04949615302029997, - "save_results": 0.002165056997910142 + "prove": 0.07222839200403541, + "total": 0.09727117500733584, + "queued": 0.185071, + "clean_up": 0.003502683015540242, + "file_setup": 0.019683361053466797, + "save_results": 0.0015406029997393489 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5acb9861-67ec-4f18-9a38-057ee74c91ac", + "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:10.959Z", + "date_created": "2024-03-02T22:17:36.258Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.133456S", - "compute_time_sec": 0.133456, + "compute_time": "P0DT00H00M00.112020S", + "compute_time_sec": 0.11202, "compute_times": { - "prove": 0.07268570107407868, - "total": 0.1394008860224858, - "queued": 0.151876, - "clean_up": 0.010548806982114911, - "file_setup": 0.05424705799669027, - "save_results": 0.0015943750040605664 + "prove": 0.06998628401197493, + "total": 0.11816900398116559, + "queued": 0.159585, + "clean_up": 0.00885792204644531, + "file_setup": 0.037621396011672914, + "save_results": 0.0013648279709741473 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "52184581-a0c8-4ea1-b18f-c272d29dceb2", + "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:09.368Z", + "date_created": "2024-03-02T22:17:34.681Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104582S", - "compute_time_sec": 0.104582, + "compute_time": "P0DT00H00M00.161413S", + "compute_time_sec": 0.161413, "compute_times": { - "prove": 0.0761667680926621, - "total": 0.11041608499363065, - "queued": 0.232885, - "clean_up": 0.004713465925306082, - "file_setup": 0.027426036074757576, - "save_results": 0.0016772879753261805 + "prove": 0.12939074099995196, + "total": 0.16822218499146402, + "queued": 0.231644, + "clean_up": 0.0037453039549291134, + "file_setup": 0.03296162514016032, + "save_results": 0.0017324970103800297 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c1d50e56-f6f8-416a-930b-3db7e180a175", + "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:07.782Z", + "date_created": "2024-03-02T22:17:33.146Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103484S", - "compute_time_sec": 0.103484, + "compute_time": "P0DT00H00M00.104014S", + "compute_time_sec": 0.104014, "compute_times": { - "prove": 0.07775443291757256, - "total": 0.1097704729763791, - "queued": 0.165293, - "clean_up": 0.003079058020375669, - "file_setup": 0.027136432006955147, - "save_results": 0.0014415140030905604 + "prove": 0.06997583503834903, + "total": 0.11030748602934182, + "queued": 0.190603, + "clean_up": 0.013490295968949795, + "file_setup": 0.025196701986715198, + "save_results": 0.0012690169969573617 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "c19a2d56-2106-46f6-bb9c-d82a4249a885", + "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:06.214Z", + "date_created": "2024-03-02T22:17:31.611Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110249S", - "compute_time_sec": 0.110249, + "compute_time": "P0DT00H00M00.095778S", + "compute_time_sec": 0.095778, "compute_times": { - "prove": 0.07331179198808968, - "total": 0.11586580192670226, - "queued": 0.160156, - "clean_up": 0.0036032439675182104, - "file_setup": 0.037042855052277446, - "save_results": 0.0015652959700673819 + "prove": 0.07503506389912218, + "total": 0.10164016194175929, + "queued": 0.139381, + "clean_up": 0.0031234719790518284, + "file_setup": 0.021389488014392555, + "save_results": 0.001648124074563384 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a33832b2-b223-4bc7-b6a7-2c905e7007e4", + "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:04.623Z", + "date_created": "2024-03-02T22:17:30.068Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113074S", - "compute_time_sec": 0.113074, + "compute_time": "P0DT00H00M00.117298S", + "compute_time_sec": 0.117298, "compute_times": { - "prove": 0.07531885500065982, - "total": 0.11918418202549219, - "queued": 0.21149, - "clean_up": 0.004545237170532346, - "file_setup": 0.03716830490157008, - "save_results": 0.001786466920748353 + "prove": 0.08094484405592084, + "total": 0.1229423270560801, + "queued": 0.187289, + "clean_up": 0.0036458540707826614, + "file_setup": 0.03630347200669348, + "save_results": 0.0017006490379571915 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b5baa939-08dd-4f69-acf1-312c484043c5", + "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:03.050Z", + "date_created": "2024-03-02T22:17:28.546Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118456S", - "compute_time_sec": 0.118456, + "compute_time": "P0DT00H00M00.117620S", + "compute_time_sec": 0.11762, "compute_times": { - "prove": 0.08025075704790652, - "total": 0.12484451208729297, - "queued": 0.171108, - "clean_up": 0.003666321048513055, - "file_setup": 0.03877517697401345, - "save_results": 0.0017490109894424677 + "prove": 0.08068329095840454, + "total": 0.12468839401844889, + "queued": 0.209765, + "clean_up": 0.016898180008865893, + "file_setup": 0.024950645049102604, + "save_results": 0.001741672051139176 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "cb058415-7bce-4f05-9184-da5529a32ede", + "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:01.474Z", + "date_created": "2024-03-02T22:17:27.002Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097245S", - "compute_time_sec": 0.097245, + "compute_time": "P0DT00H00M00.104327S", + "compute_time_sec": 0.104327, "compute_times": { - "prove": 0.07467410003300756, - "total": 0.1032019880367443, - "queued": 1.000871, - "clean_up": 0.003617644077166915, - "file_setup": 0.023070842027664185, - "save_results": 0.0014518279349431396 + "prove": 0.08132059802301228, + "total": 0.1113810408860445, + "queued": 0.179005, + "clean_up": 0.0032090198947116733, + "file_setup": 0.024714926024898887, + "save_results": 0.0017327630193904042 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1e07e5cd-7ff4-4b65-94c0-92432310dfac", + "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:59.935Z", + "date_created": "2024-03-02T22:17:25.415Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124478S", - "compute_time_sec": 0.124478, + "compute_time": "P0DT00H00M00.124274S", + "compute_time_sec": 0.124274, "compute_times": { - "prove": 0.07985819177702069, - "total": 0.131462125107646, - "queued": 0.189545, - "clean_up": 0.00692735007032752, - "file_setup": 0.04234403814189136, - "save_results": 0.001923317089676857 + "prove": 0.08284180099144578, + "total": 0.1500206938944757, + "queued": 0.246817, + "clean_up": 0.008343180874362588, + "file_setup": 0.037750212009996176, + "save_results": 0.0018301969394087791 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e2dc5cf9-c750-4cc5-b5d3-582445d26ba9", + "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:58.407Z", + "date_created": "2024-03-02T22:17:23.831Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.119553S", - "compute_time_sec": 0.119553, + "compute_time": "P0DT00H00M00.118182S", + "compute_time_sec": 0.118182, "compute_times": { - "prove": 0.08296615700237453, - "total": 0.12573627301026136, - "queued": 0.226083, - "clean_up": 0.008650688105262816, - "file_setup": 0.03199622000101954, - "save_results": 0.0017465719720348716 + "prove": 0.08728135202545673, + "total": 0.12324785895179957, + "queued": 0.220211, + "clean_up": 0.004102245904505253, + "file_setup": 0.03006090992130339, + "save_results": 0.0014706840738654137 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "24f90909-3b9b-410f-9277-52d8a16ff654", + "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:56.860Z", + "date_created": "2024-03-02T22:17:22.258Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103716S", - "compute_time_sec": 0.103716, + "compute_time": "P0DT00H00M00.090207S", + "compute_time_sec": 0.090207, "compute_times": { - "prove": 0.06979906605556607, - "total": 0.10923597402870655, - "queued": 0.139177, - "clean_up": 0.0036087740445509553, - "file_setup": 0.03399856202304363, - "save_results": 0.0014903269475325942 + "prove": 0.06559745199047029, + "total": 0.0960762290051207, + "queued": 0.164689, + "clean_up": 0.0039045800222083926, + "file_setup": 0.024623307050205767, + "save_results": 0.0015745849814265966 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "5d069fd0-74fe-4c1d-af16-979586767d15", + "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:55.316Z", + "date_created": "2024-03-02T22:17:20.735Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164072S", - "compute_time_sec": 0.164072, + "compute_time": "P0DT00H00M00.108537S", + "compute_time_sec": 0.108537, "compute_times": { - "prove": 0.12517174892127514, - "total": 0.17043978604488075, - "queued": 0.207351, - "clean_up": 0.003746662987396121, - "file_setup": 0.039150891127064824, - "save_results": 0.0019460059702396393 + "prove": 0.08191155781969428, + "total": 0.11576922796666622, + "queued": 0.172262, + "clean_up": 0.0039061829447746277, + "file_setup": 0.027977181132882833, + "save_results": 0.0015976580325514078 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b6dfafc8-c20f-410c-b948-2b704e245975", + "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:53.766Z", + "date_created": "2024-03-02T22:17:19.166Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116515S", - "compute_time_sec": 0.116515, + "compute_time": "P0DT00H00M00.117779S", + "compute_time_sec": 0.117779, "compute_times": { - "prove": 0.07856976403854787, - "total": 0.12284065398853272, - "queued": 0.204898, - "clean_up": 0.004192995955236256, - "file_setup": 0.03768792003393173, - "save_results": 0.0020342780044302344 + "prove": 0.08095375797711313, + "total": 0.12441346701234579, + "queued": 0.148608, + "clean_up": 0.01458131498657167, + "file_setup": 0.027128741960041225, + "save_results": 0.0013865360524505377 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "66d9493f-77ff-4d33-99a1-e34e489e68cb", + "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:52.213Z", + "date_created": "2024-03-02T22:17:17.494Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109618S", - "compute_time_sec": 0.109618, + "compute_time": "P0DT00H00M00.106302S", + "compute_time_sec": 0.106302, "compute_times": { - "prove": 0.07834382401779294, - "total": 0.11546277697198093, - "queued": 0.228319, - "clean_up": 0.0037355918902903795, - "file_setup": 0.031366192968562245, - "save_results": 0.0016647940501570702 + "prove": 0.07591444090940058, + "total": 0.11228657700121403, + "queued": 0.146001, + "clean_up": 0.003584724967367947, + "file_setup": 0.03080855100415647, + "save_results": 0.0016646140720695257 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "67f19ed2-9d69-4e2b-91ba-756df93a26a4", + "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:50.640Z", + "date_created": "2024-03-02T22:17:15.887Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102363S", - "compute_time_sec": 0.102363, + "compute_time": "P0DT00H00M00.106448S", + "compute_time_sec": 0.106448, "compute_times": { - "prove": 0.07708223187364638, - "total": 0.11076221195980906, - "queued": 0.235274, - "clean_up": 0.004102661041542888, - "file_setup": 0.02742593502625823, - "save_results": 0.0017483970150351524 + "prove": 0.07768534799106419, + "total": 0.11450353683903813, + "queued": 0.211473, + "clean_up": 0.0034573860466480255, + "file_setup": 0.031260548159480095, + "save_results": 0.0016783778555691242 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1d0575dc-b34c-4cb2-ad2d-886cd958b02b", + "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:49.058Z", + "date_created": "2024-03-02T22:17:14.188Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126055S", - "compute_time_sec": 0.126055, + "compute_time": "P0DT00H00M00.102464S", + "compute_time_sec": 0.102464, "compute_times": { - "prove": 0.08462739107199013, - "total": 0.13239038200117648, - "queued": 0.208639, - "clean_up": 0.017553703975863755, - "file_setup": 0.028355297981761396, - "save_results": 0.0014984130393713713 + "prove": 0.0763863769825548, + "total": 0.10999432997778058, + "queued": 0.174275, + "clean_up": 0.004134346963837743, + "file_setup": 0.02737189899198711, + "save_results": 0.0017699809977784753 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "13e898c4-60a7-4e68-bc05-3d2a588e1b57", + "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:47.479Z", + "date_created": "2024-03-02T22:17:12.610Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114603S", - "compute_time_sec": 0.114603, + "compute_time": "P0DT00H00M00.113569S", + "compute_time_sec": 0.113569, "compute_times": { - "prove": 0.07099237700458616, - "total": 0.1205103590618819, - "queued": 0.177097, - "clean_up": 0.00736055604647845, - "file_setup": 0.04027851507999003, - "save_results": 0.0015338469529524446 + "prove": 0.07715794199611992, + "total": 0.11932651698589325, + "queued": 0.146457, + "clean_up": 0.0038819999899715185, + "file_setup": 0.036451552994549274, + "save_results": 0.001485317014157772 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "67581a14-9e3d-4da1-b2fd-ca871c4cb583", + "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:45.920Z", + "date_created": "2024-03-02T22:17:11.068Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105545S", - "compute_time_sec": 0.105545, + "compute_time": "P0DT00H00M00.106394S", + "compute_time_sec": 0.106394, "compute_times": { - "prove": 0.07798794494010508, - "total": 0.11226446111686528, - "queued": 0.210392, - "clean_up": 0.003587795188650489, - "file_setup": 0.02863957593217492, - "save_results": 0.0016675579827278852 + "prove": 0.0750561070162803, + "total": 0.11352195288054645, + "queued": 0.24047, + "clean_up": 0.003913701977580786, + "file_setup": 0.03255474800243974, + "save_results": 0.0015891690272837877 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d7910d0f-1551-4152-9302-8a370c36c994", + "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:44.421Z", + "date_created": "2024-03-02T22:17:09.525Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.168234S", - "compute_time_sec": 0.168234, + "compute_time": "P0DT00H00M00.109649S", + "compute_time_sec": 0.109649, "compute_times": { - "prove": 0.10509133199229836, - "total": 0.1757285799831152, - "queued": 0.219364, - "clean_up": 0.004795938031747937, - "file_setup": 0.06402788893319666, - "save_results": 0.0014585850294679403 + "prove": 0.08671194792259485, + "total": 0.11610554496292025, + "queued": 0.204141, + "clean_up": 0.003892548964358866, + "file_setup": 0.02370181807782501, + "save_results": 0.0014596240362152457 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "dc1e8b0e-3785-4cff-9a15-280603995a15", + "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:42.838Z", + "date_created": "2024-03-02T22:17:07.842Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138451S", - "compute_time_sec": 0.138451, + "compute_time": "P0DT00H00M00.098328S", + "compute_time_sec": 0.098328, "compute_times": { - "prove": 0.08344166504684836, - "total": 0.14460852497722954, - "queued": 0.193296, - "clean_up": 0.02906027901917696, - "file_setup": 0.030170131009072065, - "save_results": 0.0015538459410890937 + "prove": 0.07331796106882393, + "total": 0.10486690199468285, + "queued": 0.18668, + "clean_up": 0.003999138018116355, + "file_setup": 0.02532154694199562, + "save_results": 0.0018700809450820088 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ca0e80ea-8d94-4cb6-95d6-5cff1d63e9dc", + "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:41.260Z", + "date_created": "2024-03-02T22:17:06.256Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108498S", - "compute_time_sec": 0.108498, + "compute_time": "P0DT00H00M00.093768S", + "compute_time_sec": 0.093768, "compute_times": { - "prove": 0.07821972295641899, - "total": 0.11512337112799287, - "queued": 0.207493, - "clean_up": 0.011428299127146602, - "file_setup": 0.023141066078096628, - "save_results": 0.0019629159942269325 + "prove": 0.07298256200738251, + "total": 0.09930887399241328, + "queued": 0.193559, + "clean_up": 0.003266245825216174, + "file_setup": 0.02109808987006545, + "save_results": 0.0015898591373115778 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eec6ffb0-02d9-43b2-b13c-5247987ace3f", + "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:39.684Z", + "date_created": "2024-03-02T22:17:04.726Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.125239S", - "compute_time_sec": 0.125239, + "compute_time": "P0DT00H00M00.114898S", + "compute_time_sec": 0.114898, "compute_times": { - "prove": 0.07802591007202864, - "total": 0.13191273796837777, - "queued": 0.208815, - "clean_up": 0.005445771967060864, - "file_setup": 0.04654695594217628, - "save_results": 0.0015280540101230145 + "prove": 0.08792952506337315, + "total": 0.12101772194728255, + "queued": 0.198222, + "clean_up": 0.003449682961218059, + "file_setup": 0.0276323159923777, + "save_results": 0.001681591966189444 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "22a30234-5a91-41a6-92e7-77cb3a81dd99", + "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:38.137Z", + "date_created": "2024-03-02T22:17:03.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113764S", - "compute_time_sec": 0.113764, + "compute_time": "P0DT00H00M00.106309S", + "compute_time_sec": 0.106309, "compute_times": { - "prove": 0.07411053997930139, - "total": 0.11965196207165718, - "queued": 0.123697, - "clean_up": 0.021386098000220954, - "file_setup": 0.022322733071632683, - "save_results": 0.001491626026108861 + "prove": 0.08149053400848061, + "total": 0.11204789008479565, + "queued": 0.144459, + "clean_up": 0.005163350026123226, + "file_setup": 0.023657753015868366, + "save_results": 0.0014256179565563798 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8f9d58de-86dc-4a85-9051-91de8b9901bd", + "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:36.609Z", + "date_created": "2024-03-02T22:17:01.643Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110500S", - "compute_time_sec": 0.1105, + "compute_time": "P0DT00H00M00.103945S", + "compute_time_sec": 0.103945, "compute_times": { - "prove": 0.07843833207152784, - "total": 0.1174131550360471, - "queued": 0.188117, - "clean_up": 0.013684443198144436, - "file_setup": 0.02307076589204371, - "save_results": 0.001790786860510707 + "prove": 0.07686708308756351, + "total": 0.11076140310615301, + "queued": 0.215168, + "clean_up": 0.0034544861409813166, + "file_setup": 0.028191099874675274, + "save_results": 0.001841096905991435 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "251f5cfe-7b64-4967-8ff1-ec7986f2e44a", + "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:35.023Z", + "date_created": "2024-03-02T22:16:59.991Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113878S", - "compute_time_sec": 0.113878, + "compute_time": "P0DT00H00M00.124189S", + "compute_time_sec": 0.124189, "compute_times": { - "prove": 0.08454172103665769, - "total": 0.11953117907978594, - "queued": 0.202486, - "clean_up": 0.004061337094753981, - "file_setup": 0.028714405023492873, - "save_results": 0.0018627499230206013 + "prove": 0.07686379295773804, + "total": 0.12877459998708218, + "queued": 0.184586, + "clean_up": 0.00445067195687443, + "file_setup": 0.04572292300872505, + "save_results": 0.001407155068591237 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6d0e0a22-3842-4094-8229-353f171c879a", + "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:33.480Z", + "date_created": "2024-03-02T22:16:58.419Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124901S", - "compute_time_sec": 0.124901, + "compute_time": "P0DT00H00M00.115030S", + "compute_time_sec": 0.11503, "compute_times": { - "prove": 0.07596357993315905, - "total": 0.13044002500828356, - "queued": 0.140458, - "clean_up": 0.005051521933637559, - "file_setup": 0.0476306100608781, - "save_results": 0.0014870570739731193 + "prove": 0.08519456698559225, + "total": 0.12087315297685564, + "queued": 0.141676, + "clean_up": 0.004536350024864078, + "file_setup": 0.02909989806357771, + "save_results": 0.0016625439748167992 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a30aced0-9ec6-464c-9544-8ee23fd80b17", + "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:31.932Z", + "date_created": "2024-03-02T22:16:56.855Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109334S", - "compute_time_sec": 0.109334, + "compute_time": "P0DT00H00M00.116590S", + "compute_time_sec": 0.11659, "compute_times": { - "prove": 0.0772264408878982, - "total": 0.11520785093307495, - "queued": 0.214539, - "clean_up": 0.014989732997491956, - "file_setup": 0.02082884218543768, - "save_results": 0.0017384679522365332 + "prove": 0.07413527299650013, + "total": 0.12391416006721556, + "queued": 0.170496, + "clean_up": 0.008216062095016241, + "file_setup": 0.03923204098828137, + "save_results": 0.0018532369285821915 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "913aac15-fdac-4a3b-95f4-4a31d36e412e", + "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:30.405Z", + "date_created": "2024-03-02T22:16:55.300Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099198S", - "compute_time_sec": 0.099198, + "compute_time": "P0DT00H00M00.169733S", + "compute_time_sec": 0.169733, "compute_times": { - "prove": 0.07795899198390543, - "total": 0.3439350420376286, - "queued": 0.44235, - "clean_up": 0.003542012069374323, - "file_setup": 0.02195370604749769, - "save_results": 0.00164421193767339 + "prove": 0.13065553095657378, + "total": 0.17512868694029748, + "queued": 0.20835, + "clean_up": 0.010724585969001055, + "file_setup": 0.031707562040537596, + "save_results": 0.0017158209811896086 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "257409cf-bfd8-4380-9616-5ac69306dd7c", + "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:28.882Z", + "date_created": "2024-03-02T22:16:53.639Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.096462S", - "compute_time_sec": 0.096462, + "compute_time": "P0DT00H00M00.106419S", + "compute_time_sec": 0.106419, "compute_times": { - "prove": 0.0719371628947556, - "total": 0.10235371999442577, - "queued": 0.16149, - "clean_up": 0.0030283130472525954, - "file_setup": 0.0255846930667758, - "save_results": 0.001458707032725215 - }, - "file_size": 532, - "proof_input": null, - "proof": null, + "prove": 0.07485338707920164, + "total": 0.11183754401281476, + "queued": 0.190518, + "clean_up": 0.006780734984204173, + "file_setup": 0.02835355990100652, + "save_results": 0.0015155170112848282 + }, + "file_size": 532, + "proof_input": null, + "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d31cdf7f-c8a0-4f9e-8b32-b831924de177", + "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:27.303Z", + "date_created": "2024-03-02T22:14:41.345Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.126276S", - "compute_time_sec": 0.126276, + "compute_time": "P0DT00H00M00.095006S", + "compute_time_sec": 0.095006, "compute_times": { - "prove": 0.08422461082227528, - "total": 0.13323151203803718, - "queued": 0.217879, - "clean_up": 0.01238051219843328, - "file_setup": 0.03462041402235627, - "save_results": 0.0016039679758250713 + "prove": 0.07408645702525973, + "total": 0.1002384020248428, + "queued": 1.425728, + "clean_up": 0.0037696199724450707, + "file_setup": 0.020419865963049233, + "save_results": 0.0015785649884492159 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "b8bf2a32-9f86-40f6-bcd9-56a2888bdc9b", + "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:25.623Z", + "date_created": "2024-03-02T22:14:41.240Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138368S", - "compute_time_sec": 0.138368, + "compute_time": "P0DT00H00M00.122299S", + "compute_time_sec": 0.122299, "compute_times": { - "prove": 0.09363546408712864, - "total": 0.14376210200134665, - "queued": 0.257057, - "clean_up": 0.007791407988406718, - "file_setup": 0.03904824494384229, - "save_results": 0.0021443869918584824 + "prove": 0.07692208106163889, + "total": 0.1297405599616468, + "queued": 0.908851, + "clean_up": 0.004496873007155955, + "file_setup": 0.04598465096205473, + "save_results": 0.002022817963734269 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "41574bc9-1e37-4f28-9d17-57ba93098a75", + "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:24.063Z", + "date_created": "2024-03-02T22:14:41.236Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098465S", - "compute_time_sec": 0.098465, + "compute_time": "P0DT00H00M00.097774S", + "compute_time_sec": 0.097774, "compute_times": { - "prove": 0.07042361702769995, - "total": 0.10373939899727702, - "queued": 0.163439, - "clean_up": 0.003754721023142338, - "file_setup": 0.027845817035995424, - "save_results": 0.0013589690206572413 + "prove": 0.07189441099762917, + "total": 0.10323353402782232, + "queued": 0.808925, + "clean_up": 0.008474385016597807, + "file_setup": 0.02089866902679205, + "save_results": 0.0015711949672549963 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3d301e97-c1a6-4fdc-a4c2-54ddcf2faa14", + "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:22.482Z", + "date_created": "2024-03-02T22:14:41.236Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140408S", - "compute_time_sec": 0.140408, + "compute_time": "P0DT00H00M00.118593S", + "compute_time_sec": 0.118593, "compute_times": { - "prove": 0.09134363988414407, - "total": 0.1467661359347403, - "queued": 0.234166, - "clean_up": 0.011396168963983655, - "file_setup": 0.04208241100423038, - "save_results": 0.001585459103807807 + "prove": 0.08002680214121938, + "total": 0.12483585509471595, + "queued": 1.709023, + "clean_up": 0.00412439089268446, + "file_setup": 0.03829952888190746, + "save_results": 0.00203027599491179 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "92db2b38-37d2-4359-a6fb-42f54daee3ec", + "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:20.927Z", + "date_created": "2024-03-02T22:14:41.112Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141387S", - "compute_time_sec": 0.141387, + "compute_time": "P0DT00H00M00.094018S", + "compute_time_sec": 0.094018, "compute_times": { - "prove": 0.09125522000249475, - "total": 0.14774739800486714, - "queued": 0.197743, - "clean_up": 0.012068960932083428, - "file_setup": 0.04265728604514152, - "save_results": 0.0014312650309875607 + "prove": 0.07305821299087256, + "total": 0.09998789592646062, + "queued": 0.155203, + "clean_up": 0.0034407159546390176, + "file_setup": 0.021631687064655125, + "save_results": 0.001554804970510304 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e255845e-8b85-45b6-96ff-2ac1a01c2a41", + "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:19.297Z", + "date_created": "2024-03-02T22:14:39.613Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102332S", - "compute_time_sec": 0.102332, + "compute_time": "P0DT00H00M00.140531S", + "compute_time_sec": 0.140531, "compute_times": { - "prove": 0.07266321196220815, - "total": 0.10838873707689345, - "queued": 0.146978, - "clean_up": 0.008384920074604452, - "file_setup": 0.02525644702836871, - "save_results": 0.0017374729504808784 + "prove": 0.09558549302164465, + "total": 0.146603410015814, + "queued": 0.185159, + "clean_up": 0.008305710973218083, + "file_setup": 0.040469719911925495, + "save_results": 0.0019295590464025736 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3bc4e426-4cf3-4499-a6a2-9f31add603ba", + "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:17.717Z", + "date_created": "2024-03-02T22:14:38.083Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111570S", - "compute_time_sec": 0.11157, + "compute_time": "P0DT00H00M00.105803S", + "compute_time_sec": 0.105803, "compute_times": { - "prove": 0.07737825997173786, - "total": 0.11877415492199361, - "queued": 1.050496, - "clean_up": 0.003718754043802619, - "file_setup": 0.03554413700476289, - "save_results": 0.001658557914197445 + "prove": 0.0777802390512079, + "total": 0.11145833018235862, + "queued": 0.19316, + "clean_up": 0.0037183440290391445, + "file_setup": 0.02760996390134096, + "save_results": 0.0019434860441833735 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0789fac1-7b21-46db-b13d-b655b7bb06b4", + "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:16.204Z", + "date_created": "2024-03-02T22:14:36.595Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.137641S", - "compute_time_sec": 0.137641, + "compute_time": "P0DT00H00M00.098145S", + "compute_time_sec": 0.098145, "compute_times": { - "prove": 0.0947769220219925, - "total": 0.14389025000855327, - "queued": 0.224558, - "clean_up": 0.012663225992582738, - "file_setup": 0.03437299397774041, - "save_results": 0.0016881220508366823 + "prove": 0.0734365259995684, + "total": 0.10388228402007371, + "queued": 0.160378, + "clean_up": 0.004396509961225092, + "file_setup": 0.024077828973531723, + "save_results": 0.001595085021108389 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "013b10d1-7067-4794-ad7b-7d84a4d709fc", + "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:14.654Z", + "date_created": "2024-03-02T22:14:35.046Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.130554S", - "compute_time_sec": 0.130554, + "compute_time": "P0DT00H00M00.102485S", + "compute_time_sec": 0.102485, "compute_times": { - "prove": 0.07754861598368734, - "total": 0.1364057119935751, - "queued": 0.181242, - "clean_up": 0.01912771293427795, - "file_setup": 0.03766816493589431, - "save_results": 0.0017138230614364147 + "prove": 0.07241792895365506, + "total": 0.1082481580087915, + "queued": 0.195278, + "clean_up": 0.0035996510414406657, + "file_setup": 0.03052784502506256, + "save_results": 0.00135330599732697 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "95b58f66-0ad3-421b-b79d-68f50412168f", + "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:13.059Z", + "date_created": "2024-03-02T22:14:33.547Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105571S", - "compute_time_sec": 0.105571, + "compute_time": "P0DT00H00M00.113940S", + "compute_time_sec": 0.11394, "compute_times": { - "prove": 0.07499144691973925, - "total": 0.11162168602459133, - "queued": 0.211993, - "clean_up": 0.004386739106848836, - "file_setup": 0.030089835869148374, - "save_results": 0.0017889870796352625 + "prove": 0.08348662802018225, + "total": 0.12036114698275924, + "queued": 0.231884, + "clean_up": 0.00535669201053679, + "file_setup": 0.029328602133318782, + "save_results": 0.001801566919311881 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "70ba47a9-c165-48f3-ba5a-49190b73be6e", + "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:11.558Z", + "date_created": "2024-03-02T22:13:40.710Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104533S", - "compute_time_sec": 0.104533, + "compute_time": "P0DT00H00M00.108535S", + "compute_time_sec": 0.108535, "compute_times": { - "prove": 0.07792208204045892, - "total": 0.11210504802875221, - "queued": 0.217616, - "clean_up": 0.007965726079419255, - "file_setup": 0.024172692908905447, - "save_results": 0.0016238619573414326 + "prove": 0.07331131701357663, + "total": 0.11277111305389553, + "queued": 0.17423, + "clean_up": 0.005777769023552537, + "file_setup": 0.031883755000308156, + "save_results": 0.0014830770669505 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "22dd5e50-6142-42f3-aeda-43bf580aef6d", + "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:10.032Z", + "date_created": "2024-03-02T22:13:39.000Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.120359S", - "compute_time_sec": 0.120359, + "compute_time": "P0DT00H00M00.112695S", + "compute_time_sec": 0.112695, "compute_times": { - "prove": 0.07663809997029603, - "total": 0.12461252498906106, - "queued": 0.140378, - "clean_up": 0.02126628893893212, - "file_setup": 0.02467076701577753, - "save_results": 0.0017215840052813292 + "prove": 0.07820799702312797, + "total": 0.1174575500190258, + "queued": 0.223544, + "clean_up": 0.004070866969414055, + "file_setup": 0.032682382967323065, + "save_results": 0.0021686870604753494 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a3ad883b-14f9-4a17-86b8-c2fc494e0f4e", + "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:08.462Z", + "date_created": "2024-03-02T22:13:37.260Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111685S", - "compute_time_sec": 0.111685, + "compute_time": "P0DT00H00M00.107491S", + "compute_time_sec": 0.107491, "compute_times": { - "prove": 0.08040205901488662, - "total": 0.11877126502804458, - "queued": 0.199786, - "clean_up": 0.0037285531871020794, - "file_setup": 0.0324579190928489, - "save_results": 0.0017784868832677603 + "prove": 0.07868116302415729, + "total": 0.11423451104201376, + "queued": 0.210564, + "clean_up": 0.007490226998925209, + "file_setup": 0.025845387019217014, + "save_results": 0.0018579070456326008 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f8f188f0-fbad-40db-9fee-77742ce70b97", + "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:06.935Z", + "date_created": "2024-03-02T22:13:35.691Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104458S", - "compute_time_sec": 0.104458, + "compute_time": "P0DT00H00M00.104645S", + "compute_time_sec": 0.104645, "compute_times": { - "prove": 0.07790789101272821, - "total": 0.11097153997980058, - "queued": 0.207337, - "clean_up": 0.007473509991541505, - "file_setup": 0.023695859010331333, - "save_results": 0.0015444039599969983 + "prove": 0.07283521501813084, + "total": 0.11231476906687021, + "queued": 0.168258, + "clean_up": 0.0050119999796152115, + "file_setup": 0.032517564948648214, + "save_results": 0.0015029560308903456 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "776c3004-bf58-416b-82ca-40fddf63a453", + "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:05.334Z", + "date_created": "2024-03-02T22:13:34.182Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.174494S", - "compute_time_sec": 0.174494, + "compute_time": "P0DT00H00M00.101546S", + "compute_time_sec": 0.101546, "compute_times": { - "prove": 0.13656924897804856, - "total": 0.1803733000997454, - "queued": 0.159095, - "clean_up": 0.00582932005636394, - "file_setup": 0.035943722003139555, - "save_results": 0.0016814139671623707 + "prove": 0.07385058398358524, + "total": 0.10622004000470042, + "queued": 0.214401, + "clean_up": 0.003409723984077573, + "file_setup": 0.02646243793424219, + "save_results": 0.0021518670255318284 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2dea9f39-87b0-433c-8508-9ec411eab59d", + "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:03.737Z", + "date_created": "2024-03-02T22:13:32.679Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094572S", - "compute_time_sec": 0.094572, + "compute_time": "P0DT00H00M00.122334S", + "compute_time_sec": 0.122334, "compute_times": { - "prove": 0.07406232389621437, - "total": 0.10051628504879773, - "queued": 0.192337, - "clean_up": 0.00337238609790802, - "file_setup": 0.020903730997815728, - "save_results": 0.0018227370455861092 + "prove": 0.0876556090079248, + "total": 0.1313655290286988, + "queued": 0.230724, + "clean_up": 0.005932067055255175, + "file_setup": 0.03352665202692151, + "save_results": 0.0016483389772474766 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "2563637d-12e5-4700-b664-a7a1844a3720", + "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:02.220Z", + "date_created": "2024-03-02T22:13:31.191Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.111599S", - "compute_time_sec": 0.111599, + "compute_time": "P0DT00H00M00.093953S", + "compute_time_sec": 0.093953, "compute_times": { - "prove": 0.08133828500285745, - "total": 0.11800080502871424, - "queued": 0.22429, - "clean_up": 0.004713690024800599, - "file_setup": 0.029832501895725727, - "save_results": 0.001725762034766376 + "prove": 0.07118937093764544, + "total": 0.09999781497754157, + "queued": 0.582409, + "clean_up": 0.0037945699878036976, + "file_setup": 0.023232951993122697, + "save_results": 0.0014598669949918985 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "d3c2c860-74a4-4a54-8b82-eb5c10604018", + "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:18:00.620Z", + "date_created": "2024-03-02T22:13:29.642Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114347S", - "compute_time_sec": 0.114347, + "compute_time": "P0DT00H00M00.183122S", + "compute_time_sec": 0.183122, "compute_times": { - "prove": 0.0749998859828338, - "total": 0.11923162802122533, - "queued": 0.187559, - "clean_up": 0.00959215103648603, - "file_setup": 0.032431255909614265, - "save_results": 0.0015854650409892201 + "prove": 0.1029208250110969, + "total": 0.18900623894296587, + "queued": 0.193648, + "clean_up": 0.02979127294383943, + "file_setup": 0.051961387041956186, + "save_results": 0.0037548099644482136 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "e46f24b1-43d0-4c95-98c3-eee6c8c863c8", + "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:59.069Z", + "date_created": "2024-03-02T22:13:27.981Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.100689S", - "compute_time_sec": 0.100689, + "compute_time": "P0DT00H00M00.202523S", + "compute_time_sec": 0.202523, "compute_times": { - "prove": 0.07633324712514877, - "total": 0.10863703698851168, - "queued": 0.172422, - "clean_up": 0.0039177220314741135, - "file_setup": 0.026381932897493243, - "save_results": 0.0016446078661829233 + "prove": 0.11456152913160622, + "total": 0.20906984992325306, + "queued": 0.208536, + "clean_up": 0.03386854100972414, + "file_setup": 0.05412821704521775, + "save_results": 0.006115625845268369 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "49b020c7-d9b1-44e2-a43b-19c0207ee74f", + "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:57.502Z", + "date_created": "2024-03-02T22:13:26.328Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141413S", - "compute_time_sec": 0.141413, + "compute_time": "P0DT00H00M00.135499S", + "compute_time_sec": 0.135499, "compute_times": { - "prove": 0.07754256599582732, - "total": 0.1476239999756217, - "queued": 0.170377, - "clean_up": 0.01235142897348851, - "file_setup": 0.05578526598401368, - "save_results": 0.0016236520605161786 + "prove": 0.07793003402184695, + "total": 0.14023755700327456, + "queued": 0.175288, + "clean_up": 0.0037696800427511334, + "file_setup": 0.0566352519672364, + "save_results": 0.0015117370057851076 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "59a41b96-f911-4b35-8d6a-25bac426b846", + "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:55.884Z", + "date_created": "2024-03-02T21:55:54.687Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.110891S", - "compute_time_sec": 0.110891, + "compute_time": "P0DT00H00M00.135335S", + "compute_time_sec": 0.135335, "compute_times": { - "prove": 0.07763317495118827, - "total": 0.11661336896941066, - "queued": 0.143468, - "clean_up": 0.0035630339989438653, - "file_setup": 0.0330983359599486, - "save_results": 0.0019896290032193065 + "prove": 0.07691952004097402, + "total": 0.14003189594950527, + "queued": 0.198802, + "clean_up": 0.00467289995867759, + "file_setup": 0.05562937702052295, + "save_results": 0.002484833006747067 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "eca706dd-d23c-4184-bc37-7f8e00f6f5de", + "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:54.264Z", + "date_created": "2024-03-02T21:55:52.059Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.099387S", - "compute_time_sec": 0.099387, + "compute_time": "P0DT00H00M00.138890S", + "compute_time_sec": 0.13889, "compute_times": { - "prove": 0.07505850703455508, - "total": 0.10617876495234668, - "queued": 0.194099, - "clean_up": 0.0034724250435829163, - "file_setup": 0.025419748853892088, - "save_results": 0.001774586969986558 + "prove": 0.07692233612760901, + "total": 0.14497115998528898, + "queued": 0.215231, + "clean_up": 0.021985383005812764, + "file_setup": 0.044280862901359797, + "save_results": 0.0014082398265600204 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3cad4845-7898-4d85-9ae8-b6d390073bc9", + "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:52.472Z", + "date_created": "2024-03-02T21:55:49.557Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.127179S", - "compute_time_sec": 0.127179, + "compute_time": "P0DT00H00M00.106026S", + "compute_time_sec": 0.106026, "compute_times": { - "prove": 0.08727552101481706, - "total": 0.13350528001319617, - "queued": 0.199888, - "clean_up": 0.006217173999175429, - "file_setup": 0.038007476017810404, - "save_results": 0.0016796219861134887 + "prove": 0.07399564690422267, + "total": 0.11187266802880913, + "queued": 0.162814, + "clean_up": 0.0033016889356076717, + "file_setup": 0.03273502003867179, + "save_results": 0.0014213580871000886 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "7d78477e-48f4-49af-9b69-83ee57cb24a3", + "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:50.941Z", + "date_created": "2024-03-02T21:55:47.111Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122591S", - "compute_time_sec": 0.122591, + "compute_time": "P0DT00H00M00.122971S", + "compute_time_sec": 0.122971, "compute_times": { - "prove": 0.08476738398894668, - "total": 0.1283225070219487, - "queued": 0.166336, - "clean_up": 0.004483919939957559, - "file_setup": 0.03699059609789401, - "save_results": 0.0017628020141273737 + "prove": 0.07989700802136213, + "total": 0.12778416695073247, + "queued": 0.231593, + "clean_up": 0.004338543978519738, + "file_setup": 0.04149695695377886, + "save_results": 0.001680911984294653 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "0535c78b-8e42-4717-b752-206ed5730c09", + "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:49.312Z", + "date_created": "2024-03-02T21:55:44.587Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.141097S", - "compute_time_sec": 0.141097, + "compute_time": "P0DT00H00M00.128014S", + "compute_time_sec": 0.128014, "compute_times": { - "prove": 0.0733918990008533, - "total": 0.14723626291379333, - "queued": 0.218888, - "clean_up": 0.023661232087761164, - "file_setup": 0.04160579387098551, - "save_results": 0.008111441973596811 + "prove": 0.08263401291333139, + "total": 0.13507452490739524, + "queued": 0.233086, + "clean_up": 0.008105588844045997, + "file_setup": 0.04211885016411543, + "save_results": 0.0017826261464506388 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "ee8f2493-0ffb-4abd-b97a-7425f0388a21", + "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:47.661Z", + "date_created": "2024-03-02T21:55:32.787Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105830S", - "compute_time_sec": 0.10583, + "compute_time": "P0DT00H00M00.164615S", + "compute_time_sec": 0.164615, "compute_times": { - "prove": 0.07938949600793421, - "total": 0.11207641800865531, - "queued": 0.206942, - "clean_up": 0.00690544699318707, - "file_setup": 0.02367080794647336, - "save_results": 0.001770041068084538 + "prove": 0.11053177795838565, + "total": 0.17059254297055304, + "queued": 0.171935, + "clean_up": 0.004258243017829955, + "file_setup": 0.053978779003955424, + "save_results": 0.00145844800863415 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "1dabe547-3a9c-4d99-bfd0-cac6ee77076d", + "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:46.099Z", + "date_created": "2024-03-02T21:55:29.506Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164153S", - "compute_time_sec": 0.164153, + "compute_time": "P0DT00H00M00.289266S", + "compute_time_sec": 0.289266, "compute_times": { - "prove": 0.10050884890370071, - "total": 0.16989507200196385, - "queued": 0.137523, - "clean_up": 0.0296879590023309, - "file_setup": 0.033167905057780445, - "save_results": 0.006188624072819948 + "prove": 0.08642632805276662, + "total": 0.29704258195124567, + "queued": 0.183331, + "clean_up": 0.15804533392656595, + "file_setup": 0.05037923192139715, + "save_results": 0.0017682620091363788 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "4f75cb27-7349-44c6-9b2f-d0148e9eb559", + "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:44.552Z", + "date_created": "2024-03-02T21:55:26.174Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.129635S", - "compute_time_sec": 0.129635, + "compute_time": "P0DT00H00M00.178451S", + "compute_time_sec": 0.178451, "compute_times": { - "prove": 0.07830019295215607, - "total": 0.13494652090594172, - "queued": 0.221517, - "clean_up": 0.018889005994424224, - "file_setup": 0.035788336070254445, - "save_results": 0.001614188076928258 + "prove": 0.12590954499319196, + "total": 0.18570560100488365, + "queued": 0.238111, + "clean_up": 0.02239793981425464, + "file_setup": 0.03476291592232883, + "save_results": 0.002222753129899502 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "3fb520d0-198c-4937-9a2e-8dfdd80028fc", + "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", "circuit_name": "poseidon", "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:42.989Z", + "date_created": "2024-03-02T21:10:50.403Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109912S", - "compute_time_sec": 0.109912, + "compute_time": "P0DT00H00M00.150832S", + "compute_time_sec": 0.150832, "compute_times": { - "prove": 0.08981344511266798, - "total": 0.11624708399176598, - "queued": 0.223804, - "clean_up": 0.003414363949559629, - "file_setup": 0.021206943900324404, - "save_results": 0.0014059050008654594 + "prove": 0.11755112698301673, + "total": 0.2853551240405068, + "queued": 0.335902, + "clean_up": 0.007708279998041689, + "file_setup": 0.029812542023137212, + "save_results": 0.0016887020319700241 }, "file_size": 532, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "732edd3d-1e2d-49b2-b9c6-ce7928dc6fce", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:41.451Z", + "date_created": "2024-02-28T18:02:47.502Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115519S", - "compute_time_sec": 0.115519, + "compute_time": "P0DT00H00M00.078444S", + "compute_time_sec": 0.078444, "compute_times": { - "prove": 0.07633757498115301, - "total": 0.1204413790255785, - "queued": 0.742162, - "clean_up": 0.016363205038942397, - "file_setup": 0.025892338017001748, - "save_results": 0.0014968069735914469 + "prove": 0.05746597901452333, + "total": 0.08412136998958886, + "queued": 0.181406, + "clean_up": 0.0030666429083794355, + "file_setup": 0.021971813053824008, + "save_results": 0.0012382810236886144 }, - "file_size": 532, + "file_size": 451, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "f6c8e97c-1485-4ba7-86a4-277215b93f2d", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", + "circuit_name": "my-circuit", + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:39.456Z", + "date_created": "2024-02-28T18:02:39.474Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108406S", - "compute_time_sec": 0.108406, + "compute_time": "P0DT00H00M00.085495S", + "compute_time_sec": 0.085495, "compute_times": { - "prove": 0.0791304879821837, - "total": 0.11538788001053035, - "queued": 0.190948, - "clean_up": 0.003850993001833558, - "file_setup": 0.030011237133294344, - "save_results": 0.0017656770069152117 + "prove": 0.05661044199950993, + "total": 0.08519881102256477, + "queued": 0.2228, + "file_setup": 0.028238292085006833 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" }, { - "proof_id": "e7fb583c-9526-4709-8f90-a02198fede80", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:37.847Z", + "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:04:03.037Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.092359S", - "compute_time_sec": 0.092359, + "compute_time": "P0DT00H00M00.039789S", + "compute_time_sec": 0.039789, "compute_times": { - "prove": 0.07222839200403541, - "total": 0.09727117500733584, - "queued": 0.185071, - "clean_up": 0.003502683015540242, - "file_setup": 0.019683361053466797, - "save_results": 0.0015406029997393489 + "total": 0.04271465499186888, + "queued": 0.225284, + "file_setup": 0.01975348498672247, + "generate_witness_c": 0.022592113993596286 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "92aa9a1f-6266-4479-b5a5-c7f9e56dfdc4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:36.258Z", + "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:47.565Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112020S", - "compute_time_sec": 0.11202, + "compute_time": "P0DT00H00M00.083115S", + "compute_time_sec": 0.083115, "compute_times": { - "prove": 0.06998628401197493, - "total": 0.11816900398116559, - "queued": 0.159585, - "clean_up": 0.00885792204644531, - "file_setup": 0.037621396011672914, - "save_results": 0.0013648279709741473 + "total": 0.08423641003901139, + "queued": 0.18931, + "file_setup": 0.047118005983065814, + "generate_witness_c": 0.03662721102591604 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "399b6ff1-580f-41fe-a9e3-64d4be995973", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:34.681Z", + "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:02:37.757Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.161413S", - "compute_time_sec": 0.161413, + "compute_time": "P0DT00H00M00.060050S", + "compute_time_sec": 0.06005, "compute_times": { - "prove": 0.12939074099995196, - "total": 0.16822218499146402, - "queued": 0.231644, - "clean_up": 0.0037453039549291134, - "file_setup": 0.03296162514016032, - "save_results": 0.0017324970103800297 + "total": 0.12728848890401423, + "queued": 0.250848, + "file_setup": 0.09145022416487336, + "generate_witness_c": 0.03525270987302065 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "9dc04553-feb6-471c-8447-1c0d2bc15061", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:33.146Z", + "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", + "circuit_name": "hash-checker", + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_type": "circom", + "date_created": "2024-02-27T02:00:37.596Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104014S", - "compute_time_sec": 0.104014, + "compute_time": "P0DT00H00M00.056679S", + "compute_time_sec": 0.056679, "compute_times": { - "prove": 0.06997583503834903, - "total": 0.11030748602934182, - "queued": 0.190603, - "clean_up": 0.013490295968949795, - "file_setup": 0.025196701986715198, - "save_results": 0.0012690169969573617 + "total": 0.12009319197386503, + "queued": 0.559087, + "file_setup": 0.08946515002753586, + "generate_witness_c": 0.030112746986560524 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "67eb56d1-d640-4f5a-ad1e-9c2450859de6", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:31.611Z", + "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", + "circuit_name": "hash-checker", + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_type": "circom", + "date_created": "2024-02-16T16:46:40.976Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095778S", - "compute_time_sec": 0.095778, + "compute_time": "P0DT00H00M05.341615S", + "compute_time_sec": 5.341615, "compute_times": { - "prove": 0.07503506389912218, - "total": 0.10164016194175929, - "queued": 0.139381, - "clean_up": 0.0031234719790518284, - "file_setup": 0.021389488014392555, - "save_results": 0.001648124074563384 + "prove": 5.2774561159312725, + "total": 5.348625190556049, + "queued": 0.208614, + "clean_up": 0.005355444736778736, + "file_setup": 0.0357542559504509, + "save_results": 0.0016373288817703724, + "generate_witness_c": 0.02802356705069542 }, - "file_size": 532, + "file_size": 789, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8f4ab6a1-d75f-4f1b-a465-ea041a421743", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:30.068Z", + "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:09:39.253Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117298S", - "compute_time_sec": 0.117298, + "compute_time": "P0DT00H00M00.042131S", + "compute_time_sec": 0.042131, "compute_times": { - "prove": 0.08094484405592084, - "total": 0.1229423270560801, - "queued": 0.187289, - "clean_up": 0.0036458540707826614, - "file_setup": 0.03630347200669348, - "save_results": 0.0017006490379571915 + "total": 0.04482376802479848, + "queued": 0.207543, + "file_setup": 0.023827903962228447, + "generate_witness_c": 0.020594758039806038 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" }, { - "proof_id": "5a22f91d-a4e5-4226-bb4d-7e414ce82f7a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:28.546Z", + "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", + "circuit_name": "hash-checker", + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_type": "circom", + "date_created": "2024-02-15T19:08:49.137Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117620S", - "compute_time_sec": 0.11762, + "compute_time": "P0DT00H00M00.055379S", + "compute_time_sec": 0.055379, "compute_times": { - "prove": 0.08068329095840454, - "total": 0.12468839401844889, - "queued": 0.209765, - "clean_up": 0.016898180008865893, - "file_setup": 0.024950645049102604, - "save_results": 0.001741672051139176 + "total": 0.0464545710128732, + "queued": 0.187821, + "file_setup": 0.023604326997883618, + "generate_witness_c": 0.022402279020752758 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" }, { - "proof_id": "0ea123b3-227f-4c99-8aaa-0cef8f97fc1e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:27.002Z", + "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:53:18.626Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104327S", - "compute_time_sec": 0.104327, + "compute_time": "P0DT00H00M01.674886S", + "compute_time_sec": 1.674886, "compute_times": { - "prove": 0.08132059802301228, - "total": 0.1113810408860445, - "queued": 0.179005, - "clean_up": 0.0032090198947116733, - "file_setup": 0.024714926024898887, - "save_results": 0.0017327630193904042 + "prove": 1.6106855850666761, + "total": 1.682134603150189, + "queued": 0.21114, + "clean_up": 0.015362400561571121, + "file_setup": 0.038011837750673294, + "save_results": 0.0016225874423980713, + "generate_witness_c": 0.016064194962382317 }, - "file_size": 532, + "file_size": 713, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "540c9de2-9604-42db-8f9e-17e7060fda3a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:25.415Z", + "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:49:33.830Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124274S", - "compute_time_sec": 0.124274, + "compute_time": "P0DT00H00M00.049663S", + "compute_time_sec": 0.049663, "compute_times": { - "prove": 0.08284180099144578, - "total": 0.1500206938944757, - "queued": 0.246817, - "clean_up": 0.008343180874362588, - "file_setup": 0.037750212009996176, - "save_results": 0.0018301969394087791 + "total": 0.05284719355404377, + "queued": 0.217998, + "file_setup": 0.04036730155348778, + "generate_witness_c": 0.012098094448447227 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "9cf9e8fd-3c57-4d0e-9f12-b02edc4f3ba4", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:23.831Z", + "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:48:55.324Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118182S", - "compute_time_sec": 0.118182, + "compute_time": "P0DT00H00M00.052811S", + "compute_time_sec": 0.052811, "compute_times": { - "prove": 0.08728135202545673, - "total": 0.12324785895179957, - "queued": 0.220211, - "clean_up": 0.004102245904505253, - "file_setup": 0.03006090992130339, - "save_results": 0.0014706840738654137 + "total": 0.05608381051570177, + "queued": 0.226522, + "file_setup": 0.03871022444218397, + "generate_witness_c": 0.01696752943098545 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "dccd79e7-3548-4816-8e19-c58b2f98a5c5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:22.258Z", + "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:58.610Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.090207S", - "compute_time_sec": 0.090207, + "compute_time": "P0DT00H00M00.057437S", + "compute_time_sec": 0.057437, "compute_times": { - "prove": 0.06559745199047029, - "total": 0.0960762290051207, - "queued": 0.164689, - "clean_up": 0.0039045800222083926, - "file_setup": 0.024623307050205767, - "save_results": 0.0015745849814265966 + "total": 0.05853192321956158, + "queued": 0.205516, + "file_setup": 0.043163422495126724, + "generate_witness_c": 0.014894634485244751 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "f49e977c-5b7f-4b88-b86f-343f3370e511", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:20.735Z", + "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", + "circuit_name": "semaphore", + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_type": "circom", + "date_created": "2024-02-15T16:47:01.336Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108537S", - "compute_time_sec": 0.108537, + "compute_time": "P0DT00H00M00.055829S", + "compute_time_sec": 0.055829, "compute_times": { - "prove": 0.08191155781969428, - "total": 0.11576922796666622, - "queued": 0.172262, - "clean_up": 0.0039061829447746277, - "file_setup": 0.027977181132882833, - "save_results": 0.0015976580325514078 + "total": 0.05997238401323557, + "queued": 0.250181, + "file_setup": 0.04254392720758915, + "generate_witness_c": 0.01698323991149664 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "db5dc9d8-506b-4239-b311-0f5363a8cb25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:19.166Z", + "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", + "circuit_name": "semaphore", + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_type": "circom", + "date_created": "2024-02-15T16:45:59.082Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.117779S", - "compute_time_sec": 0.117779, + "compute_time": "P0DT00H00M00.074886S", + "compute_time_sec": 0.074886, "compute_times": { - "prove": 0.08095375797711313, - "total": 0.12441346701234579, - "queued": 0.148608, - "clean_up": 0.01458131498657167, - "file_setup": 0.027128741960041225, - "save_results": 0.0013865360524505377 + "total": 0.07638306729495525, + "queued": 0.222935, + "file_setup": 0.05688828695565462, + "generate_witness_c": 0.019095703959465027 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" }, { - "proof_id": "24851e74-7834-4292-a2ad-012e47622ca5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:17.494Z", + "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:49.852Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106302S", - "compute_time_sec": 0.106302, + "compute_time": "P0DT00H00M00.118463S", + "compute_time_sec": 0.118463, "compute_times": { - "prove": 0.07591444090940058, - "total": 0.11228657700121403, - "queued": 0.146001, - "clean_up": 0.003584724967367947, - "file_setup": 0.03080855100415647, - "save_results": 0.0016646140720695257 + "total": 0.11371562909334898, + "queued": 0.165321, + "file_setup": 0.02585006970912218, + "generate_witness_wasm": 0.08747230330482125 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "9d34d17e-8d1e-4ff4-912a-ff9ef52d947e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:15.887Z", + "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:08:15.347Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106448S", - "compute_time_sec": 0.106448, + "compute_time": "P0DT00H00M00.087104S", + "compute_time_sec": 0.087104, "compute_times": { - "prove": 0.07768534799106419, - "total": 0.11450353683903813, - "queued": 0.211473, - "clean_up": 0.0034573860466480255, - "file_setup": 0.031260548159480095, - "save_results": 0.0016783778555691242 + "total": 0.08892976585775614, + "queued": 0.188521, + "file_setup": 0.02122315624728799, + "generate_witness_wasm": 0.06728191487491131 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "11b3a382-7695-4a96-813e-0dddf2495293", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:14.188Z", + "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", + "circuit_name": "semaphore", + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_type": "circom", + "date_created": "2024-02-12T16:07:32.862Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102464S", - "compute_time_sec": 0.102464, + "compute_time": "P0DT00H00M00.629850S", + "compute_time_sec": 0.62985, "compute_times": { - "prove": 0.0763863769825548, - "total": 0.10999432997778058, - "queued": 0.174275, - "clean_up": 0.004134346963837743, - "file_setup": 0.02737189899198711, - "save_results": 0.0017699809977784753 + "total": 0.699215236119926, + "queued": 20.443074, + "file_setup": 0.08142021484673023, + "generate_witness_wasm": 0.6153158713132143 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "e88398f3-c0f6-4b66-b35e-b894b101938a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:12.610Z", + "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", + "circuit_name": "hashchecker", + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:56.269Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113569S", - "compute_time_sec": 0.113569, + "compute_time": "P0DT00H00M03.556787S", + "compute_time_sec": 3.556787, "compute_times": { - "prove": 0.07715794199611992, - "total": 0.11932651698589325, - "queued": 0.146457, - "clean_up": 0.0038819999899715185, - "file_setup": 0.036451552994549274, - "save_results": 0.001485317014157772 + "total": 3.282685193931684, + "queued": 31.156839, + "file_setup": 0.9440451499540359, + "generate_witness_wasm": 2.1537286299280822 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "61d9a81d-185e-4465-a23c-8420b3ed6345", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:11.068Z", + "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", + "circuit_name": "hashchecker", + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:59.958Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106394S", - "compute_time_sec": 0.106394, + "compute_time": "P0DT00H00M05.786155S", + "compute_time_sec": 5.786155, "compute_times": { - "prove": 0.0750561070162803, - "total": 0.11352195288054645, - "queued": 0.24047, - "clean_up": 0.003913701977580786, - "file_setup": 0.03255474800243974, - "save_results": 0.0015891690272837877 + "prove": 1.6357202199287713, + "total": 5.85425769793801, + "queued": 1.584852, + "clean_up": 0.9189370227977633, + "file_setup": 0.8701981450431049, + "save_results": 0.24538314412347972, + "generate_witness_wasm": 2.1234320180956274 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "8eafc730-dee5-458f-9b61-a877e9b515cf", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:09.525Z", + "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:56.907Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.109649S", - "compute_time_sec": 0.109649, + "compute_time": "P0DT00H00M02.387894S", + "compute_time_sec": 2.387894, "compute_times": { - "prove": 0.08671194792259485, - "total": 0.11610554496292025, - "queued": 0.204141, - "clean_up": 0.003892548964358866, - "file_setup": 0.02370181807782501, - "save_results": 0.0014596240362152457 + "total": 1.9064474820625037, + "queued": 1.557474, + "file_setup": 0.8709360021166503, + "generate_witness_wasm": 0.9751034409273416 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "78318ee7-e227-4f97-8b9c-566c1548a051", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:07.842Z", + "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:34:33.443Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098328S", - "compute_time_sec": 0.098328, + "compute_time": "P0DT00H00M02.213770S", + "compute_time_sec": 2.21377, "compute_times": { - "prove": 0.07331796106882393, - "total": 0.10486690199468285, - "queued": 0.18668, - "clean_up": 0.003999138018116355, - "file_setup": 0.02532154694199562, - "save_results": 0.0018700809450820088 + "total": 1.6578402749728411, + "queued": 1.501643, + "file_setup": 0.8060235111042857, + "generate_witness_wasm": 0.791354832937941 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "8776c7cf-e6f7-44c3-9578-98ac68b14c8c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:06.256Z", + "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", + "circuit_name": "hashchecker", + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_type": "circom", + "date_created": "2024-02-11T19:33:12.169Z", "perform_verify": false, - "status": "Ready", + "status": "Failed", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093768S", - "compute_time_sec": 0.093768, + "compute_time": "P0DT00H00M05.888816S", + "compute_time_sec": 5.888816, "compute_times": { - "prove": 0.07298256200738251, - "total": 0.09930887399241328, - "queued": 0.193559, - "clean_up": 0.003266245825216174, - "file_setup": 0.02109808987006545, - "save_results": 0.0015898591373115778 + "total": 5.5928051138762385, + "queued": 20.021632, + "file_setup": 0.9408337560016662, + "generate_witness_wasm": 4.466476025991142 }, - "file_size": 532, + "file_size": null, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null + "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" }, { - "proof_id": "a83e6c46-7ab4-4de3-98de-44232f71e7b1", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:04.726Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.114898S", - "compute_time_sec": 0.114898, - "compute_times": { - "prove": 0.08792952506337315, - "total": 0.12101772194728255, - "queued": 0.198222, - "clean_up": 0.003449682961218059, - "file_setup": 0.0276323159923777, - "save_results": 0.001681591966189444 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, - "verification_key": null, - "error": null - }, - { - "proof_id": "b1ef6a6a-ef8c-4d09-bdad-926fc9a9d798", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:03.182Z", + "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", + "circuit_name": "circom-multiplier2", + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_type": "circom", + "date_created": "2024-01-31T18:16:21.991Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106309S", - "compute_time_sec": 0.106309, + "compute_time": "P0DT00H00M00.895357S", + "compute_time_sec": 0.895357, "compute_times": { - "prove": 0.08149053400848061, - "total": 0.11204789008479565, - "queued": 0.144459, - "clean_up": 0.005163350026123226, - "file_setup": 0.023657753015868366, - "save_results": 0.0014256179565563798 + "prove": 0.6790756830014288, + "total": 0.968905714340508, + "queued": 0.662781, + "clean_up": 0.00029797712340950966, + "file_setup": 0.2733065038919449, + "save_results": 0.003135905135422945, + "generate_witness_c": 0.012809758074581623 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "41af132e-e488-46fa-a18e-7a50966aee2c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:17:01.643Z", + "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", + "circuit_name": "circom-multiplier2", + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:45.826Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.103945S", - "compute_time_sec": 0.103945, + "compute_time": "P0DT00H00M00.942551S", + "compute_time_sec": 0.942551, "compute_times": { - "prove": 0.07686708308756351, - "total": 0.11076140310615301, - "queued": 0.215168, - "clean_up": 0.0034544861409813166, - "file_setup": 0.028191099874675274, - "save_results": 0.001841096905991435 + "prove": 0.7584659070707858, + "total": 1.0125216851010919, + "queued": 13.788636, + "clean_up": 0.00025292718783020973, + "file_setup": 0.24108529277145863, + "save_results": 0.0026897299103438854, + "generate_witness_c": 0.009630681946873665 }, - "file_size": 532, + "file_size": 712, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "99e62fe5-9b31-4792-9ab6-93a00148332a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:59.991Z", + "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", + "circuit_name": "circom-multiplier2", + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:26.403Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.124189S", - "compute_time_sec": 0.124189, + "compute_time": "P0DT00H00M03.306255S", + "compute_time_sec": 3.306255, "compute_times": { - "prove": 0.07686379295773804, - "total": 0.12877459998708218, - "queued": 0.184586, - "clean_up": 0.00445067195687443, - "file_setup": 0.04572292300872505, - "save_results": 0.001407155068591237 + "prove": 2.568090456072241, + "total": 3.37676440179348, + "queued": 28.788691, + "clean_up": 0.0003418959677219391, + "file_setup": 0.241387109272182, + "save_results": 0.002813168801367283, + "generate_witness_c": 0.5637943758629262 }, - "file_size": 532, + "file_size": 713, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "a41c59af-5b73-4a63-bbbf-f5b16a240049", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:58.419Z", + "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", + "circuit_name": "circom-multiplier2", + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:18.014Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.115030S", - "compute_time_sec": 0.11503, + "compute_time": "P0DT00H00M05.490489S", + "compute_time_sec": 5.490489, "compute_times": { - "prove": 0.08519456698559225, - "total": 0.12087315297685564, - "queued": 0.141676, - "clean_up": 0.004536350024864078, - "file_setup": 0.02909989806357771, - "save_results": 0.0016625439748167992 + "prove": 5.2387496647425, + "total": 5.556455092970282, + "queued": 30.599597, + "clean_up": 0.000279237050563097, + "file_setup": 0.23077922780066729, + "save_results": 0.006773914210498333, + "generate_witness_c": 0.07928962633013725 }, - "file_size": 532, + "file_size": 711, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "885ed273-6235-4981-84d7-bc7120d35d81", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:56.855Z", + "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", + "circuit_name": "sudoku", + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_type": "circom", + "date_created": "2023-12-02T03:59:27.851Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.116590S", - "compute_time_sec": 0.11659, + "compute_time": "P0DT00H00M07.854809S", + "compute_time_sec": 7.854809, "compute_times": { - "prove": 0.07413527299650013, - "total": 0.12391416006721556, - "queued": 0.170496, - "clean_up": 0.008216062095016241, - "file_setup": 0.03923204098828137, - "save_results": 0.0018532369285821915 + "prove": 4.957428568042815, + "total": 9.034430680796504, + "queued": 0.697877, + "clean_up": 0.001238434575498104, + "file_setup": 3.9956598421558738, + "save_results": 0.07156617846339941, + "generate_witness_c": 0.008326929062604904 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "6f8d9e67-9ec3-40af-a3c4-eb6f04058674", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:55.300Z", + "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", + "circuit_name": "sudoku", + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_type": "circom", + "date_created": "2023-12-02T03:54:14.687Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.169733S", - "compute_time_sec": 0.169733, + "compute_time": "P0DT00H00M08.475101S", + "compute_time_sec": 8.475101, "compute_times": { - "prove": 0.13065553095657378, - "total": 0.17512868694029748, - "queued": 0.20835, - "clean_up": 0.010724585969001055, - "file_setup": 0.031707562040537596, - "save_results": 0.0017158209811896086 + "prove": 5.822698147967458, + "total": 9.663341652601957, + "queued": 0.474116, + "clean_up": 0.0010337075218558311, + "file_setup": 3.76318403147161, + "save_results": 0.06816541589796543, + "generate_witness_c": 0.007991122081875801 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, { - "proof_id": "29cb969b-b616-4cd2-bc62-9cb4940deb4a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:16:53.639Z", + "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", + "circuit_name": "sudoku", + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_type": "circom", + "date_created": "2023-12-02T03:52:28.815Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106419S", - "compute_time_sec": 0.106419, + "compute_time": "P0DT00H00M06.662090S", + "compute_time_sec": 6.66209, "compute_times": { - "prove": 0.07485338707920164, - "total": 0.11183754401281476, - "queued": 0.190518, - "clean_up": 0.006780734984204173, - "file_setup": 0.02835355990100652, - "save_results": 0.0015155170112848282 + "prove": 5.845281148329377, + "total": 7.817341674119234, + "queued": 28.321561, + "clean_up": 0.0009510181844234467, + "file_setup": 1.8957333201542497, + "save_results": 0.06738575547933578, + "generate_witness_c": 0.007616886869072914 }, - "file_size": 532, + "file_size": 1037, "proof_input": null, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null - }, + } + ], + "rawHeaders": [ + "Content-Length", + "234573", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/list?include_verification_key=false", + "body": "", + "status": 200, + "response": [ { - "proof_id": "00b7e216-e7b6-49a7-ab8d-056ec17d03f5", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.345Z", - "perform_verify": false, + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:45.642Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.095006S", - "compute_time_sec": 0.095006, - "compute_times": { - "prove": 0.07408645702525973, - "total": 0.1002384020248428, - "queued": 1.425728, - "clean_up": 0.0037696199724450707, - "file_setup": 0.020419865963049233, - "save_results": 0.0015785649884492159 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.929838S", + "compute_time_sec": 10.929838, + "compute_times": { + "total": 11.007619581185281, + "queued": 0.481129, + "clean_up": 0.051205127499997616, + "create_cpp": 0.05483011808246374, + "file_setup": 0.10308713093400002, + "compile_cpp": 4.6461376613006, + "create_r1cs": 0.014528287574648857, + "save_results": 0.008079186081886292, + "get_r1cs_info": 0.0003790585324168205, + "groth16_setup": 1.4076873622834682, + "export_verification_key": 1.4883546605706215, + "download_trusted_setup_file": 1.7322950633242726, + "solidity_contract_generation": 1.5002469010651112 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "51274114-c390-4a4f-a9c0-9d87d26ad858", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.240Z", - "perform_verify": false, + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.896Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122299S", - "compute_time_sec": 0.122299, - "compute_times": { - "prove": 0.07692208106163889, - "total": 0.1297405599616468, - "queued": 0.908851, - "clean_up": 0.004496873007155955, - "file_setup": 0.04598465096205473, - "save_results": 0.002022817963734269 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.231365S", + "compute_time_sec": 11.231365, + "compute_times": { + "total": 11.307692172005773, + "queued": 0.476676, + "clean_up": 0.008774058893322945, + "create_cpp": 0.053523180074989796, + "file_setup": 0.09832879714667797, + "compile_cpp": 4.598241847008467, + "create_r1cs": 0.014149329625070095, + "save_results": 0.007395447231829166, + "get_r1cs_info": 0.0003755558282136917, + "groth16_setup": 1.5397319523617625, + "export_verification_key": 1.63625568151474, + "download_trusted_setup_file": 1.8067116104066372, + "solidity_contract_generation": 1.543387576006353 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "18808169-464d-44bd-b7dd-e93139b473f7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", - "perform_verify": false, + "circuit_id": "b8e1fce0-8f61-425f-bcb8-934e7d40a7fe", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.868Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.097774S", - "compute_time_sec": 0.097774, - "compute_times": { - "prove": 0.07189441099762917, - "total": 0.10323353402782232, - "queued": 0.808925, - "clean_up": 0.008474385016597807, - "file_setup": 0.02089866902679205, - "save_results": 0.0015711949672549963 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.883477S", + "compute_time_sec": 10.883477, + "compute_times": { + "total": 10.96161946002394, + "queued": 5.594399, + "clean_up": 0.008177496492862701, + "create_cpp": 0.05455693602561951, + "file_setup": 0.09822729509323835, + "compile_cpp": 5.32946053519845, + "create_r1cs": 0.023223165422677994, + "save_results": 0.007872683927416801, + "get_r1cs_info": 0.0007433714345097542, + "groth16_setup": 1.232159056700766, + "export_verification_key": 1.1852782787755132, + "download_trusted_setup_file": 1.8125058794394135, + "solidity_contract_generation": 1.2086354764178395 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "36dfae83-91de-47c0-a0c1-0f238ddc26eb", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.236Z", - "perform_verify": false, + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.751Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118593S", - "compute_time_sec": 0.118593, - "compute_times": { - "prove": 0.08002680214121938, - "total": 0.12483585509471595, - "queued": 1.709023, - "clean_up": 0.00412439089268446, - "file_setup": 0.03829952888190746, - "save_results": 0.00203027599491179 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.305050S", + "compute_time_sec": 11.30505, + "compute_times": { + "total": 11.381858820095658, + "queued": 0.503683, + "clean_up": 0.006945925764739513, + "create_cpp": 0.0647741137072444, + "file_setup": 0.10372947435826063, + "compile_cpp": 4.63662054669112, + "create_r1cs": 0.014084351249039173, + "save_results": 0.006675968877971172, + "get_r1cs_info": 0.0004263361915946007, + "groth16_setup": 1.5637168493121862, + "export_verification_key": 1.5961499894037843, + "download_trusted_setup_file": 1.842420045286417, + "solidity_contract_generation": 1.5456946399062872 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3575ca00-a28a-43db-a44a-834f7e72e72c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:41.112Z", - "perform_verify": false, + "circuit_id": "66b82507-33a9-4ad4-bc6b-d25ca1e81640", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.750Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.094018S", - "compute_time_sec": 0.094018, - "compute_times": { - "prove": 0.07305821299087256, - "total": 0.09998789592646062, - "queued": 0.155203, - "clean_up": 0.0034407159546390176, - "file_setup": 0.021631687064655125, - "save_results": 0.001554804970510304 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.268466S", + "compute_time_sec": 11.268466, + "compute_times": { + "total": 11.345806522294879, + "queued": 0.488628, + "clean_up": 0.011073347181081772, + "create_cpp": 0.05416189879179001, + "file_setup": 0.1187604358419776, + "compile_cpp": 4.553891937248409, + "create_r1cs": 0.014190373942255974, + "save_results": 0.007122533395886421, + "get_r1cs_info": 0.0004680706188082695, + "groth16_setup": 1.5284202648326755, + "export_verification_key": 1.6278462577611208, + "download_trusted_setup_file": 1.8715678034350276, + "solidity_contract_generation": 1.5577266169711947 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "90ddcaa4-b25b-4ea7-ad36-2090f8e2c4e0", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:39.613Z", - "perform_verify": false, + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.711Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.140531S", - "compute_time_sec": 0.140531, - "compute_times": { - "prove": 0.09558549302164465, - "total": 0.146603410015814, - "queued": 0.185159, - "clean_up": 0.008305710973218083, - "file_setup": 0.040469719911925495, - "save_results": 0.0019295590464025736 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.210817S", + "compute_time_sec": 11.210817, + "compute_times": { + "total": 11.29248421639204, + "queued": 0.48327, + "clean_up": 0.020679300650954247, + "create_cpp": 0.05491482466459274, + "file_setup": 0.10212271381169558, + "compile_cpp": 4.628723526373506, + "create_r1cs": 0.014838848263025284, + "save_results": 0.008825177326798439, + "get_r1cs_info": 0.00037500355392694473, + "groth16_setup": 1.5391744449734688, + "export_verification_key": 1.6044446052983403, + "download_trusted_setup_file": 1.8482900699600577, + "solidity_contract_generation": 1.4694783054292202 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "354474c9-3f42-4d45-bcef-aea7a0cb6b9b", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:38.083Z", - "perform_verify": false, + "circuit_id": "1adbe754-bf55-4bc4-840b-b1a0c6211bba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.631Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.105803S", - "compute_time_sec": 0.105803, - "compute_times": { - "prove": 0.0777802390512079, - "total": 0.11145833018235862, - "queued": 0.19316, - "clean_up": 0.0037183440290391445, - "file_setup": 0.02760996390134096, - "save_results": 0.0019434860441833735 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.272581S", + "compute_time_sec": 9.272581, + "compute_times": { + "total": 9.281027846038342, + "queued": 0.526207, + "clean_up": 0.010583236813545227, + "create_cpp": 0.06096075102686882, + "file_setup": 0.06766684353351593, + "compile_cpp": 4.783785995095968, + "create_r1cs": 0.028285864740610123, + "save_results": 0.01832101121544838, + "get_r1cs_info": 0.0007419697940349579, + "groth16_setup": 1.4409223012626171, + "export_verification_key": 1.4080555588006973, + "download_trusted_setup_file": 0.003306623548269272, + "solidity_contract_generation": 1.4575624987483025 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "2f54c530-66dc-4247-8d0c-05cd64a21b95", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:36.595Z", - "perform_verify": false, + "circuit_id": "47dcd9c7-ad4c-442b-9749-1c4a223e9c41", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.622Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.098145S", - "compute_time_sec": 0.098145, - "compute_times": { - "prove": 0.0734365259995684, - "total": 0.10388228402007371, - "queued": 0.160378, - "clean_up": 0.004396509961225092, - "file_setup": 0.024077828973531723, - "save_results": 0.001595085021108389 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.295136S", + "compute_time_sec": 8.295136, + "compute_times": { + "total": 8.30126025620848, + "queued": 5.783183, + "clean_up": 0.012490132823586464, + "create_cpp": 0.04419650696218014, + "file_setup": 0.0244809091091156, + "compile_cpp": 4.626262218691409, + "create_r1cs": 0.014991610310971737, + "save_results": 0.007189788389950991, + "get_r1cs_info": 0.00040078582242131233, + "groth16_setup": 1.1928394669666886, + "export_verification_key": 1.1747048920951784, + "download_trusted_setup_file": 0.0014825090765953064, + "solidity_contract_generation": 1.2017690567299724 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1ff958f2-551d-4056-b47e-226f360e6460", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:35.046Z", - "perform_verify": false, + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.727Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.102485S", - "compute_time_sec": 0.102485, - "compute_times": { - "prove": 0.07241792895365506, - "total": 0.1082481580087915, - "queued": 0.195278, - "clean_up": 0.0035996510414406657, - "file_setup": 0.03052784502506256, - "save_results": 0.00135330599732697 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.085123S", + "compute_time_sec": 8.085123, + "compute_times": { + "total": 8.09137938497588, + "queued": 48.713112, + "clean_up": 0.007791096810251474, + "create_cpp": 0.044438749086111784, + "file_setup": 0.024869628716260195, + "compile_cpp": 4.385270964819938, + "create_r1cs": 0.013867777306586504, + "save_results": 0.002616934012621641, + "get_r1cs_info": 0.00037747714668512344, + "groth16_setup": 1.2033112640492618, + "export_verification_key": 1.1794444089755416, + "download_trusted_setup_file": 0.0012541408650577068, + "solidity_contract_generation": 1.2276925309561193 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "fb073120-78d2-492f-bcf5-ac5eb7a0905c", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:14:33.547Z", - "perform_verify": false, + "circuit_id": "1d731595-c5f5-45c2-8c8a-74da993e6e82", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.698Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.113940S", - "compute_time_sec": 0.11394, - "compute_times": { - "prove": 0.08348662802018225, - "total": 0.12036114698275924, - "queued": 0.231884, - "clean_up": 0.00535669201053679, - "file_setup": 0.029328602133318782, - "save_results": 0.001801566919311881 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.356818S", + "compute_time_sec": 9.356818, + "compute_times": { + "total": 9.365758311003447, + "queued": 40.166302, + "clean_up": 0.012013569474220276, + "create_cpp": 0.05509437248110771, + "file_setup": 0.04398589953780174, + "compile_cpp": 4.733264245092869, + "create_r1cs": 0.03983578085899353, + "save_results": 0.0039914920926094055, + "get_r1cs_info": 0.0008755624294281006, + "groth16_setup": 1.5458043776452541, + "export_verification_key": 1.5154130905866623, + "download_trusted_setup_file": 0.0033237673342227936, + "solidity_contract_generation": 1.4115587584674358 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "402b7a15-44e5-4ce7-a9a8-d0777b96bdbf", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:40.710Z", - "perform_verify": false, + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.637Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.108535S", - "compute_time_sec": 0.108535, - "compute_times": { - "prove": 0.07331131701357663, - "total": 0.11277111305389553, - "queued": 0.17423, - "clean_up": 0.005777769023552537, - "file_setup": 0.031883755000308156, - "save_results": 0.0014830770669505 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.094395S", + "compute_time_sec": 8.094395, + "compute_times": { + "total": 8.100875509902835, + "queued": 37.935772, + "clean_up": 0.04136878298595548, + "create_cpp": 0.04349753214046359, + "file_setup": 0.026510909665375948, + "compile_cpp": 4.416802708990872, + "create_r1cs": 0.014031601138412952, + "save_results": 0.00268988823518157, + "get_r1cs_info": 0.0004020840860903263, + "groth16_setup": 1.2034661802463233, + "export_verification_key": 1.1931509468704462, + "download_trusted_setup_file": 0.0012740916572511196, + "solidity_contract_generation": 1.1572514278814197 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7f1625a5-5413-46c0-9601-135199d90909", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:39.000Z", - "perform_verify": false, + "circuit_id": "ca8fd41d-f06c-44a6-a107-14aa6dd9ecf7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.599Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.112695S", - "compute_time_sec": 0.112695, - "compute_times": { - "prove": 0.07820799702312797, - "total": 0.1174575500190258, - "queued": 0.223544, - "clean_up": 0.004070866969414055, - "file_setup": 0.032682382967323065, - "save_results": 0.0021686870604753494 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.071530S", + "compute_time_sec": 9.07153, + "compute_times": { + "total": 9.079165190458298, + "queued": 30.148027, + "clean_up": 0.0193355530500412, + "create_cpp": 0.05889047309756279, + "file_setup": 0.0320410318672657, + "compile_cpp": 4.729198798537254, + "create_r1cs": 0.026881281286478043, + "save_results": 0.005445607006549835, + "get_r1cs_info": 0.0007509514689445496, + "groth16_setup": 1.433782622218132, + "export_verification_key": 1.3903879560530186, + "download_trusted_setup_file": 0.0030304640531539917, + "solidity_contract_generation": 1.3787178322672844 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "1a103357-d1f8-44f1-bdb8-2cec68dcbc53", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:37.260Z", - "perform_verify": false, + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.488Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.107491S", - "compute_time_sec": 0.107491, - "compute_times": { - "prove": 0.07868116302415729, - "total": 0.11423451104201376, - "queued": 0.210564, - "clean_up": 0.007490226998925209, - "file_setup": 0.025845387019217014, - "save_results": 0.0018579070456326008 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.343632S", + "compute_time_sec": 8.343632, + "compute_times": { + "total": 8.35001930873841, + "queued": 29.144473, + "clean_up": 0.007048632018268108, + "create_cpp": 0.04429081408306956, + "file_setup": 0.026038472075015306, + "compile_cpp": 4.664958589244634, + "create_r1cs": 0.01457917457446456, + "save_results": 0.0031841211020946503, + "get_r1cs_info": 0.0003963680937886238, + "groth16_setup": 1.1928057740442455, + "export_verification_key": 1.196701374836266, + "download_trusted_setup_file": 0.0012594950385391712, + "solidity_contract_generation": 1.198316270019859 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "8374fe83-dcb0-4727-ab1a-2b22e1076174", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:35.691Z", - "perform_verify": false, + "circuit_id": "36805997-5a18-443e-9257-c7c755763dde", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.365Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.104645S", - "compute_time_sec": 0.104645, - "compute_times": { - "prove": 0.07283521501813084, - "total": 0.11231476906687021, - "queued": 0.168258, - "clean_up": 0.0050119999796152115, - "file_setup": 0.032517564948648214, - "save_results": 0.0015029560308903456 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.160020S", + "compute_time_sec": 9.16002, + "compute_times": { + "total": 9.166912835091352, + "queued": 21.165635, + "clean_up": 0.01679837331175804, + "create_cpp": 0.06060396507382393, + "file_setup": 0.03646278753876686, + "compile_cpp": 4.784000992774963, + "create_r1cs": 0.027241531759500504, + "save_results": 0.004248317331075668, + "get_r1cs_info": 0.0007042139768600464, + "groth16_setup": 1.4266419857740402, + "export_verification_key": 1.362672533839941, + "download_trusted_setup_file": 0.003010723739862442, + "solidity_contract_generation": 1.4438144154846668 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0ef1d86a-893a-4f7c-b9cc-6cdf807912e8", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:34.182Z", - "perform_verify": false, + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.359Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.101546S", - "compute_time_sec": 0.101546, - "compute_times": { - "prove": 0.07385058398358524, - "total": 0.10622004000470042, - "queued": 0.214401, - "clean_up": 0.003409723984077573, - "file_setup": 0.02646243793424219, - "save_results": 0.0021518670255318284 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.236905S", + "compute_time_sec": 8.236905, + "compute_times": { + "total": 8.242964311037213, + "queued": 19.712185, + "clean_up": 0.012127489317208529, + "create_cpp": 0.04317784681916237, + "file_setup": 0.032348338048905134, + "compile_cpp": 4.581387536134571, + "create_r1cs": 0.013678629882633686, + "save_results": 0.003174391109496355, + "get_r1cs_info": 0.00039021391421556473, + "groth16_setup": 1.1700614751316607, + "export_verification_key": 1.1969006708823144, + "download_trusted_setup_file": 0.00127820810303092, + "solidity_contract_generation": 1.1880456837825477 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c06e758b-698b-4bac-b75c-acb2b8fff91a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:32.679Z", - "perform_verify": false, + "circuit_id": "54ea40a5-484a-4f75-b90b-801c2029e5ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.302Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122334S", - "compute_time_sec": 0.122334, - "compute_times": { - "prove": 0.0876556090079248, - "total": 0.1313655290286988, - "queued": 0.230724, - "clean_up": 0.005932067055255175, - "file_setup": 0.03352665202692151, - "save_results": 0.0016483389772474766 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.349751S", + "compute_time_sec": 9.349751, + "compute_times": { + "total": 9.35859140008688, + "queued": 10.786668, + "clean_up": 0.04139033704996109, + "create_cpp": 0.058571700006723404, + "file_setup": 0.04377163201570511, + "compile_cpp": 4.7014184929430485, + "create_r1cs": 0.030283328145742416, + "save_results": 0.0046038031578063965, + "get_r1cs_info": 0.0007254183292388916, + "groth16_setup": 1.5263193063437939, + "export_verification_key": 1.5056473389267921, + "download_trusted_setup_file": 0.0030246786773204803, + "solidity_contract_generation": 1.442214511334896 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "8fb28c55-98f5-4a0b-847a-7b3f4bbadf78", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:31.191Z", - "perform_verify": false, + "circuit_id": "ac715658-6a8a-4367-bd75-0a424786e519", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.239Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.093953S", - "compute_time_sec": 0.093953, - "compute_times": { - "prove": 0.07118937093764544, - "total": 0.09999781497754157, - "queued": 0.582409, - "clean_up": 0.0037945699878036976, - "file_setup": 0.023232951993122697, - "save_results": 0.0014598669949918985 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.180312S", + "compute_time_sec": 8.180312, + "compute_times": { + "total": 8.186462632846087, + "queued": 10.326997, + "clean_up": 0.045027026906609535, + "create_cpp": 0.0433749882504344, + "file_setup": 0.03141862200573087, + "compile_cpp": 4.435339014977217, + "create_r1cs": 0.013826461043208838, + "save_results": 0.0033798501826822758, + "get_r1cs_info": 0.00041944393888115883, + "groth16_setup": 1.224611712154001, + "export_verification_key": 1.2071821950376034, + "download_trusted_setup_file": 0.0012525338679552078, + "solidity_contract_generation": 1.1802184996195138 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "39687e5a-e429-4b03-9ea0-7b71119c4a2f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:29.642Z", - "perform_verify": false, + "circuit_id": "603b8de8-6f35-4ec2-8d14-ef2aa169d207", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.217Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.183122S", - "compute_time_sec": 0.183122, - "compute_times": { - "prove": 0.1029208250110969, - "total": 0.18900623894296587, - "queued": 0.193648, - "clean_up": 0.02979127294383943, - "file_setup": 0.051961387041956186, - "save_results": 0.0037548099644482136 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.303741S", + "compute_time_sec": 9.303741, + "compute_times": { + "total": 9.31076579540968, + "queued": 0.510621, + "clean_up": 0.061482787132263184, + "create_cpp": 0.05447719618678093, + "file_setup": 0.031512293964624405, + "compile_cpp": 4.7843478843569756, + "create_r1cs": 0.025975871831178665, + "save_results": 0.03923590108752251, + "get_r1cs_info": 0.0007070451974868774, + "groth16_setup": 1.4105089977383614, + "export_verification_key": 1.4856252260506153, + "download_trusted_setup_file": 0.0032596364617347717, + "solidity_contract_generation": 1.4127150252461433 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7bd128ab-695d-4b83-8a8c-a11d733fdae0", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:27.981Z", - "perform_verify": false, + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.172Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.202523S", - "compute_time_sec": 0.202523, - "compute_times": { - "prove": 0.11456152913160622, - "total": 0.20906984992325306, - "queued": 0.208536, - "clean_up": 0.03386854100972414, - "file_setup": 0.05412821704521775, - "save_results": 0.006115625845268369 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.028980S", + "compute_time_sec": 8.02898, + "compute_times": { + "total": 8.035278150811791, + "queued": 0.908491, + "clean_up": 0.01962502161040902, + "create_cpp": 0.04339481005445123, + "file_setup": 0.032647415064275265, + "compile_cpp": 4.4359240545891225, + "create_r1cs": 0.015615029260516167, + "save_results": 0.005886566359549761, + "get_r1cs_info": 0.000441152136772871, + "groth16_setup": 1.1131845200434327, + "export_verification_key": 1.1628971919417381, + "download_trusted_setup_file": 0.0014497428201138973, + "solidity_contract_generation": 1.2036623698659241 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0ce398fd-32c7-458e-8f23-e563e09e44c6", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:13:26.328Z", - "perform_verify": false, + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:05.009Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135499S", - "compute_time_sec": 0.135499, - "compute_times": { - "prove": 0.07793003402184695, - "total": 0.14023755700327456, - "queued": 0.175288, - "clean_up": 0.0037696800427511334, - "file_setup": 0.0566352519672364, - "save_results": 0.0015117370057851076 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.126213S", + "compute_time_sec": 8.126213, + "compute_times": { + "total": 8.132407675962895, + "queued": 41.945655, + "clean_up": 0.007584667764604092, + "create_cpp": 0.042764997109770775, + "file_setup": 0.026120834983885288, + "compile_cpp": 4.428840433247387, + "create_r1cs": 0.014064936898648739, + "save_results": 0.002591380849480629, + "get_r1cs_info": 0.0004473528824746609, + "groth16_setup": 1.2245488930493593, + "export_verification_key": 1.2121927668340504, + "download_trusted_setup_file": 0.0014441171661019325, + "solidity_contract_generation": 1.1712806271389127 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c35d2701-2005-41fe-b735-71151da1ce6e", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:54.687Z", - "perform_verify": false, + "circuit_id": "5af7d3a0-7d37-40fd-ae43-f0c0534c2abb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.989Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.135335S", - "compute_time_sec": 0.135335, - "compute_times": { - "prove": 0.07691952004097402, - "total": 0.14003189594950527, - "queued": 0.198802, - "clean_up": 0.00467289995867759, - "file_setup": 0.05562937702052295, - "save_results": 0.002484833006747067 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.121498S", + "compute_time_sec": 10.121498, + "compute_times": { + "total": 10.192187146283686, + "queued": 32.362941, + "clean_up": 0.007370655424892902, + "create_cpp": 0.05348123889416456, + "file_setup": 0.09328565560281277, + "compile_cpp": 4.610476811416447, + "create_r1cs": 0.013877511024475098, + "save_results": 0.008401993662118912, + "get_r1cs_info": 0.00035433657467365265, + "groth16_setup": 1.2056698258966208, + "export_verification_key": 1.309598419815302, + "download_trusted_setup_file": 1.6407124130055308, + "solidity_contract_generation": 1.2472198996692896 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a795a258-ff0c-4aff-b650-86d5f6fa03d7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:52.059Z", - "perform_verify": false, + "circuit_id": "16c04ef9-9cca-4ec8-9970-4f731c4c14b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.951Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.138890S", - "compute_time_sec": 0.13889, - "compute_times": { - "prove": 0.07692233612760901, - "total": 0.14497115998528898, - "queued": 0.215231, - "clean_up": 0.021985383005812764, - "file_setup": 0.044280862901359797, - "save_results": 0.0014082398265600204 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M12.708449S", + "compute_time_sec": 12.708449, + "compute_times": { + "total": 12.780335546471179, + "queued": 31.606686, + "clean_up": 0.00712052546441555, + "create_cpp": 0.05351158231496811, + "file_setup": 0.10181075800210238, + "compile_cpp": 4.557366239838302, + "create_r1cs": 0.014364761300384998, + "save_results": 0.006636504083871841, + "get_r1cs_info": 0.0003865128383040428, + "groth16_setup": 1.2839274490252137, + "export_verification_key": 1.1864824369549751, + "download_trusted_setup_file": 4.378982369787991, + "solidity_contract_generation": 1.1881536152213812 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "b16f0f8f-e332-4142-991f-67561c5254bd", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:49.557Z", - "perform_verify": false, + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.838Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.106026S", - "compute_time_sec": 0.106026, - "compute_times": { - "prove": 0.07399564690422267, - "total": 0.11187266802880913, - "queued": 0.162814, - "clean_up": 0.0033016889356076717, - "file_setup": 0.03273502003867179, - "save_results": 0.0014213580871000886 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M07.949829S", + "compute_time_sec": 7.949829, + "compute_times": { + "total": 7.955922733992338, + "queued": 31.787652, + "clean_up": 0.007068471051752567, + "create_cpp": 0.04410888580605388, + "file_setup": 0.03530481783673167, + "compile_cpp": 4.332128805108368, + "create_r1cs": 0.013425733894109726, + "save_results": 0.002837574575096369, + "get_r1cs_info": 0.0003893752582371235, + "groth16_setup": 1.161221300251782, + "export_verification_key": 1.1779537368565798, + "download_trusted_setup_file": 0.0012618638575077057, + "solidity_contract_generation": 1.1798813971690834 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "cff73827-15b6-4ccf-b0d2-d274a70cd5b7", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:47.111Z", - "perform_verify": false, + "circuit_id": "95af3cd1-0e03-4eaa-8c53-9ebfa33bf8a0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.781Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.122971S", - "compute_time_sec": 0.122971, - "compute_times": { - "prove": 0.07989700802136213, - "total": 0.12778416695073247, - "queued": 0.231593, - "clean_up": 0.004338543978519738, - "file_setup": 0.04149695695377886, - "save_results": 0.001680911984294653 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.360336S", + "compute_time_sec": 9.360336, + "compute_times": { + "total": 9.367515902966261, + "queued": 31.558274, + "clean_up": 0.010363537818193436, + "create_cpp": 0.05697645619511604, + "file_setup": 0.03041290119290352, + "compile_cpp": 4.814989410340786, + "create_r1cs": 0.027097947895526886, + "save_results": 0.004793565720319748, + "get_r1cs_info": 0.0005631856620311737, + "groth16_setup": 1.5725701451301575, + "export_verification_key": 1.4042510092258453, + "download_trusted_setup_file": 0.001781608909368515, + "solidity_contract_generation": 1.4431796036660671 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "46116195-6956-4c37-8ce9-be8fca3dc55f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:44.587Z", - "perform_verify": false, + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.694Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.128014S", - "compute_time_sec": 0.128014, - "compute_times": { - "prove": 0.08263401291333139, - "total": 0.13507452490739524, - "queued": 0.233086, - "clean_up": 0.008105588844045997, - "file_setup": 0.04211885016411543, - "save_results": 0.0017826261464506388 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.063800S", + "compute_time_sec": 8.0638, + "compute_times": { + "total": 8.0698571940884, + "queued": 23.279182, + "clean_up": 0.041817264165729284, + "create_cpp": 0.042918319813907146, + "file_setup": 0.027425960171967745, + "compile_cpp": 4.428783264011145, + "create_r1cs": 0.013796785846352577, + "save_results": 0.003706465009599924, + "get_r1cs_info": 0.00041563110426068306, + "groth16_setup": 1.1387999886646867, + "export_verification_key": 1.1761264819651842, + "download_trusted_setup_file": 0.0012755142524838448, + "solidity_contract_generation": 1.194381969049573 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "d47b7b88-c8ad-408e-9dd7-add420cbbc2f", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:32.787Z", - "perform_verify": false, + "circuit_id": "8787776b-1d4e-4f64-b163-afbb70e6b767", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.635Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.164615S", - "compute_time_sec": 0.164615, - "compute_times": { - "prove": 0.11053177795838565, - "total": 0.17059254297055304, - "queued": 0.171935, - "clean_up": 0.004258243017829955, - "file_setup": 0.053978779003955424, - "save_results": 0.00145844800863415 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.481420S", + "compute_time_sec": 9.48142, + "compute_times": { + "total": 9.488476019352674, + "queued": 21.172934, + "clean_up": 0.05146057903766632, + "create_cpp": 0.060663893818855286, + "file_setup": 0.04430835321545601, + "compile_cpp": 4.838594596832991, + "create_r1cs": 0.020446740090847015, + "save_results": 0.004841934889554977, + "get_r1cs_info": 0.0005115754902362823, + "groth16_setup": 1.4131469950079918, + "export_verification_key": 1.5755452923476696, + "download_trusted_setup_file": 0.0021246708929538727, + "solidity_contract_generation": 1.4762532263994217 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "97e6c8dd-17ba-4db8-bf87-41e4445b54ec", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:29.506Z", - "perform_verify": false, + "circuit_id": "48bb95d9-c534-4fe7-b124-425742bc9921", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.594Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.289266S", - "compute_time_sec": 0.289266, - "compute_times": { - "prove": 0.08642632805276662, - "total": 0.29704258195124567, - "queued": 0.183331, - "clean_up": 0.15804533392656595, - "file_setup": 0.05037923192139715, - "save_results": 0.0017682620091363788 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.162530S", + "compute_time_sec": 8.16253, + "compute_times": { + "total": 8.168789067771286, + "queued": 12.596802, + "clean_up": 0.03938836511224508, + "create_cpp": 0.044962076004594564, + "file_setup": 0.03627823106944561, + "compile_cpp": 4.3931147661060095, + "create_r1cs": 0.013748648576438427, + "save_results": 0.0029903058893978596, + "get_r1cs_info": 0.0004170541651546955, + "groth16_setup": 1.2192720943130553, + "export_verification_key": 1.1968067497946322, + "download_trusted_setup_file": 0.001256425864994526, + "solidity_contract_generation": 1.2201471300795674 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "82db49f2-2b8a-4429-8cb9-d5986f1b4a25", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:55:26.174Z", - "perform_verify": false, + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.539Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.178451S", - "compute_time_sec": 0.178451, - "compute_times": { - "prove": 0.12590954499319196, - "total": 0.18570560100488365, - "queued": 0.238111, - "clean_up": 0.02239793981425464, - "file_setup": 0.03476291592232883, - "save_results": 0.002222753129899502 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.395259S", + "compute_time_sec": 9.395259, + "compute_times": { + "total": 9.40173276886344, + "queued": 10.832412, + "clean_up": 0.036699261516332626, + "create_cpp": 0.055065736174583435, + "file_setup": 0.03588276728987694, + "compile_cpp": 4.756860479712486, + "create_r1cs": 0.02753232792019844, + "save_results": 0.004547979682683945, + "get_r1cs_info": 0.0007234290242195129, + "groth16_setup": 1.5721957311034203, + "export_verification_key": 1.4162963964045048, + "download_trusted_setup_file": 0.003074031323194504, + "solidity_contract_generation": 1.4920402988791466 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "373a76a0-2ea5-483b-92e3-e878100559ef", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T21:10:50.403Z", - "perform_verify": false, + "circuit_id": "36dd6025-4eb3-4d05-8f90-f2c3f3a7a535", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.447Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150832S", - "compute_time_sec": 0.150832, - "compute_times": { - "prove": 0.11755112698301673, - "total": 0.2853551240405068, - "queued": 0.335902, - "clean_up": 0.007708279998041689, - "file_setup": 0.029812542023137212, - "save_results": 0.0016887020319700241 - }, - "file_size": 532, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.285888S", + "compute_time_sec": 9.285888, + "compute_times": { + "total": 9.293334130197763, + "queued": 0.553921, + "clean_up": 0.14576196298003197, + "create_cpp": 0.0688214860856533, + "file_setup": 0.03694232553243637, + "compile_cpp": 4.733128450810909, + "create_r1cs": 0.026510365307331085, + "save_results": 0.015769515186548233, + "get_r1cs_info": 0.0007566735148429871, + "groth16_setup": 1.4665097445249557, + "export_verification_key": 1.3843789175152779, + "download_trusted_setup_file": 0.00330163910984993, + "solidity_contract_generation": 1.4105877801775932 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "33b8db46-cf79-4170-8cfe-77f65008a221", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", - "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:47.502Z", - "perform_verify": false, + "circuit_id": "5a788aec-2f48-426a-805f-cea70c7b517e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.422Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.078444S", - "compute_time_sec": 0.078444, - "compute_times": { - "prove": 0.05746597901452333, - "total": 0.08412136998958886, - "queued": 0.181406, - "clean_up": 0.0030666429083794355, - "file_setup": 0.021971813053824008, - "save_results": 0.0012382810236886144 - }, - "file_size": 451, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.132105S", + "compute_time_sec": 8.132105, + "compute_times": { + "total": 8.138365669641644, + "queued": 2.064952, + "clean_up": 0.04502389393746853, + "create_cpp": 0.044666612055152655, + "file_setup": 0.030826924834400415, + "compile_cpp": 4.406796374358237, + "create_r1cs": 0.014510322827845812, + "save_results": 0.006469338666647673, + "get_r1cs_info": 0.00039179716259241104, + "groth16_setup": 1.2137043341062963, + "export_verification_key": 1.1969101303257048, + "download_trusted_setup_file": 0.0014359885826706886, + "solidity_contract_generation": 1.1770805940032005 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e056f82b-182c-42f0-8f84-ce25ba9c76b3", - "circuit_name": "my-circuit", - "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", - "circuit_type": "gnark", - "date_created": "2024-02-28T18:02:39.474Z", - "perform_verify": false, - "status": "Failed", + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.705Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.085495S", - "compute_time_sec": 0.085495, - "compute_times": { - "prove": 0.05661044199950993, - "total": 0.08519881102256477, - "queued": 0.2228, - "file_setup": 0.028238292085006833 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M11.396318S", + "compute_time_sec": 11.396318, + "compute_times": { + "total": 11.470033745281398, + "queued": 31.223842, + "clean_up": 0.00701205525547266, + "create_cpp": 0.05382066033780575, + "file_setup": 1.4752762140706182, + "compile_cpp": 4.674427920952439, + "create_r1cs": 0.014601892791688442, + "save_results": 0.006885666400194168, + "get_r1cs_info": 0.000477752648293972, + "groth16_setup": 1.1715044034644961, + "export_verification_key": 1.2684592045843601, + "download_trusted_setup_file": 1.6390948193147779, + "solidity_contract_generation": 1.1555112060159445 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/prover_verifier -a 1*tachyonic:6 prove /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/r1cs /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proving_key /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/proof /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/e056f82b-182c-42f0-8f84-ce25ba9c76b3_1709143359696747/public stdout: {\"level\":\"info\",\"witness_gen_time\":0.003629833}\n stderr: {\"level\":\"error\",\"error\":\"constraint #0 is not satisfied: 1 ⋅ 1 != 2\",\"message\":\"Prove failed\"}\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6a2a364b-74d4-471c-88ac-7d767a00f914", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_id": "b43215d9-9873-4780-852e-7061f688bc52", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-27T02:04:03.037Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:46:10.562Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.039789S", - "compute_time_sec": 0.039789, - "compute_times": { - "total": 0.04271465499186888, - "queued": 0.225284, - "file_setup": 0.01975348498672247, - "generate_witness_c": 0.022592113993596286 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.443735S", + "compute_time_sec": 9.443735, + "compute_times": { + "total": 9.450845569372177, + "queued": 29.745647, + "clean_up": 0.02927279844880104, + "create_cpp": 0.05816115811467171, + "file_setup": 0.15777237713336945, + "compile_cpp": 4.784576293081045, + "create_r1cs": 0.028225980699062347, + "save_results": 0.004189185798168182, + "get_r1cs_info": 0.0007221847772598267, + "groth16_setup": 1.4950053170323372, + "export_verification_key": 1.4608619846403599, + "download_trusted_setup_file": 0.0030181407928466797, + "solidity_contract_generation": 1.428341083228588 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6a2a364b-74d4-471c-88ac-7d767a00f914_1708999443262575/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "3964a0d1-edf8-4d67-9838-7de91a06d609", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-27T02:02:47.565Z", - "perform_verify": false, - "status": "Failed", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.083115S", - "compute_time_sec": 0.083115, - "compute_times": { - "total": 0.08423641003901139, - "queued": 0.18931, - "file_setup": 0.047118005983065814, - "generate_witness_c": 0.03662721102591604 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "date_created": "2024-03-14T19:46:10.557Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M10.678823S", + "compute_time_sec": 10.678823, + "compute_times": { + "total": 10.751442176289856, + "queued": 28.193622, + "clean_up": 0.007087317295372486, + "create_cpp": 0.0551311019808054, + "file_setup": 0.47634816635400057, + "compile_cpp": 4.4943006709218025, + "create_r1cs": 0.015030437149107456, + "save_results": 0.006794212386012077, + "get_r1cs_info": 0.0004126187413930893, + "groth16_setup": 1.2948075635358691, + "export_verification_key": 1.2821088591590524, + "download_trusted_setup_file": 1.9244082383811474, + "solidity_contract_generation": 1.1933906180784106 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-wlhqv/proofs/3964a0d1-edf8-4d67-9838-7de91a06d609_1708999367754120/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "5f1f2b63-9bbd-4e72-903c-88ccd2dd1566", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_id": "065e17c3-c2f4-43dd-bfb4-25d47eb233c3", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-27T02:02:37.757Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:46:10.538Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.060050S", - "compute_time_sec": 0.06005, - "compute_times": { - "total": 0.12728848890401423, - "queued": 0.250848, - "file_setup": 0.09145022416487336, - "generate_witness_c": 0.03525270987302065 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.414766S", + "compute_time_sec": 8.414766, + "compute_times": { + "total": 8.420880552381277, + "queued": 29.111535, + "clean_up": 0.007978992071002722, + "create_cpp": 0.04333283565938473, + "file_setup": 0.5263300491496921, + "compile_cpp": 4.3615459580905735, + "create_r1cs": 0.01324701588600874, + "save_results": 0.00261990400031209, + "get_r1cs_info": 0.000387819018214941, + "groth16_setup": 1.1325635826215148, + "export_verification_key": 1.1708158743567765, + "download_trusted_setup_file": 0.0012339763343334198, + "solidity_contract_generation": 1.1604830459691584 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-xdsfm/proofs/5f1f2b63-9bbd-4e72-903c-88ccd2dd1566_1708999358007559/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "6d60b5be-96c8-4520-8c67-5b846b7e0155", - "circuit_name": "hash-checker", - "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_id": "781e94db-ed81-4fd0-9343-6c793677ff70", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-27T02:00:37.596Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:46:08.499Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.056679S", - "compute_time_sec": 0.056679, - "compute_times": { - "total": 0.12009319197386503, - "queued": 0.559087, - "file_setup": 0.08946515002753586, - "generate_witness_c": 0.030112746986560524 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.358733S", + "compute_time_sec": 9.358733, + "compute_times": { + "total": 9.365748152136803, + "queued": 21.408702, + "clean_up": 0.011520247906446457, + "create_cpp": 0.06019660457968712, + "file_setup": 0.10577539727091789, + "compile_cpp": 4.703875727951527, + "create_r1cs": 0.02623022347688675, + "save_results": 0.004578210413455963, + "get_r1cs_info": 0.0007093213498592377, + "groth16_setup": 1.4257720410823822, + "export_verification_key": 1.4767277836799622, + "download_trusted_setup_file": 0.0030381716787815094, + "solidity_contract_generation": 1.546669363975525 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/circuit /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/input.json /forge/data/pods/zk-workers-prove-6b8fbf48c7-l8gp4/proofs/6d60b5be-96c8-4520-8c67-5b846b7e0155_1708999238155367/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "0dc773ef-cd57-4d3c-8761-0eb6bd2a0dfc", - "circuit_name": "hash-checker", - "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_id": "65769b35-c9e4-4af7-8c82-06905a3ea64a", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-16T16:46:40.976Z", - "perform_verify": false, + "date_created": "2024-03-14T19:46:08.485Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.341615S", - "compute_time_sec": 5.341615, - "compute_times": { - "prove": 5.2774561159312725, - "total": 5.348625190556049, - "queued": 0.208614, - "clean_up": 0.005355444736778736, - "file_setup": 0.0357542559504509, - "save_results": 0.0016373288817703724, - "generate_witness_c": 0.02802356705069542 - }, - "file_size": 789, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.123128S", + "compute_time_sec": 8.123128, + "compute_times": { + "total": 8.129186652600765, + "queued": 21.355433, + "clean_up": 0.007306267973035574, + "create_cpp": 0.043123030103743076, + "file_setup": 0.10240558395162225, + "compile_cpp": 4.392980380915105, + "create_r1cs": 0.013700432144105434, + "save_results": 0.002628076821565628, + "get_r1cs_info": 0.0003788350149989128, + "groth16_setup": 1.203370461706072, + "export_verification_key": 1.19163934327662, + "download_trusted_setup_file": 0.001252820249646902, + "solidity_contract_generation": 1.1700899167917669 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "42d61e2b-df5c-4e53-9d43-bfa14a89cb68", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T19:09:39.253Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:46:08.322Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.042131S", - "compute_time_sec": 0.042131, - "compute_times": { - "total": 0.04482376802479848, - "queued": 0.207543, - "file_setup": 0.023827903962228447, - "generate_witness_c": 0.020594758039806038 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.135577S", + "compute_time_sec": 8.135577, + "compute_times": { + "total": 8.14212649827823, + "queued": 11.618563, + "clean_up": 0.008815570268779993, + "create_cpp": 0.04607208725064993, + "file_setup": 0.06307885982096195, + "compile_cpp": 4.452890960033983, + "create_r1cs": 0.01411517197266221, + "save_results": 0.0035643167793750763, + "get_r1cs_info": 0.0005286457017064095, + "groth16_setup": 1.2346330340951681, + "export_verification_key": 1.1526859607547522, + "download_trusted_setup_file": 0.0017918283119797707, + "solidity_contract_generation": 1.163586282171309 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/42d61e2b-df5c-4e53-9d43-bfa14a89cb68_1708024179460880/witness.wtns stdout: Failed assert in template/function HashChecker line 37. Followed trace of components: main\n stderr: circuit: calculate_hash.cpp:356090: void HashChecker_75_run(uint, Circom_CalcWit*): Assertion `Fr_isTrue(&expaux[0])' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "bca1297f-4637-49d1-b034-a1102b9afc08", - "circuit_name": "hash-checker", - "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T19:08:49.137Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:46:08.166Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055379S", - "compute_time_sec": 0.055379, - "compute_times": { - "total": 0.0464545710128732, - "queued": 0.187821, - "file_setup": 0.023604326997883618, - "generate_witness_c": 0.022402279020752758 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.112566S", + "compute_time_sec": 10.112566, + "compute_times": { + "total": 10.12166041508317, + "queued": 10.601842, + "clean_up": 0.025991924107074738, + "create_cpp": 0.059982024133205414, + "file_setup": 0.8414755500853062, + "compile_cpp": 4.779291275888681, + "create_r1cs": 0.03729795664548874, + "save_results": 0.004680760204792023, + "get_r1cs_info": 0.0004007294774055481, + "groth16_setup": 1.4218801073729992, + "export_verification_key": 1.5054523050785065, + "download_trusted_setup_file": 0.0012249797582626343, + "solidity_contract_generation": 1.4434016197919846 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/circuit /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/input.json /forge/data/pods/zk-workers-prove-576dd576d8-jc6st/proofs/bca1297f-4637-49d1-b034-a1102b9afc08_1708024129325011/witness.wtns stdout: stderr: Not all inputs have been set. Only 4 out of 5\ncircuit: main.cpp:268: int main(int, char**): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "8c457574-99cd-4042-a598-0514ee83ea28", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_id": "fb5b8145-6c9c-47cf-b43d-a0d0a8d9033e", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:53:18.626Z", - "perform_verify": false, + "date_created": "2024-03-14T19:46:07.863Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.674886S", - "compute_time_sec": 1.674886, - "compute_times": { - "prove": 1.6106855850666761, - "total": 1.682134603150189, - "queued": 0.21114, - "clean_up": 0.015362400561571121, - "file_setup": 0.038011837750673294, - "save_results": 0.0016225874423980713, - "generate_witness_c": 0.016064194962382317 - }, - "file_size": 713, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.798840S", + "compute_time_sec": 9.79884, + "compute_times": { + "total": 9.805086587090045, + "queued": 0.794609, + "clean_up": 0.017840934917330742, + "create_cpp": 0.04466830240562558, + "file_setup": 0.03632312174886465, + "compile_cpp": 4.46386236185208, + "create_r1cs": 0.013613509014248848, + "save_results": 0.0058236150071024895, + "get_r1cs_info": 0.00040324777364730835, + "groth16_setup": 1.1662053586915135, + "export_verification_key": 1.1957588559016585, + "download_trusted_setup_file": 1.6592066353186965, + "solidity_contract_generation": 1.2010036744177341 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "83d788d7-8aed-420f-89fa-1e840d505e03", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_id": "68d462ae-a06c-4a0c-a324-f277e9a295cb", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:49:33.830Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:46:07.851Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.049663S", - "compute_time_sec": 0.049663, - "compute_times": { - "total": 0.05284719355404377, - "queued": 0.217998, - "file_setup": 0.04036730155348778, - "generate_witness_c": 0.012098094448447227 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.286921S", + "compute_time_sec": 9.286921, + "compute_times": { + "total": 9.294204972684383, + "queued": 0.52687, + "clean_up": 0.037755388766527176, + "create_cpp": 0.05874794349074364, + "file_setup": 0.049215640872716904, + "compile_cpp": 4.828461483120918, + "create_r1cs": 0.027856364846229553, + "save_results": 0.0162334144115448, + "get_r1cs_info": 0.000544525682926178, + "groth16_setup": 1.4224261231720448, + "export_verification_key": 1.4274491891264915, + "download_trusted_setup_file": 0.0022099651396274567, + "solidity_contract_generation": 1.422630164772272 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/83d788d7-8aed-420f-89fa-1e840d505e03_1708015774048061/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "002617a9-78ea-4bd8-92fc-54f9202d901b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:48:55.324Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:27.378Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.052811S", - "compute_time_sec": 0.052811, - "compute_times": { - "total": 0.05608381051570177, - "queued": 0.226522, - "file_setup": 0.03871022444218397, - "generate_witness_c": 0.01696752943098545 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.414659S", + "compute_time_sec": 10.414659, + "compute_times": { + "total": 10.421586342155933, + "queued": 36.45805, + "clean_up": 1.018418900668621, + "create_cpp": 0.09886237978935242, + "file_setup": 0.032557349652051926, + "compile_cpp": 4.994046054780483, + "create_r1cs": 0.023644402623176575, + "save_results": 0.004409823566675186, + "get_r1cs_info": 0.0003830455243587494, + "groth16_setup": 1.3954695612192154, + "export_verification_key": 1.3882874809205532, + "download_trusted_setup_file": 0.00124397873878479, + "solidity_contract_generation": 1.4636627808213234 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/002617a9-78ea-4bd8-92fc-54f9202d901b_1708015735550484/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7cd79408-c420-4654-8f83-5920cbd1f37c", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_id": "6281da35-04b6-4277-97cd-d8be981166cb", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:47:58.610Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:27.292Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.057437S", - "compute_time_sec": 0.057437, - "compute_times": { - "total": 0.05853192321956158, - "queued": 0.205516, - "file_setup": 0.043163422495126724, - "generate_witness_c": 0.014894634485244751 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M31.514723S", + "compute_time_sec": 31.514723, + "compute_times": { + "total": 31.587601722218096, + "queued": 34.955081, + "clean_up": 1.3367521865293384, + "create_cpp": 0.0535531360656023, + "file_setup": 0.09539989102631807, + "compile_cpp": 4.5397063894197345, + "create_r1cs": 0.015268071554601192, + "save_results": 0.007586983032524586, + "get_r1cs_info": 0.000410398468375206, + "groth16_setup": 1.1636218382045627, + "export_verification_key": 1.1995829408988357, + "download_trusted_setup_file": 21.99695172160864, + "solidity_contract_generation": 1.1782631734386086 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/7cd79408-c420-4654-8f83-5920cbd1f37c_1708015678815138/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "67d8a9df-158a-407d-a847-6ebac9878e0b", - "circuit_name": "semaphore", - "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_id": "f740324d-25e6-4bd5-85ba-18d206130979", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:47:01.336Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:27.196Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.055829S", - "compute_time_sec": 0.055829, - "compute_times": { - "total": 0.05997238401323557, - "queued": 0.250181, - "file_setup": 0.04254392720758915, - "generate_witness_c": 0.01698323991149664 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.494207S", + "compute_time_sec": 8.494207, + "compute_times": { + "total": 8.500656279735267, + "queued": 35.091963, + "clean_up": 0.12053109798580408, + "create_cpp": 0.045444861985743046, + "file_setup": 0.026300867088139057, + "compile_cpp": 4.599759000353515, + "create_r1cs": 0.01557931024581194, + "save_results": 0.006546936929225922, + "get_r1cs_info": 0.00045502185821533203, + "groth16_setup": 1.2972330059856176, + "export_verification_key": 1.164379082620144, + "download_trusted_setup_file": 0.0012656673789024353, + "solidity_contract_generation": 1.2227658918127418 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/67d8a9df-158a-407d-a847-6ebac9878e0b_1708015621586179/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "c56f36c9-2ab9-46c0-a7a3-29118401b2f2", - "circuit_name": "semaphore", - "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-15T16:45:59.082Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:27.185Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.074886S", - "compute_time_sec": 0.074886, - "compute_times": { - "total": 0.07638306729495525, - "queued": 0.222935, - "file_setup": 0.05688828695565462, - "generate_witness_c": 0.019095703959465027 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M14.092370S", + "compute_time_sec": 14.09237, + "compute_times": { + "total": 14.170980683527887, + "queued": 33.730977, + "clean_up": 0.6386476065963507, + "create_cpp": 0.05371746979653835, + "file_setup": 0.09453251957893372, + "compile_cpp": 4.719313859008253, + "create_r1cs": 0.014484315179288387, + "save_results": 0.007699191570281982, + "get_r1cs_info": 0.00042401719838380814, + "groth16_setup": 1.2005331106483936, + "export_verification_key": 1.176824883557856, + "download_trusted_setup_file": 5.055020797997713, + "solidity_contract_generation": 1.2048570234328508 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/circuit /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/input.json /forge/data/pods/zk-workers-prove-576dd576d8-h29hr/proofs/c56f36c9-2ab9-46c0-a7a3-29118401b2f2_1708015559305263/witness.wtns stdout: stderr: Signal not found\ncircuit: calcwit.cpp:60: uint Circom_CalcWit::getInputSignalHashPosition(u64): Assertion `false' failed.\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "a3376073-0ac0-44c6-8945-0f295f355e69", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-12T16:08:49.852Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:25.238Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.118463S", - "compute_time_sec": 0.118463, - "compute_times": { - "total": 0.11371562909334898, - "queued": 0.165321, - "file_setup": 0.02585006970912218, - "generate_witness_wasm": 0.08747230330482125 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M10.065712S", + "compute_time_sec": 10.065712, + "compute_times": { + "total": 10.072701625525951, + "queued": 27.478391, + "clean_up": 0.6220889613032341, + "create_cpp": 0.061540763825178146, + "file_setup": 0.04436195269227028, + "compile_cpp": 4.975892219692469, + "create_r1cs": 0.02939484640955925, + "save_results": 0.004608657211065292, + "get_r1cs_info": 0.0007254332304000854, + "groth16_setup": 1.4860176593065262, + "export_verification_key": 1.4028622955083847, + "download_trusted_setup_file": 0.0030446648597717285, + "solidity_contract_generation": 1.4413307309150696 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness.wtns stdout: stderr: /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167\n\t throw new Error(`Not all inputs have been set. Only ${input_counter} out of ${this.instance.exports.getInputSize()}`);\n\t ^\n\nError: Not all inputs have been set. Only 2 out of 44\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:167:12)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/witness_calculator.js:212:20)\n at /workspace/proofs/a3376073-0ac0-44c6-8945-0f295f355e69_1707754130017967/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "fe9c56e7-8ab4-48a8-ab5d-02faf9d304da", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_id": "5308d35f-7520-4fc4-8002-d12fb7d6c550", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-12T16:08:15.347Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:25.110Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.087104S", - "compute_time_sec": 0.087104, - "compute_times": { - "total": 0.08892976585775614, - "queued": 0.188521, - "file_setup": 0.02122315624728799, - "generate_witness_wasm": 0.06728191487491131 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.034036S", + "compute_time_sec": 9.034036, + "compute_times": { + "total": 9.041137759573758, + "queued": 22.546838, + "clean_up": 0.781280635856092, + "create_cpp": 0.04389587510377169, + "file_setup": 0.02839166857302189, + "compile_cpp": 4.609121230430901, + "create_r1cs": 0.014260401017963886, + "save_results": 0.002448432147502899, + "get_r1cs_info": 0.00035415682941675186, + "groth16_setup": 1.1984568303450942, + "export_verification_key": 1.1906320005655289, + "download_trusted_setup_file": 0.0012082979083061218, + "solidity_contract_generation": 1.1706976247951388 + }, + "file_size": 236700, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness.wtns stdout: stderr: /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal out\n\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/witness_calculator.js:212:20)\n at /workspace/proofs/fe9c56e7-8ab4-48a8-ab5d-02faf9d304da_1707754095535567/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "7db1624c-690f-40cb-b802-6b9f7bcdc88f", - "circuit_name": "semaphore", - "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_id": "8edd4c5c-3482-4dd0-8158-916fbf1ec8ba", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-12T16:07:32.862Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:25.009Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.629850S", - "compute_time_sec": 0.62985, - "compute_times": { - "total": 0.699215236119926, - "queued": 20.443074, - "file_setup": 0.08142021484673023, - "generate_witness_wasm": 0.6153158713132143 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M09.819879S", + "compute_time_sec": 9.819879, + "compute_times": { + "total": 9.826730519533157, + "queued": 16.821564, + "clean_up": 0.2898540087044239, + "create_cpp": 0.060190506279468536, + "file_setup": 0.03807961195707321, + "compile_cpp": 5.03364010155201, + "create_r1cs": 0.03027663379907608, + "save_results": 0.0042372532188892365, + "get_r1cs_info": 0.0007306970655918121, + "groth16_setup": 1.5062590315937996, + "export_verification_key": 1.459183730185032, + "download_trusted_setup_file": 0.0030453503131866455, + "solidity_contract_generation": 1.4005590714514256 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/input.json /forge/data/pods/zk-workers-prove-98b4597d6-rblns/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness.wtns stdout: stderr: /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149\n\t\tthrow new Error(`Too many values for input signal ${k}\\n`);\n\t\t ^\n\nError: Too many values for input signal identityTrapdoar\n\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:149:9\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/witness_calculator.js:212:20)\n at /workspace/proofs/7db1624c-690f-40cb-b802-6b9f7bcdc88f_1707754073302798/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "85186381-a7ee-4a9f-aecc-3d81da5acd6e", - "circuit_name": "hashchecker", - "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_id": "1e4069dc-4c01-4447-9db2-bad54289e388", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-11T19:51:56.269Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:24.828Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.556787S", - "compute_time_sec": 3.556787, - "compute_times": { - "total": 3.282685193931684, - "queued": 31.156839, - "file_setup": 0.9440451499540359, - "generate_witness_wasm": 2.1537286299280822 - }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.228127S", + "compute_time_sec": 8.228127, + "compute_times": { + "total": 8.235012276098132, + "queued": 11.71663, + "clean_up": 0.07664227951318026, + "create_cpp": 0.04467032477259636, + "file_setup": 0.026521790772676468, + "compile_cpp": 4.501883647404611, + "create_r1cs": 0.014303749427199364, + "save_results": 0.006712050177156925, + "get_r1cs_info": 0.00034636445343494415, + "groth16_setup": 1.1887650610879064, + "export_verification_key": 1.212520807981491, + "download_trusted_setup_file": 0.0012264503166079521, + "solidity_contract_generation": 1.1610937099903822 + }, + "file_size": 236699, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/input.json /forge/data/pods/zk-workers-prove-98b4597d6-hmj9h/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness.wtns stdout: stderr: /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/witness_calculator.js:212:20)\n at /workspace/proofs/85186381-a7ee-4a9f-aecc-3d81da5acd6e_1707681147242047/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "e91c3595-4764-440b-ac12-9fbeb586bc34", - "circuit_name": "hashchecker", - "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-11T19:35:59.958Z", - "perform_verify": false, + "date_created": "2024-03-14T19:12:24.757Z", + "num_proofs": 1, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.786155S", - "compute_time_sec": 5.786155, - "compute_times": { - "prove": 1.6357202199287713, - "total": 5.85425769793801, - "queued": 1.584852, - "clean_up": 0.9189370227977633, - "file_setup": 0.8701981450431049, - "save_results": 0.24538314412347972, - "generate_witness_wasm": 2.1234320180956274 - }, - "file_size": 712, - "proof_input": null, - "proof": null, - "public": null, + "compute_time": "P0DT00H00M08.778418S", + "compute_time_sec": 8.778418, + "compute_times": { + "total": 8.784422259777784, + "queued": 0.935423, + "clean_up": 0.5511938845738769, + "create_cpp": 0.04414993338286877, + "file_setup": 0.03435874357819557, + "compile_cpp": 4.559329419396818, + "create_r1cs": 0.013913013972342014, + "save_results": 0.007126575335860252, + "get_r1cs_info": 0.00034239422529935837, + "groth16_setup": 1.210776842199266, + "export_verification_key": 1.1730632856488228, + "download_trusted_setup_file": 0.0014064284041523933, + "solidity_contract_generation": 1.1881988616660237 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "proof_id": "21749dcd-01a4-43ed-92cd-5c0301c5bd34", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_id": "fc7d7c8f-dcf4-44f5-8477-c97cd73506f3", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-02-11T19:34:56.907Z", - "perform_verify": false, - "status": "Failed", + "date_created": "2024-03-14T19:12:24.672Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.387894S", - "compute_time_sec": 2.387894, + "compute_time": "P0DT00H00M10.321396S", + "compute_time_sec": 10.321396, + "compute_times": { + "total": 10.328352369368076, + "queued": 5.769197, + "clean_up": 0.7530637644231319, + "create_cpp": 0.055472735315561295, + "file_setup": 0.038075871765613556, + "compile_cpp": 4.720469500869513, + "create_r1cs": 0.03408133238554001, + "save_results": 0.0976421944797039, + "get_r1cs_info": 0.000644925981760025, + "groth16_setup": 1.4366725198924541, + "export_verification_key": 1.6893814019858837, + "download_trusted_setup_file": 0.002162136137485504, + "solidity_contract_generation": 1.4998642541468143 + }, + "file_size": 236732, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-14T17:57:55.647Z", + "num_proofs": 20, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M09.426010S", + "compute_time_sec": 9.42601, + "compute_times": { + "total": 9.437843792140484, + "queued": 0.493759, + "clean_up": 0.057791054248809814, + "create_cpp": 0.08009331300854683, + "file_setup": 0.12311352789402008, + "compile_cpp": 4.8931994587183, + "create_r1cs": 0.040594689548015594, + "save_results": 0.013895608484745026, + "get_r1cs_info": 0.0007071755826473236, + "groth16_setup": 1.397422555834055, + "export_verification_key": 1.450899638235569, + "download_trusted_setup_file": 0.0032965317368507385, + "solidity_contract_generation": 1.3762941025197506 + }, + "file_size": 1662684, + "uploaded_file_name": "circom-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:46:22.764Z", + "num_proofs": 5, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H01M56.925440S", + "compute_time_sec": 116.92544, "compute_times": { - "total": 1.9064474820625037, - "queued": 1.557474, - "file_setup": 0.8709360021166503, - "generate_witness_wasm": 0.9751034409273416 + "total": 116.93180079571903, + "queued": 0.606416, + "clean_up": 115.11400480102748, + "file_setup": 0.828845551237464, + "nargo_checks": 0.4802310625091195, + "save_results": 0.005098612979054451, + "solidity_contract_generation": 0.5030098343268037 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 5759848, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness.wtns stdout: stderr: /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161\n throw new Error(err);\n ^\n\nError: Error: Assert Failed.\nError in template HashChecker_75 line: 37\n\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:161:27\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/witness_calculator.js:212:20)\n at /workspace/proofs/21749dcd-01a4-43ed-92cd-5c0301c5bd34_1707680098404464/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "02eab8b8-3baa-474b-ab03-479a4769cd63", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:34:33.443Z", - "perform_verify": false, - "status": "Failed", + "circuit_id": "f2eb3da8-7d12-4163-8b4c-bd04cd49334d", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:39:49.065Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M02.213770S", - "compute_time_sec": 2.21377, + "compute_time": "P0DT00H00M06.537494S", + "compute_time_sec": 6.537494, "compute_times": { - "total": 1.6578402749728411, - "queued": 1.501643, - "file_setup": 0.8060235111042857, - "generate_witness_wasm": 0.791354832937941 + "total": 6.544770289212465, + "queued": 0.524349, + "clean_up": 4.34150518476963, + "file_setup": 1.006766278296709, + "nargo_checks": 0.5691491775214672, + "save_results": 0.014499358832836151, + "solidity_contract_generation": 0.6120997071266174 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 5759848, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness.wtns stdout: stderr: /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert sfsfsdf to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:320:15)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/witness_calculator.js:212:20)\n at /workspace/proofs/02eab8b8-3baa-474b-ab03-479a4769cd63_1707680074885113/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "848e6832-a3c5-4a32-b524-1ea3e6c02221", - "circuit_name": "hashchecker", - "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", - "circuit_type": "circom", - "date_created": "2024-02-11T19:33:12.169Z", - "perform_verify": false, - "status": "Failed", + "circuit_id": "67c61291-24b1-4ed7-99dc-fb7d2c362dec", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:40:09.446Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.888816S", - "compute_time_sec": 5.888816, + "compute_time": "P0DT00H00M00.507493S", + "compute_time_sec": 0.507493, "compute_times": { - "total": 5.5928051138762385, - "queued": 20.021632, - "file_setup": 0.9408337560016662, - "generate_witness_wasm": 4.466476025991142 + "total": 0.5140813617035747, + "queued": 0.477408, + "clean_up": 0.03107771696522832, + "file_setup": 0.035331026185303926, + "nargo_checks": 0.44723919685930014 }, - "file_size": null, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": "cmd: node /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/circuit.wasm /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/input.json /forge/data/pods/zk-workers-prove-98b4597d6-gp252/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness.wtns stdout: stderr: /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320\n let res = BigInt(n) % prime\n ^\n\nSyntaxError: Cannot convert hi to a BigInt\n at BigInt ()\n at normalize (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:320:15)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:152:41\n at Array.forEach ()\n at WitnessCalculator._doCalculateWitness (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:136:14)\n at WitnessCalculator.calculateWTNSBin (/workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/witness_calculator.js:212:20)\n at /workspace/proofs/848e6832-a3c5-4a32-b524-1ea3e6c02221_1707680012005757/generate_witness.js:15:38\n\nNode.js v18.16.0\n" + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "90479213-d9ae-4b24-be07-b4230fdcdfe8", - "circuit_name": "circom-multiplier2", - "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", - "circuit_type": "circom", - "date_created": "2024-01-31T18:16:21.991Z", - "perform_verify": false, + "circuit_id": "3ba5276f-50b2-489f-a5d6-4491b60c398d", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:49.955Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.895357S", - "compute_time_sec": 0.895357, + "compute_time": "P0DT00H00M00.843597S", + "compute_time_sec": 0.843597, "compute_times": { - "prove": 0.6790756830014288, - "total": 0.968905714340508, - "queued": 0.662781, - "clean_up": 0.00029797712340950966, - "file_setup": 0.2733065038919449, - "save_results": 0.003135905135422945, - "generate_witness_c": 0.012809758074581623 + "total": 0.8497447483241558, + "queued": 0.705808, + "clean_up": 0.35245564859360456, + "file_setup": 0.034467861987650394, + "nargo_checks": 0.462372618727386 }, - "file_size": 712, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "1fe5ccb8-e5e5-4224-83b9-af9dc25f5207", - "circuit_name": "circom-multiplier2", - "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:45.826Z", - "perform_verify": false, + "circuit_id": "179cc7dc-ff08-4e5e-baea-502fe209dbc8", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:24.606Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.942551S", - "compute_time_sec": 0.942551, + "compute_time": "P0DT00H00M00.466730S", + "compute_time_sec": 0.46673, "compute_times": { - "prove": 0.7584659070707858, - "total": 1.0125216851010919, - "queued": 13.788636, - "clean_up": 0.00025292718783020973, - "file_setup": 0.24108529277145863, - "save_results": 0.0026897299103438854, - "generate_witness_c": 0.009630681946873665 + "total": 0.47336474480107427, + "queued": 0.462655, + "clean_up": 0.01973396772518754, + "file_setup": 0.030523537192493677, + "nargo_checks": 0.42268867418169975 }, - "file_size": 712, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "a35955a5-56a2-4b47-93e5-2e068d9a4664", - "circuit_name": "circom-multiplier2", - "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:26.403Z", - "perform_verify": false, + "circuit_id": "a27a3a89-5c63-4c80-bc26-2e77a2e07051", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:50.191Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M03.306255S", - "compute_time_sec": 3.306255, + "compute_time": "P0DT00H00M00.473263S", + "compute_time_sec": 0.473263, "compute_times": { - "prove": 2.568090456072241, - "total": 3.37676440179348, - "queued": 28.788691, - "clean_up": 0.0003418959677219391, - "file_setup": 0.241387109272182, - "save_results": 0.002813168801367283, - "generate_witness_c": 0.5637943758629262 + "total": 0.4781973138451576, + "queued": 0.690682, + "clean_up": 0.009893154725432396, + "file_setup": 0.02923344448208809, + "nargo_checks": 0.43864382058382034 }, - "file_size": 713, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "c9edaada-9d41-43c3-a808-d364a289b2f0", - "circuit_name": "circom-multiplier2", - "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", - "circuit_type": "circom", - "date_created": "2024-01-31T18:15:18.014Z", - "perform_verify": false, + "circuit_id": "97d5b9a1-e80f-42dc-a63f-acce27606d70", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:41.691Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M05.490489S", - "compute_time_sec": 5.490489, + "compute_time": "P0DT00H00M00.668388S", + "compute_time_sec": 0.668388, "compute_times": { - "prove": 5.2387496647425, - "total": 5.556455092970282, - "queued": 30.599597, - "clean_up": 0.000279237050563097, - "file_setup": 0.23077922780066729, - "save_results": 0.006773914210498333, - "generate_witness_c": 0.07928962633013725 + "total": 0.6738973991014063, + "queued": 0.530928, + "clean_up": 0.20331718400120735, + "file_setup": 0.037314246874302626, + "nargo_checks": 0.43269583908841014 }, - "file_size": 711, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "148cb2ba-36c1-45b2-92f7-1c495b945c9e", - "circuit_name": "sudoku", - "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", - "circuit_type": "circom", - "date_created": "2023-12-02T03:59:27.851Z", - "perform_verify": false, + "circuit_id": "a4cab353-4923-4b1b-a1c2-a24818843dcf", + "circuit_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:35.450Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M07.854809S", - "compute_time_sec": 7.854809, + "compute_time": "P0DT00H00M00.502202S", + "compute_time_sec": 0.502202, "compute_times": { - "prove": 4.957428568042815, - "total": 9.034430680796504, - "queued": 0.697877, - "clean_up": 0.001238434575498104, - "file_setup": 3.9956598421558738, - "save_results": 0.07156617846339941, - "generate_witness_c": 0.008326929062604904 + "total": 0.508173649199307, + "queued": 0.703038, + "clean_up": 0.009636486880481243, + "file_setup": 0.04673733003437519, + "nargo_checks": 0.45122806541621685 }, - "file_size": 1037, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 3601, + "uploaded_file_name": "noir-circuit.tar.gz", "verification_key": null, - "error": null + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" }, { - "proof_id": "eff39dc5-d0d4-46b1-9907-3e5f4b5235dd", - "circuit_name": "sudoku", - "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2023-12-02T03:54:14.687Z", - "perform_verify": false, + "date_created": "2024-03-12T00:28:59.709Z", + "num_proofs": 0, + "proving_scheme": "groth16", "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M08.475101S", - "compute_time_sec": 8.475101, + "compute_time": "P0DT00H00M06.821377S", + "compute_time_sec": 6.821377, "compute_times": { - "prove": 5.822698147967458, - "total": 9.663341652601957, - "queued": 0.474116, - "clean_up": 0.0010337075218558311, - "file_setup": 3.76318403147161, - "save_results": 0.06816541589796543, - "generate_witness_c": 0.007991122081875801 + "total": 6.826562466099858, + "queued": 30.605249, + "clean_up": 0.03631652891635895, + "create_cpp": 0.04230261128395796, + "file_setup": 0.03898624051362276, + "compile_cpp": 4.361995664425194, + "create_r1cs": 0.013952208682894707, + "save_results": 0.0029701171442866325, + "get_r1cs_info": 0.0003667334094643593, + "groth16_setup": 1.1385776856914163, + "export_verification_key": 1.189240344800055, + "download_trusted_setup_file": 0.0011938214302062988 }, - "file_size": 1037, - "proof_input": null, - "proof": null, - "public": null, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.491Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.876603S", + "compute_time_sec": 6.876603, + "compute_times": { + "total": 6.882667106110603, + "queued": 29.007266, + "clean_up": 0.04546098504215479, + "create_cpp": 0.043475366197526455, + "file_setup": 0.03212927980348468, + "compile_cpp": 4.419587793760002, + "create_r1cs": 0.01546289399266243, + "save_results": 0.002493636216968298, + "get_r1cs_info": 0.00048116687685251236, + "groth16_setup": 1.1517645819112659, + "export_verification_key": 1.1701868688687682, + "download_trusted_setup_file": 0.001243850216269493 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.924565S", + "compute_time_sec": 6.924565, + "compute_times": { + "total": 6.929660878144205, + "queued": 22.741395, + "clean_up": 0.018933841958642006, + "create_cpp": 0.04256786499172449, + "file_setup": 0.02480014692991972, + "compile_cpp": 4.3917419938370585, + "create_r1cs": 0.013429097831249237, + "save_results": 0.0027808332815766335, + "get_r1cs_info": 0.00034791603684425354, + "groth16_setup": 1.2296617422252893, + "export_verification_key": 1.2036232966929674, + "download_trusted_setup_file": 0.0012051593512296677 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.342Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.942825S", + "compute_time_sec": 6.942825, + "compute_times": { + "total": 6.949025787878782, + "queued": 21.20654, + "clean_up": 0.031298316083848476, + "create_cpp": 0.04343291139230132, + "file_setup": 0.02724728872999549, + "compile_cpp": 4.45128513360396, + "create_r1cs": 0.013787470292299986, + "save_results": 0.0027786437422037125, + "get_r1cs_info": 0.00040152110159397125, + "groth16_setup": 1.1622737408615649, + "export_verification_key": 1.214866721071303, + "download_trusted_setup_file": 0.001195291057229042 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.959Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.780219S", + "compute_time_sec": 6.780219, + "compute_times": { + "total": 6.785887842997909, + "queued": 17.005312, + "clean_up": 0.04605554789304733, + "create_cpp": 0.04327188339084387, + "file_setup": 0.027595113962888718, + "compile_cpp": 4.341672266833484, + "create_r1cs": 0.015188083983957767, + "save_results": 0.0029082708060741425, + "get_r1cs_info": 0.0004408573731780052, + "groth16_setup": 1.1388461524620652, + "export_verification_key": 1.1682334607467055, + "download_trusted_setup_file": 0.0012331167235970497 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.894050S", + "compute_time_sec": 6.89405, + "compute_times": { + "total": 6.900198160205036, + "queued": 15.716837, + "clean_up": 0.008259693160653114, + "create_cpp": 0.04261480597779155, + "file_setup": 0.02665704721584916, + "compile_cpp": 4.348901640623808, + "create_r1cs": 0.014178600162267685, + "save_results": 0.0026379870250821114, + "get_r1cs_info": 0.00040513090789318085, + "groth16_setup": 1.2399181728251278, + "export_verification_key": 1.2150304690003395, + "download_trusted_setup_file": 0.001215549185872078 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.833Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.918743S", + "compute_time_sec": 6.918743, + "compute_times": { + "total": 6.924384770914912, + "queued": 8.861907, + "clean_up": 0.00972826313227415, + "create_cpp": 0.04441164992749691, + "file_setup": 0.027338513173162937, + "compile_cpp": 4.443122708238661, + "create_r1cs": 0.014043214730918407, + "save_results": 0.0032253582030534744, + "get_r1cs_info": 0.00039947032928466797, + "groth16_setup": 1.1997679574415088, + "export_verification_key": 1.180700602941215, + "download_trusted_setup_file": 0.0012276563793420792 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.770Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.685175S", + "compute_time_sec": 6.685175, + "compute_times": { + "total": 6.691927400883287, + "queued": 8.196652, + "clean_up": 0.009768068790435791, + "create_cpp": 0.0421549417078495, + "file_setup": 0.026188824325799942, + "compile_cpp": 4.305569048970938, + "create_r1cs": 0.013142664916813374, + "save_results": 0.002773165237158537, + "get_r1cs_info": 0.0003167171962559223, + "groth16_setup": 1.1705206399783492, + "export_verification_key": 1.1197901628911495, + "download_trusted_setup_file": 0.0012216591276228428 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.765Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.844521S", + "compute_time_sec": 6.844521, + "compute_times": { + "total": 6.849527047015727, + "queued": 0.748407, + "clean_up": 0.021212157793343067, + "create_cpp": 0.042430317029356956, + "file_setup": 0.028176416642963886, + "compile_cpp": 4.403458681888878, + "create_r1cs": 0.013620416633784771, + "save_results": 0.007373335771262646, + "get_r1cs_info": 0.00034633465111255646, + "groth16_setup": 1.1376929804682732, + "export_verification_key": 1.1933853346854448, + "download_trusted_setup_file": 0.0013576876372098923 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.689Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.784180S", + "compute_time_sec": 6.78418, + "compute_times": { + "total": 6.789581563323736, + "queued": 0.480293, + "clean_up": 0.008159313350915909, + "create_cpp": 0.04301437921822071, + "file_setup": 0.03162584872916341, + "compile_cpp": 4.316627806052566, + "create_r1cs": 0.01355265872552991, + "save_results": 0.006111504044383764, + "get_r1cs_info": 0.00033407704904675484, + "groth16_setup": 1.2013251609168947, + "export_verification_key": 1.1670180107466877, + "download_trusted_setup_file": 0.0014280471950769424 + }, + "file_size": 225416, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_name": "poseidon", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:08:55.369Z", + "num_proofs": 229, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M20.064560S", + "compute_time_sec": 20.06456, + "compute_times": { + "total": 20.07014292757958, + "queued": 0.281108, + "compile": 12.642420304007828, + "clean_up": 5.060501893050969, + "file_setup": 2.2013850677758455, + "save_results": 0.036197442561388016, + "compile_r1cs_and_keygen": 0.12922980543226004 + }, + "file_size": 30921195, + "uploaded_file_name": "poseidon.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:01:02.213Z", + "num_proofs": 2, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.157686S", + "compute_time_sec": 14.157686, + "compute_times": { + "total": 14.164283829275519, + "queued": 0.242197, + "compile": 9.50105039961636, + "clean_up": 2.131474153138697, + "file_setup": 2.504877657163888, + "save_results": 0.007419941946864128, + "compile_r1cs_and_keygen": 0.018980357330292463 + }, + "file_size": 19726986, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:54.944Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.680331S", + "compute_time_sec": 2.680331, + "compute_times": { + "total": 2.6865532309748232, + "queued": 0.278162, + "clean_up": 0.15621905494481325, + "file_setup": 0.07576264115050435, + "create_r1cs": 0.02499393606558442, + "create_wasm": 0.037889659870415926, + "save_results": 0.006284092087298632, + "get_r1cs_info": 0.0003155169542878866, + "groth16_setup": 1.1963414950296283, + "export_verification_key": 1.1868828509468585, + "download_trusted_setup_file": 0.0014421690721064806 + }, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:28.625Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.723950S", + "compute_time_sec": 2.72395, + "compute_times": { + "total": 2.730448425281793, + "queued": 0.24759, + "clean_up": 0.03860751632601023, + "file_setup": 0.08125918405130506, + "create_r1cs": 0.025404677726328373, + "create_wasm": 0.03741568187251687, + "save_results": 0.007240877952426672, + "get_r1cs_info": 0.00033877836540341377, + "groth16_setup": 1.2571284701116383, + "export_verification_key": 1.2813060129992664, + "download_trusted_setup_file": 0.0013454826548695564 + }, + "file_size": 1467971, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-27T01:57:59.411Z", + "num_proofs": 4, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.843744S", + "compute_time_sec": 36.843744, + "compute_times": { + "total": 36.91908207698725, + "queued": 0.286679, + "clean_up": 0.03467807709239423, + "create_cpp": 0.7680627549998462, + "file_setup": 0.1394905720371753, + "compile_cpp": 28.152615127852187, + "create_r1cs": 0.34302311204373837, + "save_results": 0.006143820006400347, + "get_r1cs_info": 0.0005576841067522764, + "groth16_setup": 4.3415444530546665, + "export_verification_key": 1.252952174982056, + "download_trusted_setup_file": 1.879397285869345 + }, + "file_size": 3870229, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-26T02:32:51.263Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.040985S", + "compute_time_sec": 0.040985, + "compute_times": { + "total": 0.03328296495601535, + "queued": 0.306452, + "file_setup": 0.02101697097532451, + "create_wasm": 0.011749706929549575 + }, + "file_size": 1015, + "uploaded_file_name": "circom-circuit.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-25T21:21:18.316Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.116953S", + "compute_time_sec": 36.116953, + "compute_times": { + "total": 36.12258589011617, + "queued": 0.280658, + "clean_up": 0.045256566954776645, + "create_cpp": 0.7550635728985071, + "file_setup": 0.055438351118937135, + "compile_cpp": 27.543986437143758, + "create_r1cs": 0.34856289392337203, + "save_results": 0.005512146046385169, + "get_r1cs_info": 0.0005783189553767443, + "groth16_setup": 4.374077996937558, + "export_verification_key": 1.1806295281276107, + "download_trusted_setup_file": 1.8129089260473847 + }, + "file_size": 3870232, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-25T21:15:00.721Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.153850S", + "compute_time_sec": 0.15385, + "compute_times": { + "total": 0.14053412294015288, + "queued": 0.345862, + "file_setup": 0.12803456606343389, + "create_wasm": 0.01188180991448462 + }, + "file_size": 1004, + "uploaded_file_name": "circom-circuit.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-22T00:02:35.495Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.105806S", + "compute_time_sec": 8.105806, + "compute_times": { + "total": 8.111726151080802, + "queued": 0.299859, + "clean_up": 0.03814816800877452, + "create_cpp": 0.11785020097158849, + "file_setup": 0.07184063596650958, + "compile_cpp": 4.999685499118641, + "create_r1cs": 0.027501144912093878, + "save_results": 0.0056748660281300545, + "get_r1cs_info": 0.0003923040349036455, + "groth16_setup": 1.33484046603553, + "export_verification_key": 1.5138321269769222, + "download_trusted_setup_file": 0.0013768889475613832 + }, + "file_size": 1650685, + "uploaded_file_name": "circom-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-21T23:58:37.180Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.050622S", + "compute_time_sec": 7.050622, + "compute_times": { + "total": 7.057020629988983, + "queued": 0.29724, + "clean_up": 0.062270441092550755, + "create_cpp": 0.06243468704633415, + "file_setup": 0.07652567396871746, + "compile_cpp": 4.485646587098017, + "create_r1cs": 0.02570242597721517, + "save_results": 0.00595727888867259, + "get_r1cs_info": 0.00039725680835545063, + "groth16_setup": 1.17986157303676, + "export_verification_key": 1.1563023570924997, + "download_trusted_setup_file": 0.0012368990574032068 + }, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-16T16:44:06.247Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.940220S", + "compute_time_sec": 35.94022, + "compute_times": { + "total": 35.94744881300721, + "queued": 0.255393, + "clean_up": 0.0907127889804542, + "create_cpp": 0.8199345880420879, + "file_setup": 0.08025214297231287, + "compile_cpp": 27.603134420933202, + "create_r1cs": 0.38317175407428294, + "save_results": 0.009111783001571894, + "get_r1cs_info": 0.0010840859031304717, + "groth16_setup": 4.134320180979557, + "export_verification_key": 1.0508651459822431, + "download_trusted_setup_file": 1.7740050770808011 + }, + "file_size": 3869586, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 1, + "num_private_inputs": 4, + "num_public_inputs": 0 + }, + { + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T19:07:26.262Z", + "num_proofs": 2, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.144392S", + "compute_time_sec": 35.144392, + "compute_times": { + "total": 35.15089295199141, + "queued": 0.226366, + "clean_up": 0.11753120506182313, + "create_cpp": 0.7529647811315954, + "file_setup": 0.06330146407708526, + "compile_cpp": 28.331635219044983, + "create_r1cs": 0.34842015197500587, + "save_results": 0.010279993992298841, + "get_r1cs_info": 0.0006776847876608372, + "groth16_setup": 4.291510064154863, + "export_verification_key": 1.2317856717854738, + "download_trusted_setup_file": 0.002070905175060034 + }, + "file_size": 3870226, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-15T16:46:44.192Z", + "num_proofs": 5, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.775219S", + "compute_time_sec": 6.775219, + "compute_times": { + "total": 6.786237360094674, + "queued": 0.306632, + "clean_up": 0.02926708501763642, + "create_cpp": 0.06894711602944881, + "file_setup": 0.06364756193943322, + "compile_cpp": 4.536427660030313, + "create_r1cs": 0.0257944610202685, + "save_results": 0.008142217062413692, + "get_r1cs_info": 0.000770728918723762, + "groth16_setup": 1.0133657020051032, + "export_verification_key": 1.0354817470069975, + "download_trusted_setup_file": 0.003386533004231751 + }, + "file_size": 232969, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-15T16:44:21.936Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.525882S", + "compute_time_sec": 7.525882, + "compute_times": { + "total": 7.532384330872446, + "queued": 0.273291, + "clean_up": 0.41135954577475786, + "create_cpp": 0.044112610165029764, + "file_setup": 0.05311372969299555, + "compile_cpp": 4.545667007099837, + "create_r1cs": 0.021503231953829527, + "save_results": 0.023626559413969517, + "get_r1cs_info": 0.0004302137531340122, + "groth16_setup": 1.2149698357097805, + "export_verification_key": 1.2118688928894699, + "download_trusted_setup_file": 0.004898259416222572 + }, + "file_size": 232949, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:21:42.338Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M35.218699S", + "compute_time_sec": 35.218699, + "compute_times": { + "total": 35.2277638950618, + "queued": 0.317566, + "clean_up": 0.1369406400481239, + "create_cpp": 0.8040473599685356, + "file_setup": 0.1467569509986788, + "compile_cpp": 27.42731417901814, + "create_r1cs": 0.37680110498331487, + "save_results": 0.008219165029004216, + "get_r1cs_info": 0.0012246599653735757, + "groth16_setup": 4.11037651298102, + "export_verification_key": 1.009748816024512, + "download_trusted_setup_file": 1.2047668669838458 + }, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:20:47.501Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M34.701699S", + "compute_time_sec": 34.701699, + "compute_times": { + "total": 34.707892696838826, + "queued": 0.318933, + "clean_up": 0.09660972375422716, + "create_cpp": 0.7858420582488179, + "file_setup": 0.062256335746496916, + "compile_cpp": 27.987545497715473, + "create_r1cs": 0.3427793183363974, + "save_results": 0.006912626326084137, + "get_r1cs_info": 0.0007053948938846588, + "groth16_setup": 4.240857229102403, + "export_verification_key": 1.1814902885816991, + "download_trusted_setup_file": 0.002157846000045538 + }, + "file_size": 3868192, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-15T00:37:02.228Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M55.791705S", + "compute_time_sec": 55.791705, + "compute_times": { + "total": 55.797921964898705, + "queued": 0.257892, + "clean_up": 0.07545234775170684, + "create_cpp": 1.1982138170860708, + "file_setup": 0.0613596779294312, + "compile_cpp": 36.85164702497423, + "create_r1cs": 0.7978045740164816, + "save_results": 0.006434123031795025, + "get_r1cs_info": 0.002160165924578905, + "groth16_setup": 15.61639252398163, + "export_verification_key": 1.167371460236609, + "download_trusted_setup_file": 0.020440288819372654 + }, + "file_size": 7540832, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:58:52.084Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.901539S", + "compute_time_sec": 56.901539, + "compute_times": { + "total": 56.907790740951896, + "queued": 0.286676, + "clean_up": 0.1532127452082932, + "create_cpp": 1.1961525329388678, + "file_setup": 0.05804666178300977, + "compile_cpp": 38.085547543130815, + "create_r1cs": 0.8190577877685428, + "save_results": 0.010267478879541159, + "get_r1cs_info": 0.002185516059398651, + "groth16_setup": 15.381996811367571, + "export_verification_key": 1.1801622677594423, + "download_trusted_setup_file": 0.020589394960552454 + }, + "file_size": 7540785, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:57:50.289Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.834710S", + "compute_time_sec": 56.83471, + "compute_times": { + "total": 56.8432289250195, + "queued": 0.287988, + "clean_up": 0.10309748293366283, + "create_cpp": 1.2134589219931513, + "file_setup": 0.09620017104316503, + "compile_cpp": 38.34681939892471, + "create_r1cs": 0.824894416029565, + "save_results": 0.010392117081210017, + "get_r1cs_info": 0.004026207025162876, + "groth16_setup": 15.126561413053423, + "export_verification_key": 1.0899655069224536, + "download_trusted_setup_file": 0.02710751595441252 + }, + "file_size": 7540780, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:52:09.320Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M57.335290S", + "compute_time_sec": 57.33529, + "compute_times": { + "total": 57.34173893509433, + "queued": 0.278472, + "clean_up": 0.10366297094151378, + "create_cpp": 1.246839945204556, + "file_setup": 0.06519381469115615, + "compile_cpp": 38.10613914998248, + "create_r1cs": 0.821301891002804, + "save_results": 0.0067642792128026485, + "get_r1cs_info": 0.002133298199623823, + "groth16_setup": 15.753068736288697, + "export_verification_key": 1.2155762687325478, + "download_trusted_setup_file": 0.020359096582978964 + }, + "file_size": 7540742, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:43:09.159Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M54.984651S", + "compute_time_sec": 54.984651, + "compute_times": { + "total": 54.99341053608805, + "queued": 0.304312, + "clean_up": 0.06826841598376632, + "create_cpp": 1.2764658289961517, + "file_setup": 0.08957945799920708, + "compile_cpp": 36.77387927705422, + "create_r1cs": 0.801689010928385, + "save_results": 0.009336387040093541, + "get_r1cs_info": 0.003953314037062228, + "groth16_setup": 14.896520375041291, + "export_verification_key": 1.0483920950209722, + "download_trusted_setup_file": 0.024622616940177977 + }, + "file_size": 7540733, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", + "circuit_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T21:42:21.824Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M56.975886S", + "compute_time_sec": 56.975886, + "compute_times": { + "total": 56.984479263890535, + "queued": 0.3222, + "clean_up": 0.071199910948053, + "create_cpp": 1.246658438933082, + "file_setup": 0.08264653407968581, + "compile_cpp": 37.13031674805097, + "create_r1cs": 0.8157099969685078, + "save_results": 0.008955279947258532, + "get_r1cs_info": 0.004004108952358365, + "groth16_setup": 14.917821239912882, + "export_verification_key": 1.06573862710502, + "download_trusted_setup_file": 1.640640855068341 + }, + "file_size": 7540735, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", + "circuit_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-14T21:41:14.188Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.819064S", + "compute_time_sec": 36.819064, + "compute_times": { + "total": 36.826748004648834, + "queued": 0.269335, + "clean_up": 0.11822917684912682, + "create_cpp": 0.7589871259406209, + "file_setup": 0.15491734398528934, + "compile_cpp": 28.743124674074352, + "create_r1cs": 0.35148238157853484, + "save_results": 0.00582153769209981, + "get_r1cs_info": 0.0006839861162006855, + "groth16_setup": 4.374190780799836, + "export_verification_key": 1.1788361864164472, + "download_trusted_setup_file": 1.1384393190965056 + }, + "file_size": 3867265, + "uploaded_file_name": "hash-checker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-14T21:39:50.042Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M47.319956S", + "compute_time_sec": 47.319956, + "compute_times": { + "total": 47.326535122003406, + "queued": 0.256588, + "clean_up": 0.08247739961370826, + "create_cpp": 1.000471537001431, + "file_setup": 0.0585682881064713, + "compile_cpp": 29.038879429921508, + "create_r1cs": 0.6561976410448551, + "save_results": 0.006647040136158466, + "get_r1cs_info": 0.0020793969742953777, + "groth16_setup": 15.312814712058753, + "export_verification_key": 1.1472203098237514, + "download_trusted_setup_file": 0.02056274702772498 + }, + "file_size": 6775884, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", + "circuit_name": "Semaphore", + "circuit_type": "circom", + "date_created": "2024-02-14T21:36:56.776Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M47.874450S", + "compute_time_sec": 47.87445, + "compute_times": { + "total": 47.88067169301212, + "queued": 0.241228, + "clean_up": 0.08292657090350986, + "create_cpp": 1.0067430417984724, + "file_setup": 0.060509118251502514, + "compile_cpp": 28.465293834917247, + "create_r1cs": 0.6478999992832541, + "save_results": 0.00611361488699913, + "get_r1cs_info": 0.0020417659543454647, + "groth16_setup": 14.801113961264491, + "export_verification_key": 1.1754452609457076, + "download_trusted_setup_file": 1.6319761737249792 + }, + "file_size": 6775882, + "uploaded_file_name": "Semaphore.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:08:08.930Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.897920S", + "compute_time_sec": 2.89792, + "compute_times": { + "total": 0.9285368990385905, + "queued": 0.329843, + "create_cpp": 0.04405528900679201, + "file_setup": 0.8838426299626008 + }, + "file_size": 24822850, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:06:51.116Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.346644S", + "compute_time_sec": 3.346644, + "compute_times": { + "total": 0.8087141560390592, + "queued": 0.273012, + "create_cpp": 0.01664800103753805, + "file_setup": 0.791186569724232 + }, + "file_size": 24822792, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:02:01.839Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.017827S", + "compute_time_sec": 3.017827, + "compute_times": { + "total": 0.8431280389195308, + "queued": 0.475505, + "create_cpp": 0.03038154193200171, + "file_setup": 0.8116235659690574 + }, + "file_size": 24822332, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:00:40.414Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.297335S", + "compute_time_sec": 0.297335, + "compute_times": { + "total": 0.11431554611772299, + "queued": 0.292787, + "create_cpp": 0.014114855322986841, + "file_setup": 0.09887601295486093 + }, + "file_size": 1416811, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", + "circuit_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T15:56:00.936Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.259954S", + "compute_time_sec": 0.259954, + "compute_times": { + "total": 0.12665929598733783, + "queued": 0.347236, + "create_cpp": 0.022852880065329373, + "file_setup": 0.10267018002923578 + }, + "file_size": 1416809, + "uploaded_file_name": "email.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T16:06:15.388Z", + "num_proofs": 3, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M19.113279S", + "compute_time_sec": 19.113279, + "compute_times": { + "total": 19.119710344821215, + "queued": 0.304946, + "clean_up": 0.05678791180253029, + "file_setup": 0.07778294384479523, + "create_r1cs": 0.6835691910237074, + "create_wasm": 1.5261333975940943, + "save_results": 0.01109285093843937, + "get_r1cs_info": 0.002000190317630768, + "groth16_setup": 15.561696534976363, + "export_verification_key": 1.1593163777142763, + "download_trusted_setup_file": 0.04080592654645443 + }, + "file_size": 7081817, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:14:36.781Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M21.300025S", + "compute_time_sec": 21.300025, + "compute_times": { + "total": 21.306767147034407, + "queued": 0.293132, + "clean_up": 0.2600619550794363, + "file_setup": 0.10280199348926544, + "create_r1cs": 0.7014120128005743, + "create_wasm": 1.4916918445378542, + "save_results": 0.018025938421487808, + "get_r1cs_info": 0.003770437091588974, + "groth16_setup": 15.514674112200737, + "export_verification_key": 1.5598135478794575, + "download_trusted_setup_file": 1.654065664857626 + }, + "file_size": 7081723, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:12:50.904Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.311458S", + "compute_time_sec": 0.311458, + "compute_times": { + "total": 0.10177313163876534, + "queued": 0.288724, + "file_setup": 0.08924846164882183, + "create_wasm": 0.011913193389773369 + }, + "file_size": 1806552, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-12T00:10:40.331Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.123483S", + "compute_time_sec": 0.123483, + "compute_times": { + "total": 0.10418374836444855, + "queued": 0.24469, + "file_setup": 0.08240349031984806, + "create_wasm": 0.02108948677778244 + }, + "file_size": 907287, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:12.364Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M36.887947S", + "compute_time_sec": 36.887947, + "compute_times": { + "total": 36.89425963815302, + "queued": 0.257023, + "clean_up": 0.04403446055948734, + "file_setup": 29.98060936667025, + "create_r1cs": 0.3443223936483264, + "create_wasm": 1.05553247500211, + "save_results": 0.006293457001447678, + "get_r1cs_info": 0.000581374391913414, + "groth16_setup": 4.288356346078217, + "export_verification_key": 1.171438716351986, + "download_trusted_setup_file": 0.002127542160451412 + }, + "file_size": 4238536, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:47.834Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.242908S", + "compute_time_sec": 7.242908, + "compute_times": { + "total": 7.252888669259846, + "queued": 0.315189, + "clean_up": 0.24440924916416407, + "file_setup": 0.10320598538964987, + "create_r1cs": 0.3493071682751179, + "create_wasm": 1.0848499182611704, + "save_results": 0.006677108816802502, + "get_r1cs_info": 0.0006677061319351196, + "groth16_setup": 4.277557077817619, + "export_verification_key": 1.1795741403475404, + "download_trusted_setup_file": 0.002051391638815403 + }, + "file_size": 4238546, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:32:24.516Z", + "num_proofs": 3, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.502453S", + "compute_time_sec": 8.502453, + "compute_times": { + "total": 8.5082988422364, + "queued": 0.290802, + "clean_up": 0.24006511457264423, + "file_setup": 0.10109577886760235, + "create_r1cs": 0.374081764370203, + "create_wasm": 1.0719998348504305, + "save_results": 0.006332419812679291, + "get_r1cs_info": 0.0005895020440220833, + "groth16_setup": 4.342386241070926, + "export_verification_key": 1.097628473304212, + "download_trusted_setup_file": 1.2735503260046244 + }, + "file_size": 4238535, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:14:59.465Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.379245S", + "compute_time_sec": 0.379245, + "compute_times": { + "total": 0.10352941323071718, + "queued": 0.225145, + "file_setup": 0.0858859121799469, + "create_wasm": 0.016125368885695934 + }, + "file_size": 1804057, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:09:18.022Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.300239S", + "compute_time_sec": 0.300239, + "compute_times": { + "total": 0.09953181259334087, + "queued": 0.267199, + "file_setup": 0.08270685467869043, + "create_wasm": 0.01634138822555542 + }, + "file_size": 1803953, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:00:54.135Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.179718S", + "compute_time_sec": 0.179718, + "compute_times": { + "total": 0.10090719535946846, + "queued": 0.251874, + "file_setup": 0.08464208338409662, + "create_wasm": 0.01588864903897047 + }, + "file_size": 1803921, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:45:44.857Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.269437S", + "compute_time_sec": 0.269437, + "compute_times": { + "total": 0.10417102556675673, + "queued": 0.229957, + "file_setup": 0.0870280647650361, + "create_wasm": 0.016761316917836666 + }, + "file_size": 1803870, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", + "circuit_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:44:01.720Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.119612S", + "compute_time_sec": 0.119612, + "compute_times": { + "total": 0.07268805895000696, + "queued": 0.258881, + "file_setup": 0.056701790541410446, + "create_wasm": 0.015431713312864304 + }, + "file_size": 905050, + "uploaded_file_name": "hashchecker.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-11T18:10:12.579Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.281287S", + "compute_time_sec": 0.281287, + "compute_times": { + "total": 0.11563524045050144, + "queued": 0.305225, + "file_setup": 0.10166966635733843, + "create_wasm": 0.01360108982771635 + }, + "file_size": 1805983, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", + "circuit_name": "semaphore", + "circuit_type": "circom", + "date_created": "2024-02-11T18:09:21.301Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.129729S", + "compute_time_sec": 0.129729, + "compute_times": { + "total": 0.0997195653617382, + "queued": 0.324444, + "file_setup": 0.08716154284775257, + "create_wasm": 0.01209271140396595 + }, + "file_size": 1805970, + "uploaded_file_name": "semaphore.tar.gz", + "verification_key": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", + "circuit_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-01-31T22:08:05.475Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.909178S", + "compute_time_sec": 6.909178, + "compute_times": { + "total": 6.960774548351765, + "queued": 24.976953, + "clean_up": 0.005624564364552498, + "create_cpp": 0.04884001612663269, + "file_setup": 0.23423208110034466, + "compile_cpp": 4.481184393167496, + "create_r1cs": 0.019831592217087746, + "save_results": 0.003675384446978569, + "get_r1cs_info": 0.0003577694296836853, + "groth16_setup": 1.123554177582264, + "export_verification_key": 1.0419799592345953, + "download_trusted_setup_file": 0.0011759810149669647 + }, + "file_size": 1651141, + "uploaded_file_name": "circom-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.723Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.286136S", + "compute_time_sec": 7.286136, + "compute_times": { + "total": 7.340654090046883, + "queued": 38.074183, + "clean_up": 0.0009148658718913794, + "create_cpp": 0.04542793915607035, + "file_setup": 0.23204711498692632, + "compile_cpp": 4.680376983946189, + "create_r1cs": 0.008409275906160474, + "save_results": 0.0033105541951954365, + "get_r1cs_info": 0.0003685750998556614, + "groth16_setup": 1.178457418922335, + "export_verification_key": 1.1900099229533225, + "download_trusted_setup_file": 0.000988946994766593 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.122Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.463866S", + "compute_time_sec": 7.463866, + "compute_times": { + "total": 7.523294999962673, + "queued": 37.680306, + "clean_up": 0.0007766569033265114, + "create_cpp": 0.04011468309909105, + "file_setup": 0.2518389639444649, + "compile_cpp": 4.806413288926706, + "create_r1cs": 0.008677670964971185, + "save_results": 0.0031781040597707033, + "get_r1cs_info": 0.00039803609251976013, + "groth16_setup": 1.1818688770290464, + "export_verification_key": 1.2287184570450336, + "download_trusted_setup_file": 0.0010086549445986748 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.780Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.480065S", + "compute_time_sec": 7.480065, + "compute_times": { + "total": 7.537460318999365, + "queued": 33.511443, + "clean_up": 0.0008328610565513372, + "create_cpp": 0.03915940411388874, + "file_setup": 0.2353337057866156, + "compile_cpp": 4.872832479886711, + "create_r1cs": 0.009635194204747677, + "save_results": 0.003330645151436329, + "get_r1cs_info": 0.00040896888822317123, + "groth16_setup": 1.243939558044076, + "export_verification_key": 1.1305532888509333, + "download_trusted_setup_file": 0.0010688810143619776 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.625Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.465790S", + "compute_time_sec": 7.46579, + "compute_times": { + "total": 7.517380404053256, + "queued": 32.017107, + "clean_up": 0.000841652974486351, + "create_cpp": 0.04037469998002052, + "file_setup": 0.21061871387064457, + "compile_cpp": 4.7562680810224265, + "create_r1cs": 0.008348200935870409, + "save_results": 0.0034994680900126696, + "get_r1cs_info": 0.000424881000071764, + "groth16_setup": 1.2855071290396154, + "export_verification_key": 1.210078198928386, + "download_trusted_setup_file": 0.0010237020906060934 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.471Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.143051S", + "compute_time_sec": 7.143051, + "compute_times": { + "total": 7.1952535710297525, + "queued": 32.071917, + "clean_up": 0.0009264149703085423, + "create_cpp": 0.037378153996542096, + "file_setup": 0.22291689622215927, + "compile_cpp": 4.493842450901866, + "create_r1cs": 0.00868003792129457, + "save_results": 0.003541851881891489, + "get_r1cs_info": 0.0003536711446940899, + "groth16_setup": 1.202652727952227, + "export_verification_key": 1.2237500881310552, + "download_trusted_setup_file": 0.0009900499135255814 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.067Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.529084S", + "compute_time_sec": 7.529084, + "compute_times": { + "total": 7.584393135970458, + "queued": 30.973415, + "clean_up": 0.00083908811211586, + "create_cpp": 0.04151515499688685, + "file_setup": 0.23193758307024837, + "compile_cpp": 4.9528708211146295, + "create_r1cs": 0.008621205808594823, + "save_results": 0.0033709488343447447, + "get_r1cs_info": 0.0004654980730265379, + "groth16_setup": 1.127253663027659, + "export_verification_key": 1.2159365471452475, + "download_trusted_setup_file": 0.0011964899022132158 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.892Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.968285S", + "compute_time_sec": 6.968285, + "compute_times": { + "total": 7.020302023971453, + "queued": 24.589933, + "clean_up": 0.0007189519237726927, + "create_cpp": 0.039091327926144004, + "file_setup": 0.22075876407325268, + "compile_cpp": 4.478542160009965, + "create_r1cs": 0.008031236007809639, + "save_results": 0.0033459621481597424, + "get_r1cs_info": 0.00031445594504475594, + "groth16_setup": 1.1534762841183692, + "export_verification_key": 1.1147591178305447, + "download_trusted_setup_file": 0.000989275984466076 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.304Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.959223S", + "compute_time_sec": 6.959223, + "compute_times": { + "total": 7.0112608759664, + "queued": 17.111301, + "clean_up": 0.0008735461160540581, + "create_cpp": 0.038755591958761215, + "file_setup": 0.24885913101024926, + "compile_cpp": 4.36299676517956, + "create_r1cs": 0.00803148397244513, + "save_results": 0.01730395178310573, + "get_r1cs_info": 0.0003368018660694361, + "groth16_setup": 1.1180529070552438, + "export_verification_key": 1.2148506320081651, + "download_trusted_setup_file": 0.0009600170888006687 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.000Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.949886S", + "compute_time_sec": 6.949886, + "compute_times": { + "total": 7.000236368039623, + "queued": 1.134467, + "clean_up": 0.0007571689784526825, + "create_cpp": 0.03813181212171912, + "file_setup": 0.39067235100083053, + "compile_cpp": 4.379259012872353, + "create_r1cs": 0.008045257069170475, + "save_results": 0.037871989188715816, + "get_r1cs_info": 0.0003408279735594988, + "groth16_setup": 1.0681434420403093, + "export_verification_key": 1.0757975298911333, + "download_trusted_setup_file": 0.0009711629245430231 + }, + "file_size": 225416, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:00.922Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.086134S", + "compute_time_sec": 7.086134, + "compute_times": { + "total": 7.139805332990363, + "queued": 9.283956, + "clean_up": 0.0007637820672243834, + "create_cpp": 0.040777466958388686, + "file_setup": 0.22701866691932082, + "compile_cpp": 4.5694026600103825, + "create_r1cs": 0.008620185079053044, + "save_results": 0.009906678926199675, + "get_r1cs_info": 0.0005167280323803425, + "groth16_setup": 1.0815790109336376, + "export_verification_key": 1.1996698069851846, + "download_trusted_setup_file": 0.0012109570670872927 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-01-17T00:39:38.679Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.550840S", + "compute_time_sec": 7.55084, + "compute_times": { + "total": 7.629153113812208, + "queued": 15.012343, + "clean_up": 0.011455003172159195, + "create_cpp": 0.054636724293231964, + "file_setup": 0.31103159487247467, + "compile_cpp": 4.492543734610081, + "create_r1cs": 0.0336969792842865, + "save_results": 0.005911210551857948, + "get_r1cs_info": 0.0004208497703075409, + "groth16_setup": 1.3556907046586275, + "export_verification_key": 1.3620027527213097, + "download_trusted_setup_file": 0.0013344846665859222 + }, + "file_size": 1650629, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:15.352Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.078009S", + "compute_time_sec": 8.078009, + "compute_times": { + "total": 8.165162647143006, + "queued": 1.05453, + "clean_up": 0.001927914097905159, + "create_cpp": 0.05209779180586338, + "file_setup": 0.2735048495233059, + "compile_cpp": 4.798323042690754, + "create_r1cs": 0.018848145380616188, + "save_results": 0.00658784992992878, + "get_r1cs_info": 0.0008379388600587845, + "groth16_setup": 1.6222364120185375, + "export_verification_key": 1.38789046369493, + "download_trusted_setup_file": 0.0024561677128076553 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.083Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.904210S", + "compute_time_sec": 7.90421, + "compute_times": { + "total": 7.990685863420367, + "queued": 1.148767, + "clean_up": 0.0017737876623868942, + "create_cpp": 0.04771621339023113, + "file_setup": 0.2793459966778755, + "compile_cpp": 4.619792276993394, + "create_r1cs": 0.00932052917778492, + "save_results": 0.006265198811888695, + "get_r1cs_info": 0.0004815235733985901, + "groth16_setup": 1.4397705420851707, + "export_verification_key": 1.584412407130003, + "download_trusted_setup_file": 0.0015385709702968597 + }, + "file_size": 225450, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.042Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.840020S", + "compute_time_sec": 7.84002, + "compute_times": { + "total": 7.916158145293593, + "queued": 1.103501, + "clean_up": 0.001588582992553711, + "create_cpp": 0.05656779184937477, + "file_setup": 0.2618618682026863, + "compile_cpp": 4.655229337513447, + "create_r1cs": 0.010038148611783981, + "save_results": 0.005318811163306236, + "get_r1cs_info": 0.0004153270274400711, + "groth16_setup": 1.3863549754023552, + "export_verification_key": 1.5370171926915646, + "download_trusted_setup_file": 0.0013035386800765991 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:26.125Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.895332S", + "compute_time_sec": 7.895332, + "compute_times": { + "total": 7.985105384141207, + "queued": 1.097711, + "clean_up": 0.0017092283815145493, + "create_cpp": 0.05560790188610554, + "file_setup": 0.27359912544488907, + "compile_cpp": 4.84467164054513, + "create_r1cs": 0.01020035706460476, + "save_results": 0.00596289336681366, + "get_r1cs_info": 0.0003344062715768814, + "groth16_setup": 1.3516457378864288, + "export_verification_key": 1.4395998753607273, + "download_trusted_setup_file": 0.001010250300168991 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:25.495Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.731496S", + "compute_time_sec": 7.731496, + "compute_times": { + "total": 7.827601557597518, + "queued": 1.26957, + "clean_up": 0.002000821754336357, + "create_cpp": 0.04701829329133034, + "file_setup": 0.2621183265000582, + "compile_cpp": 4.725081695243716, + "create_r1cs": 0.011297162622213364, + "save_results": 0.005976244807243347, + "get_r1cs_info": 0.0006684809923171997, + "groth16_setup": 1.4255939163267612, + "export_verification_key": 1.3449707236140966, + "download_trusted_setup_file": 0.0024210847914218903 + }, + "file_size": 225430, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:31:55.438Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.586921S", + "compute_time_sec": 7.586921, + "compute_times": { + "total": 7.663304785266519, + "queued": 1.132337, + "clean_up": 0.0015752892941236496, + "create_cpp": 0.049899373203516006, + "file_setup": 0.22959892638027668, + "compile_cpp": 4.780468979850411, + "create_r1cs": 0.017419403418898582, + "save_results": 0.0054653361439704895, + "get_r1cs_info": 0.0007719267159700394, + "groth16_setup": 1.2644738126546144, + "export_verification_key": 1.310561291873455, + "download_trusted_setup_file": 0.0026084203273057938 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:56.593Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.801205S", + "compute_time_sec": 7.801205, + "compute_times": { + "total": 7.875548103824258, + "queued": 1.098988, + "clean_up": 0.0017300937324762344, + "create_cpp": 0.05396237596869469, + "file_setup": 0.2385635208338499, + "compile_cpp": 4.6406055726110935, + "create_r1cs": 0.016733812168240547, + "save_results": 0.004983868449926376, + "get_r1cs_info": 0.0006270240992307663, + "groth16_setup": 1.3868273310363293, + "export_verification_key": 1.528601661324501, + "download_trusted_setup_file": 0.002437632530927658 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:42.490Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.531215S", + "compute_time_sec": 7.531215, + "compute_times": { + "total": 7.6094263680279255, + "queued": 1.133009, + "clean_up": 0.001713564619421959, + "create_cpp": 0.04710027575492859, + "file_setup": 0.23515290580689907, + "compile_cpp": 4.696669522672892, + "create_r1cs": 0.017408769577741623, + "save_results": 0.005742281675338745, + "get_r1cs_info": 0.0006468463689088821, + "groth16_setup": 1.3201909139752388, + "export_verification_key": 1.2817781921476126, + "download_trusted_setup_file": 0.0024629440158605576 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:26.943Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.713700S", + "compute_time_sec": 7.7137, + "compute_times": { + "total": 7.7915890868753195, + "queued": 1.17603, + "clean_up": 0.001603648066520691, + "create_cpp": 0.04629753343760967, + "file_setup": 0.2314635906368494, + "compile_cpp": 4.7291872799396515, + "create_r1cs": 0.016094380989670753, + "save_results": 0.005229661241173744, + "get_r1cs_info": 0.0004699360579252243, + "groth16_setup": 1.3847032357007265, + "export_verification_key": 1.3747948426753283, + "download_trusted_setup_file": 0.0012649912387132645 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:25.201Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.782942S", + "compute_time_sec": 7.782942, + "compute_times": { + "total": 7.858149649575353, + "queued": 1.192228, + "clean_up": 0.0016285404562950134, + "create_cpp": 0.04751185514032841, + "file_setup": 0.22963756695389748, + "compile_cpp": 4.810557749122381, + "create_r1cs": 0.011191016063094139, + "save_results": 0.0053499843925237656, + "get_r1cs_info": 0.0006842408329248428, + "groth16_setup": 1.305834548547864, + "export_verification_key": 1.4425791203975677, + "download_trusted_setup_file": 0.0027836784720420837 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:08.702Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.712942S", + "compute_time_sec": 7.712942, + "compute_times": { + "total": 7.788311326876283, + "queued": 1.222064, + "clean_up": 0.0015964601188898087, + "create_cpp": 0.048168059438467026, + "file_setup": 0.24294559471309185, + "compile_cpp": 4.80493832193315, + "create_r1cs": 0.01979799196124077, + "save_results": 0.005484664812684059, + "get_r1cs_info": 0.0007523689419031143, + "groth16_setup": 1.360052939504385, + "export_verification_key": 1.3015912808477879, + "download_trusted_setup_file": 0.00248897448182106 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:55.055Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.504987S", + "compute_time_sec": 7.504987, + "compute_times": { + "total": 7.582275737076998, + "queued": 1.111203, + "clean_up": 0.00203564390540123, + "create_cpp": 0.04740658402442932, + "file_setup": 0.2326672412455082, + "compile_cpp": 4.5253369603306055, + "create_r1cs": 0.015371032059192657, + "save_results": 0.0063849929720163345, + "get_r1cs_info": 0.0003808550536632538, + "groth16_setup": 1.3611575067043304, + "export_verification_key": 1.3897777944803238, + "download_trusted_setup_file": 0.0012431517243385315 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:31.285Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.404341S", + "compute_time_sec": 7.404341, + "compute_times": { + "total": 7.481531243771315, + "queued": 1.164668, + "clean_up": 0.001758268103003502, + "create_cpp": 0.054409828037023544, + "file_setup": 0.228825144469738, + "compile_cpp": 4.561935219913721, + "create_r1cs": 0.01824786141514778, + "save_results": 0.005484595894813538, + "get_r1cs_info": 0.000652119517326355, + "groth16_setup": 1.3237749002873898, + "export_verification_key": 1.2835038527846336, + "download_trusted_setup_file": 0.0024792589247226715 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:11.647Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.506243S", + "compute_time_sec": 7.506243, + "compute_times": { + "total": 7.5825384352356195, + "queued": 1.123872, + "clean_up": 0.0020943544805049896, + "create_cpp": 0.055948369204998016, + "file_setup": 0.2336848620325327, + "compile_cpp": 4.572340337559581, + "create_r1cs": 0.011611813679337502, + "save_results": 0.006018133834004402, + "get_r1cs_info": 0.000943819060921669, + "groth16_setup": 1.345878291875124, + "export_verification_key": 1.3496504835784435, + "download_trusted_setup_file": 0.003846803680062294 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:38.135Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.490694S", + "compute_time_sec": 7.490694, + "compute_times": { + "total": 7.569987336173654, + "queued": 1.179116, + "clean_up": 0.002130907028913498, + "create_cpp": 0.04748098365962505, + "file_setup": 0.2508866246789694, + "compile_cpp": 4.549122573807836, + "create_r1cs": 0.01635313406586647, + "save_results": 0.006561141461133957, + "get_r1cs_info": 0.0007531233131885529, + "groth16_setup": 1.3041542451828718, + "export_verification_key": 1.389599822461605, + "download_trusted_setup_file": 0.002447204664349556 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:25.337Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.714617S", + "compute_time_sec": 7.714617, + "compute_times": { + "total": 7.78945274092257, + "queued": 1.109203, + "clean_up": 0.0014195535331964493, + "create_cpp": 0.0532410591840744, + "file_setup": 0.2293473482131958, + "compile_cpp": 4.6692238971591, + "create_r1cs": 0.011476732790470123, + "save_results": 0.0056864432990550995, + "get_r1cs_info": 0.0009230468422174454, + "groth16_setup": 1.4699061587452888, + "export_verification_key": 1.3452017772942781, + "download_trusted_setup_file": 0.0025169849395751953 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:07.305Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.675740S", + "compute_time_sec": 7.67574, + "compute_times": { + "total": 7.751045668497682, + "queued": 1.129433, + "clean_up": 0.0018131695687770844, + "create_cpp": 0.04765470325946808, + "file_setup": 0.24081012606620789, + "compile_cpp": 4.558540068566799, + "create_r1cs": 0.01800389215350151, + "save_results": 0.005974184721708298, + "get_r1cs_info": 0.0006712991744279861, + "groth16_setup": 1.373840706422925, + "export_verification_key": 1.500656010583043, + "download_trusted_setup_file": 0.002558337524533272 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:19:55.212Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.062178S", + "compute_time_sec": 8.062178, + "compute_times": { + "total": 8.142503958195448, + "queued": 1.149423, + "clean_up": 0.0018021930009126663, + "create_cpp": 0.04863681085407734, + "file_setup": 0.23515266925096512, + "compile_cpp": 5.073512123897672, + "create_r1cs": 0.018286654725670815, + "save_results": 0.004714170470833778, + "get_r1cs_info": 0.0007165037095546722, + "groth16_setup": 1.3629947770386934, + "export_verification_key": 1.3937593009322882, + "download_trusted_setup_file": 0.0024403519928455353 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:49.431Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.693335S", + "compute_time_sec": 7.693335, + "compute_times": { + "total": 7.781858703121543, + "queued": 1.116293, + "clean_up": 0.0017208773642778397, + "create_cpp": 0.05256185121834278, + "file_setup": 0.2557890061289072, + "compile_cpp": 4.588302677497268, + "create_r1cs": 0.010025406256318092, + "save_results": 0.0073493290692567825, + "get_r1cs_info": 0.0005155783146619797, + "groth16_setup": 1.4648161549121141, + "export_verification_key": 1.3988297637552023, + "download_trusted_setup_file": 0.0014446470886468887 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "315b9559-c461-49ab-b089-885151347107", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:35.546Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.469497S", + "compute_time_sec": 7.469497, + "compute_times": { + "total": 7.547948880121112, + "queued": 1.248019, + "clean_up": 0.0015904363244771957, + "create_cpp": 0.0542209018021822, + "file_setup": 0.23366319201886654, + "compile_cpp": 4.586157588288188, + "create_r1cs": 0.018297061324119568, + "save_results": 0.005786450579762459, + "get_r1cs_info": 0.0006671342998743057, + "groth16_setup": 1.364309385418892, + "export_verification_key": 1.2802996914833784, + "download_trusted_setup_file": 0.002457818016409874 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:17:44.931Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.473321S", + "compute_time_sec": 7.473321, + "compute_times": { + "total": 7.547661663964391, + "queued": 1.119777, + "clean_up": 0.000894695520401001, + "create_cpp": 0.05381825938820839, + "file_setup": 0.24185010977089405, + "compile_cpp": 4.524175513535738, + "create_r1cs": 0.017902396619319916, + "save_results": 0.004841597750782967, + "get_r1cs_info": 0.0008537471294403076, + "groth16_setup": 1.3410304505378008, + "export_verification_key": 1.3593134097754955, + "download_trusted_setup_file": 0.0025420039892196655 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:28.531Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.690520S", + "compute_time_sec": 7.69052, + "compute_times": { + "total": 7.770463544875383, + "queued": 5.453395, + "clean_up": 0.0014936216175556183, + "create_cpp": 0.05430406704545021, + "file_setup": 0.23710034973919392, + "compile_cpp": 4.83283169940114, + "create_r1cs": 0.019483311101794243, + "save_results": 0.0048837121576070786, + "get_r1cs_info": 0.0006661657243967056, + "groth16_setup": 1.3555313758552074, + "export_verification_key": 1.2612487897276878, + "download_trusted_setup_file": 0.0024483725428581238 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:22.368Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.866076S", + "compute_time_sec": 7.866076, + "compute_times": { + "total": 7.941894210875034, + "queued": 2.535538, + "clean_up": 0.0015988927334547043, + "create_cpp": 0.047808632254600525, + "file_setup": 0.27344413474202156, + "compile_cpp": 4.95066586881876, + "create_r1cs": 0.018682880327105522, + "save_results": 0.005130548030138016, + "get_r1cs_info": 0.0007092785090208054, + "groth16_setup": 1.3249204363673925, + "export_verification_key": 1.3161130715161562, + "download_trusted_setup_file": 0.0024131685495376587 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:14.715Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.791801S", + "compute_time_sec": 7.791801, + "compute_times": { + "total": 7.869745476171374, + "queued": 1.134289, + "clean_up": 0.001745712012052536, + "create_cpp": 0.05209941044449806, + "file_setup": 0.2489724848419428, + "compile_cpp": 4.845416411757469, + "create_r1cs": 0.019992178305983543, + "save_results": 0.005489939823746681, + "get_r1cs_info": 0.0008604265749454498, + "groth16_setup": 1.321467338129878, + "export_verification_key": 1.3704753294587135, + "download_trusted_setup_file": 0.002767615020275116 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:40.405Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.405829S", + "compute_time_sec": 7.405829, + "compute_times": { + "total": 7.476599719375372, + "queued": 1.131337, + "clean_up": 0.0016632992774248123, + "create_cpp": 0.047042084857821465, + "file_setup": 0.2487345952540636, + "compile_cpp": 4.6313931327313185, + "create_r1cs": 0.015436878427863121, + "save_results": 0.0051026009023189545, + "get_r1cs_info": 0.0007460527122020721, + "groth16_setup": 1.2485730070620775, + "export_verification_key": 1.274957099929452, + "download_trusted_setup_file": 0.002432204782962799 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:12.201Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.489214S", + "compute_time_sec": 7.489214, + "compute_times": { + "total": 7.565977169200778, + "queued": 1.146208, + "clean_up": 0.0016220677644014359, + "create_cpp": 0.0601615309715271, + "file_setup": 0.23689182102680206, + "compile_cpp": 4.628598712384701, + "create_r1cs": 0.01757240854203701, + "save_results": 0.005794510245323181, + "get_r1cs_info": 0.0007582679390907288, + "groth16_setup": 1.3360584639012814, + "export_verification_key": 1.2756301537156105, + "download_trusted_setup_file": 0.0024445243179798126 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:11:41.174Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.580861S", + "compute_time_sec": 7.580861, + "compute_times": { + "total": 7.656488731503487, + "queued": 1.097627, + "clean_up": 0.0016867052763700485, + "create_cpp": 0.04802015610039234, + "file_setup": 0.24031525664031506, + "compile_cpp": 4.603576384484768, + "create_r1cs": 0.016298340633511543, + "save_results": 0.005427641794085503, + "get_r1cs_info": 0.0008495114743709564, + "groth16_setup": 1.44757186062634, + "export_verification_key": 1.2892759256064892, + "download_trusted_setup_file": 0.0029640905559062958 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:06:12.999Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.468363S", + "compute_time_sec": 7.468363, + "compute_times": { + "total": 7.544480819255114, + "queued": 1.143003, + "clean_up": 0.0016008112579584122, + "create_cpp": 0.05341379716992378, + "file_setup": 0.22887434996664524, + "compile_cpp": 4.706471795216203, + "create_r1cs": 0.01654653809964657, + "save_results": 0.006104299798607826, + "get_r1cs_info": 0.0004962123930454254, + "groth16_setup": 1.2300675436854362, + "export_verification_key": 1.299116501584649, + "download_trusted_setup_file": 0.0012989863753318787 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:05:23.917Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.759975S", + "compute_time_sec": 7.759975, + "compute_times": { + "total": 7.83847594819963, + "queued": 1.10425, + "clean_up": 0.001688338816165924, + "create_cpp": 0.04832325503230095, + "file_setup": 0.2314634695649147, + "compile_cpp": 4.819877410307527, + "create_r1cs": 0.015260979533195496, + "save_results": 0.006293922662734985, + "get_r1cs_info": 0.0006519351154565811, + "groth16_setup": 1.3941991496831179, + "export_verification_key": 1.3179172277450562, + "download_trusted_setup_file": 0.0024711433798074722 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:04:56.095Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.406479S", + "compute_time_sec": 7.406479, + "compute_times": { + "total": 7.483620099723339, + "queued": 1.177252, + "clean_up": 0.001823868602514267, + "create_cpp": 0.045437244698405266, + "file_setup": 0.24590439908206463, + "compile_cpp": 4.595620075240731, + "create_r1cs": 0.016566921025514603, + "save_results": 0.005170263350009918, + "get_r1cs_info": 0.00036842189729213715, + "groth16_setup": 1.3206052239984274, + "export_verification_key": 1.2503768727183342, + "download_trusted_setup_file": 0.0012859292328357697 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:02:24.098Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.616668S", + "compute_time_sec": 7.616668, + "compute_times": { + "total": 7.693107321858406, + "queued": 1.109472, + "clean_up": 0.0016501452773809433, + "create_cpp": 0.05231943354010582, + "file_setup": 0.23242460750043392, + "compile_cpp": 4.745099242776632, + "create_r1cs": 0.019039543345570564, + "save_results": 0.0055495090782642365, + "get_r1cs_info": 0.0005333274602890015, + "groth16_setup": 1.285587765276432, + "export_verification_key": 1.3491349909454584, + "download_trusted_setup_file": 0.0012811962515115738 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:40.573Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.484601S", + "compute_time_sec": 7.484601, + "compute_times": { + "total": 7.560129789635539, + "queued": 1.111989, + "clean_up": 0.0016574747860431671, + "create_cpp": 0.04680110327899456, + "file_setup": 0.23556585423648357, + "compile_cpp": 4.649155827239156, + "create_r1cs": 0.0172688327729702, + "save_results": 0.0043340642005205154, + "get_r1cs_info": 0.0007321778684854507, + "groth16_setup": 1.310708336532116, + "export_verification_key": 1.2910060994327068, + "download_trusted_setup_file": 0.002450576052069664 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:12.249Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.651112S", + "compute_time_sec": 7.651112, + "compute_times": { + "total": 7.727200584486127, + "queued": 1.123557, + "clean_up": 0.0017795618623495102, + "create_cpp": 0.05026000365614891, + "file_setup": 0.2426721192896366, + "compile_cpp": 4.745914597064257, + "create_r1cs": 0.010544411838054657, + "save_results": 0.006228795275092125, + "get_r1cs_info": 0.0007463283836841583, + "groth16_setup": 1.2904645502567291, + "export_verification_key": 1.375608079135418, + "download_trusted_setup_file": 0.002477342262864113 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:00:46.395Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.560954S", + "compute_time_sec": 7.560954, + "compute_times": { + "total": 7.63792067207396, + "queued": 1.118023, + "clean_up": 0.0011309515684843063, + "create_cpp": 0.05688653700053692, + "file_setup": 0.24240840040147305, + "compile_cpp": 4.653197390958667, + "create_r1cs": 0.01638108491897583, + "save_results": 0.005740107968449593, + "get_r1cs_info": 0.0008277762681245804, + "groth16_setup": 1.3475805260241032, + "export_verification_key": 1.3108154106885195, + "download_trusted_setup_file": 0.0024681556969881058 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:57.004Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.474006S", + "compute_time_sec": 7.474006, + "compute_times": { + "total": 7.551057329401374, + "queued": 1.13943, + "clean_up": 0.0015815366059541702, + "create_cpp": 0.04650958999991417, + "file_setup": 0.2340244445949793, + "compile_cpp": 4.627846229821444, + "create_r1cs": 0.01713145151734352, + "save_results": 0.005708448588848114, + "get_r1cs_info": 0.0004803799092769623, + "groth16_setup": 1.2327740285545588, + "export_verification_key": 1.3827583715319633, + "download_trusted_setup_file": 0.001740090548992157 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:11.428Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.631306S", + "compute_time_sec": 7.631306, + "compute_times": { + "total": 7.710235442966223, + "queued": 1.386075, + "clean_up": 0.002034531906247139, + "create_cpp": 0.04852190800011158, + "file_setup": 0.24500983953475952, + "compile_cpp": 4.704880395904183, + "create_r1cs": 0.010721936821937561, + "save_results": 0.0055764298886060715, + "get_r1cs_info": 0.0006168503314256668, + "groth16_setup": 1.448454624041915, + "export_verification_key": 1.2422269843518734, + "download_trusted_setup_file": 0.0016173608601093292 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:58:05.906Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.838875S", + "compute_time_sec": 7.838875, + "compute_times": { + "total": 7.916816979646683, + "queued": 1.13646, + "clean_up": 0.0017937906086444855, + "create_cpp": 0.04604017175734043, + "file_setup": 0.25198566168546677, + "compile_cpp": 4.960162149742246, + "create_r1cs": 0.017025411128997803, + "save_results": 0.006269412115216255, + "get_r1cs_info": 0.0005705077201128006, + "groth16_setup": 1.3184205926954746, + "export_verification_key": 1.312853867188096, + "download_trusted_setup_file": 0.0013548657298088074 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:10:36.167Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.494759S", + "compute_time_sec": 7.494759, + "compute_times": { + "total": 7.577943356707692, + "queued": 15.661842, + "clean_up": 0.0015942566096782684, + "create_cpp": 0.046944042667746544, + "file_setup": 0.23811103031039238, + "compile_cpp": 4.708118129521608, + "create_r1cs": 0.01638900674879551, + "save_results": 0.00562669150531292, + "get_r1cs_info": 0.0006911307573318481, + "groth16_setup": 1.2832315117120743, + "export_verification_key": 1.2741688843816519, + "download_trusted_setup_file": 0.0024611055850982666 + }, + "file_size": 225418, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-19T00:01:17.518Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.829640S", + "compute_time_sec": 14.82964, + "compute_times": { + "total": 16.11652692966163, + "queued": 21.506947, + "clean_up": 0.00970545969903469, + "create_cpp": 0.07700999267399311, + "file_setup": 1.6147372927516699, + "compile_cpp": 7.614376271143556, + "create_r1cs": 0.154385132715106, + "save_results": 0.005050705745816231, + "get_r1cs_info": 0.0008396394550800323, + "groth16_setup": 3.3179074060171843, + "export_verification_key": 3.320323884487152, + "download_trusted_setup_file": 0.0015841908752918243 + }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:44:10.716Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M08.500698S", + "compute_time_sec": 8.500698, + "compute_times": { + "total": 9.787439923733473, + "queued": 1.294188, + "clean_up": 0.013815293088555336, + "create_cpp": 0.06775672547519207, + "file_setup": 1.5670747924596071, + "compile_cpp": 5.217347398400307, + "create_r1cs": 0.03056485578417778, + "save_results": 0.006023731082677841, + "get_r1cs_info": 0.0007077902555465698, + "groth16_setup": 1.4515825044363737, + "export_verification_key": 1.4297321401536465, + "download_trusted_setup_file": 0.0024385377764701843 + }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:42:13.949Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.803270S", + "compute_time_sec": 13.80327, + "compute_times": { + "total": 15.069168468937278, + "queued": 1.279988, + "clean_up": 0.010122904554009438, + "create_cpp": 0.12114278227090836, + "file_setup": 1.5526539776474237, + "compile_cpp": 7.2996343690901995, + "create_r1cs": 0.07337300851941109, + "save_results": 0.10131139867007732, + "get_r1cs_info": 0.0005603395402431488, + "groth16_setup": 2.957974351942539, + "export_verification_key": 2.9508997034281492, + "download_trusted_setup_file": 0.0010457858443260193 + }, + "file_size": 1719996, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:36:30.574Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.521983S", + "compute_time_sec": 13.521983, + "compute_times": { + "total": 14.785143690183759, + "queued": 27.741822, + "clean_up": 0.00823935680091381, + "create_cpp": 0.10304738581180573, + "file_setup": 1.505700759589672, + "compile_cpp": 7.270766986533999, + "create_r1cs": 0.07485816441476345, + "save_results": 0.0029987990856170654, + "get_r1cs_info": 0.0006173755973577499, + "groth16_setup": 2.891835331916809, + "export_verification_key": 2.924815448001027, + "download_trusted_setup_file": 0.0017245206981897354 + }, + "file_size": 1719981, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", + "circuit_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-17T19:35:22.108Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.399840S", + "compute_time_sec": 13.39984, + "compute_times": { + "total": 14.661026014015079, + "queued": 20.325028, + "clean_up": 0.005762990564107895, + "create_cpp": 0.07418840192258358, + "file_setup": 1.5508117154240608, + "compile_cpp": 7.441567042842507, + "create_r1cs": 0.0411736685782671, + "save_results": 0.003770258277654648, + "get_r1cs_info": 0.0007237941026687622, + "groth16_setup": 2.749024560675025, + "export_verification_key": 2.7917208038270473, + "download_trusted_setup_file": 0.0016946438699960709 + }, + "file_size": 1650609, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", + "circuit_name": "my-circuit", + "circuit_type": "noir", + "date_created": "2023-12-17T18:49:58.483Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.373831S", + "compute_time_sec": 4.373831, + "compute_times": { + "total": 5.606248481199145, + "queued": 17.784967, + "clean_up": 0.000952577218413353, + "file_setup": 1.4592411685734987, + "nargo_checks": 4.145449373871088 + }, + "file_size": 724, + "uploaded_file_name": "my-circuit.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_circuit", + "noir_version": "0.17.0" + }, + { + "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:44:44.083Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.215446S", + "compute_time_sec": 0.215446, + "compute_times": { + "total": 1.39835050329566, + "queued": 1.360483, + "file_setup": 1.395031625404954, + "nargo_checks": 0.003077572211623192 + }, + "file_size": 742, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:51.455Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.479235S", + "compute_time_sec": 1.479235, + "compute_times": { + "total": 2.6415348909795284, + "queued": 1.942949, + "clean_up": 0.0005522631108760834, + "file_setup": 1.3729195687919855, + "nargo_checks": 1.2678131125867367 + }, + "file_size": 741, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "Hi2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:04.488Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.415435S", + "compute_time_sec": 1.415435, + "compute_times": { + "total": 2.570197055116296, + "queued": 1.245783, + "clean_up": 0.00041295401751995087, + "file_setup": 1.3385441917926073, + "nargo_checks": 1.2309921570122242 + }, + "file_size": 737, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:44.606Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.405646S", + "compute_time_sec": 1.405646, + "compute_times": { + "total": 2.5658690985292196, + "queued": 1.186038, + "clean_up": 0.00047394633293151855, + "file_setup": 1.3717324659228325, + "nargo_checks": 1.1934157982468605 + }, + "file_size": 736, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:17.783Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.462830S", + "compute_time_sec": 1.46283, + "compute_times": { + "total": 2.6199891455471516, + "queued": 1.25179, + "clean_up": 0.00041804835200309753, + "file_setup": 1.3820457514375448, + "nargo_checks": 1.2372824884951115 + }, + "file_size": 739, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "_noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", + "circuit_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:41:44.867Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.422583S", + "compute_time_sec": 1.422583, + "compute_times": { + "total": 2.580868471413851, + "queued": 1.187135, + "clean_up": 0.00045336224138736725, + "file_setup": 1.360721966251731, + "nargo_checks": 1.2194277700036764 + }, + "file_size": 727, + "uploaded_file_name": "_2noir-hi.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "9c8a486c-4c18-4a7a-8e79-8100500a2660", + "circuit_name": "_2halo-hi", + "circuit_type": "halo2", + "date_created": "2023-12-13T16:37:57.886Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H01M28.284700S", + "compute_time_sec": 88.2847, + "compute_times": { + "total": 89.44666199572384, + "queued": 2.165129, + "compile": 87.56292228028178, + "clean_up": 0.07346387021243572, + "file_setup": 1.3726620227098465, + "save_results": 0.04124521091580391, + "generate_keys": 0.3959560953080654, + "download_trusted_setup_file": 0.00015112943947315216 + }, + "file_size": 44933087, + "uploaded_file_name": "_2halo-hi.tar.gz", + "verification_key": null, + "error": null, + "class_name": "_2halo_hi::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", + "circuit_name": "_noir-circuit-32", + "circuit_type": "noir", + "date_created": "2023-12-13T16:31:57.140Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M06.154282S", + "compute_time_sec": 6.154282, + "compute_times": { + "total": 7.310710787773132, + "queued": 18.86527, + "clean_up": 0.00043790414929389954, + "file_setup": 1.3356177434325218, + "nargo_checks": 5.974256757646799 + }, + "file_size": 736, + "uploaded_file_name": "_noir-circuit-32.tar.gz", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit_32", + "noir_version": "0.17.0" + }, + { + "circuit_id": "ec12dd1d-75be-4729-bdd4-0ae924f2c8e6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T22:14:30.186Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H01M20.814859S", + "compute_time_sec": 80.814859, + "compute_times": { + "total": 82.05906438827515, + "queued": 1.410777, + "compile": 80.08948761411011, + "clean_up": 0.08174648880958557, + "file_setup": 1.495840536430478, + "save_results": 0.04187909886240959, + "generate_keys": 0.3492503445595503, + "download_trusted_setup_file": 0.00032539665699005127 + }, + "file_size": 44934523, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "14124f66-b386-4da6-94c3-7c9504e59b55", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-11T21:21:17.813Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.609091S", + "compute_time_sec": 1.609091, + "compute_times": { + "total": 1.430661918129772, + "queued": 1.232619, + "file_setup": 1.4302852991968393 + }, + "file_size": 6518, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: cargo --quiet build --release stdout: stderr: error: package `colored v2.1.0` cannot be built because it requires rustc 1.70 or newer, while the currently active rustc version is 1.69.0-nightly\nEither upgrade to rustc 1.70 or newer, or use\ncargo update -p colored@2.1.0 --precise ver\nwhere `ver` is the latest version of `colored` supporting rustc 1.69.0-nightly\n", + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "180aaddd-e613-42ba-a7d0-2b023e582fa6", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T21:38:35.968Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H02M31.452475S", + "compute_time_sec": 151.452475, + "compute_times": { + "total": 152.61581724137068, + "queued": 16.679736, + "compile": 150.85432086326182, + "clean_up": 0.08890871703624725, + "file_setup": 1.3426462803035975, + "save_results": 0.055491913110017776, + "generate_keys": 0.27397330291569233, + "download_trusted_setup_file": 0.00015251711010932922 + }, + "file_size": 44942284, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "1a12a25a-6ee5-48eb-96bb-2be6c57fe8a8", + "circuit_name": "halo2-circuit", + "circuit_type": "halo2", + "date_created": "2023-12-05T20:56:40.952Z", + "num_proofs": 0, + "proving_scheme": "shplonk", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H02M47.087177S", + "compute_time_sec": 167.087177, + "compute_times": { + "total": 168.2553534731269, + "queued": 15.969391, + "compile": 166.52114362455904, + "clean_up": 0.08557339012622833, + "file_setup": 1.3397669158875942, + "save_results": 0.023856762796640396, + "generate_keys": 0.28439050912857056, + "download_trusted_setup_file": 0.00015943683683872223 + }, + "file_size": 44943541, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "class_name": "halo2_circuit::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:26:39.713Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.813118S", + "compute_time_sec": 1.813118, + "compute_times": { + "total": 3.01790676638484, + "queued": 1.305567, + "clean_up": 0.000589149072766304, + "file_setup": 1.37160237506032, + "nargo_checks": 1.6454425044357777 + }, + "file_size": 3951, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:23:01.975Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.488323S", + "compute_time_sec": 4.488323, + "compute_times": { + "total": 5.69258569739759, + "queued": 19.825139, + "clean_up": 0.0005774423480033875, + "file_setup": 1.3714763727039099, + "nargo_checks": 4.320127023383975 + }, + "file_size": 706, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:09:13.111Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.592621S", + "compute_time_sec": 4.592621, + "compute_times": { + "total": 5.8083343375474215, + "queued": 20.40929, + "clean_up": 0.0006539653986692429, + "file_setup": 1.3848200682550669, + "nargo_checks": 4.422410562634468 + }, + "file_size": 3746, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:46:56.192Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.901192S", + "compute_time_sec": 1.901192, + "compute_times": { + "total": 3.042013813741505, + "queued": 1.216309, + "clean_up": 0.0005592899397015572, + "file_setup": 1.3641308145597577, + "nargo_checks": 1.6769273420795798 + }, + "file_size": 646, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:36.302Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M03.854306S", + "compute_time_sec": 3.854306, + "compute_times": { + "total": 5.005337344482541, + "queued": 1.049939, + "clean_up": 0.0004933271557092667, + "file_setup": 1.3198325717821717, + "nargo_checks": 3.684743066318333 + }, + "file_size": 646, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:01.042Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.321372S", + "compute_time_sec": 1.321372, + "compute_times": { + "total": 2.4821140887215734, + "queued": 1.147771, + "file_setup": 1.3312397608533502, + "nargo_checks": 1.1506206970661879 + }, + "file_size": 649, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:42:50.433Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.254776S", + "compute_time_sec": 1.254776, + "compute_times": { + "total": 2.4055077601224184, + "queued": 1.040189, + "file_setup": 1.3746437635272741, + "nargo_checks": 1.0305692087858915 + }, + "file_size": 653, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", + "circuit_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:40:12.889Z", + "num_proofs": 0, + "proving_scheme": "barretenberg", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.165442S", + "compute_time_sec": 2.165442, + "compute_times": { + "total": 3.31729419529438, + "queued": 18.785446, + "file_setup": 1.312557090073824, + "nargo_checks": 2.004337651655078 + }, + "file_size": 642, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:14:03.406Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.700449S", + "compute_time_sec": 2.700449, + "compute_times": { + "total": 3.862834582105279, + "queued": 1.240923, + "clean_up": 0.0048230309039354324, + "file_setup": 1.4248666781932116, + "create_r1cs": 0.019674228504300117, + "create_wasm": 0.02921307645738125, + "save_results": 0.003329528495669365, + "get_r1cs_info": 0.00027392804622650146, + "groth16_setup": 1.1982815023511648, + "export_verification_key": 1.1812070365995169, + "download_trusted_setup_file": 0.0009372644126415253 + }, + "file_size": 1537235, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:12:15.898Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.249043S", + "compute_time_sec": 7.249043, + "compute_times": { + "total": 8.408733254298568, + "queued": 1.325923, + "clean_up": 0.006613824516534805, + "create_cpp": 0.05350269004702568, + "file_setup": 1.4143117368221283, + "compile_cpp": 4.4514400865882635, + "create_r1cs": 0.020590879023075104, + "save_results": 0.002988070249557495, + "get_r1cs_info": 0.00036310404539108276, + "groth16_setup": 1.2632708046585321, + "export_verification_key": 1.1944759152829647, + "download_trusted_setup_file": 0.0009543616324663162 + }, + "file_size": 1719868, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:08:10.932Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.128823S", + "compute_time_sec": 7.128823, + "compute_times": { + "total": 8.290217800065875, + "queued": 1.176634, + "clean_up": 0.006579896435141563, + "create_cpp": 0.049633922055363655, + "file_setup": 1.407272644340992, + "compile_cpp": 4.411186024546623, + "create_r1cs": 0.020449023693799973, + "save_results": 0.0031916871666908264, + "get_r1cs_info": 0.0003460422158241272, + "groth16_setup": 1.1822046767920256, + "export_verification_key": 1.2081128470599651, + "download_trusted_setup_file": 0.0009996052831411362 + }, + "file_size": 1719871, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:03:13.779Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.214778S", + "compute_time_sec": 0.214778, + "compute_times": { + "total": 1.39355612359941, + "queued": 1.091083, + "create_cpp": 0.005528604611754417, + "file_setup": 1.387480080127716 + }, + "file_size": 1086, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:52.720Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.127570S", + "compute_time_sec": 7.12757, + "compute_times": { + "total": 8.300101362168789, + "queued": 1.180095, + "clean_up": 0.006741989403963089, + "create_cpp": 0.04977302439510822, + "file_setup": 1.3937485367059708, + "compile_cpp": 4.4108633529394865, + "create_r1cs": 0.020317360758781433, + "save_results": 0.003299059346318245, + "get_r1cs_info": 0.0003479979932308197, + "groth16_setup": 1.2352007273584604, + "export_verification_key": 1.1786142773926258, + "download_trusted_setup_file": 0.0009277686476707458 + }, + "file_size": 1720407, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:30.461Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.186269S", + "compute_time_sec": 7.186269, + "compute_times": { + "total": 8.347925985231996, + "queued": 1.11165, + "clean_up": 0.006883986294269562, + "create_cpp": 0.055882176384329796, + "file_setup": 1.3711591251194477, + "compile_cpp": 4.481259575113654, + "create_r1cs": 0.020169200375676155, + "save_results": 0.003566296771168709, + "get_r1cs_info": 0.00035143643617630005, + "groth16_setup": 1.192156182602048, + "export_verification_key": 1.2153031043708324, + "download_trusted_setup_file": 0.0009823162108659744 + }, + "file_size": 1720386, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:38.256Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.180372S", + "compute_time_sec": 0.180372, + "compute_times": { + "total": 1.3365695010870695, + "queued": 1.087627, + "create_cpp": 0.005229467526078224, + "file_setup": 1.331127068027854 + }, + "file_size": 4524, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:05.065Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.227270S", + "compute_time_sec": 0.22727, + "compute_times": { + "total": 1.387567725032568, + "queued": 1.200424, + "create_cpp": 0.005518514662981033, + "file_setup": 1.3818144612014294 + }, + "file_size": 4516, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:49:50.199Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.208167S", + "compute_time_sec": 0.208167, + "compute_times": { + "total": 1.3689671531319618, + "queued": 1.304207, + "create_cpp": 0.005460506305098534, + "file_setup": 1.3632374834269285 + }, + "file_size": 4516, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:47:15.011Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.174086S", + "compute_time_sec": 0.174086, + "compute_times": { + "total": 1.3330576121807098, + "queued": 19.864284, + "create_cpp": 0.005246447399258614, + "file_setup": 1.3275200203061104 + }, + "file_size": 4483, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:05:13.309Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.546964S", + "compute_time_sec": 2.546964, + "compute_times": { + "total": 3.7097523529082537, + "queued": 1.209301, + "clean_up": 0.0005107801407575607, + "file_setup": 1.3446728140115738, + "create_r1cs": 0.007440237328410149, + "create_wasm": 0.016755376011133194, + "save_results": 0.0036186836659908295, + "get_r1cs_info": 0.00025043077766895294, + "groth16_setup": 1.1559293158352375, + "export_verification_key": 1.1794348638504744, + "download_trusted_setup_file": 0.0008941646665334702 + }, + "file_size": 54024, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:03:06.093Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.578866S", + "compute_time_sec": 2.578866, + "compute_times": { + "total": 3.752036551013589, + "queued": 19.44917, + "clean_up": 0.0005340799689292908, + "file_setup": 1.3582166992127895, + "create_r1cs": 0.007758324965834618, + "create_wasm": 0.01886793226003647, + "save_results": 0.0029870178550481796, + "get_r1cs_info": 0.0002993810921907425, + "groth16_setup": 1.1675188429653645, + "export_verification_key": 1.1944289654493332, + "download_trusted_setup_file": 0.0009995810687541962 + }, + "file_size": 54024, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T19:28:31.237Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.697079S", + "compute_time_sec": 2.697079, + "compute_times": { + "total": 3.860771119594574, + "queued": 45.887615, + "clean_up": 0.0005786605179309845, + "file_setup": 1.3233154714107513, + "create_r1cs": 0.007670976221561432, + "create_wasm": 0.017503729090094566, + "save_results": 0.04876627214252949, + "get_r1cs_info": 0.0002490133047103882, + "groth16_setup": 1.2176049146801233, + "export_verification_key": 1.2436372973024845, + "download_trusted_setup_file": 0.0010085124522447586 + }, + "file_size": 54024, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:31:32.434Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M02.383253S", + "compute_time_sec": 2.383253, + "compute_times": { + "total": 3.5439179949462414, + "queued": 1.183641, + "clean_up": 0.0006380276754498482, + "file_setup": 1.3339016744866967, + "create_r1cs": 0.007884668186306953, + "create_wasm": 0.01797499507665634, + "save_results": 0.004143344238400459, + "get_r1cs_info": 0.000565793365240097, + "groth16_setup": 1.0339104048907757, + "export_verification_key": 1.1432477626949549, + "download_trusted_setup_file": 0.0013524582609534264 + }, + "file_size": 54025, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:27:06.804Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.387682S", + "compute_time_sec": 7.387682, + "compute_times": { + "total": 8.548618336208165, + "queued": 18.71772, + "clean_up": 0.0012578116729855537, + "create_cpp": 0.04181432072073221, + "file_setup": 1.3276818674057722, + "compile_cpp": 5.035406060516834, + "create_r1cs": 0.008279835805296898, + "save_results": 0.003593659959733486, + "get_r1cs_info": 0.0006254948675632477, + "groth16_setup": 1.091116052120924, + "export_verification_key": 1.0372483730316162, + "download_trusted_setup_file": 0.0012065665796399117 + }, + "file_size": 229069, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:12.963Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.167528S", + "compute_time_sec": 0.167528, + "compute_times": { + "total": 1.3633314277976751, + "queued": 1.187746, + "create_cpp": 0.005508816801011562, + "file_setup": 1.3575280215591192 + }, + "file_size": 3143, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:02.472Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.364457S", + "compute_time_sec": 0.364457, + "compute_times": { + "total": 1.5177692053839564, + "queued": 1.273971, + "create_cpp": 0.0061752675101161, + "file_setup": 1.5113406758755445 + }, + "file_size": 3149, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:14:05.849Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.285739S", + "compute_time_sec": 0.285739, + "compute_times": { + "total": 1.433143719099462, + "queued": 1.368079, + "create_cpp": 0.00570196658372879, + "file_setup": 1.4271633345633745 + }, + "file_size": 3146, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:11:33.616Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.190295S", + "compute_time_sec": 0.190295, + "compute_times": { + "total": 1.3479114715009928, + "queued": 1.174311, + "create_cpp": 0.006716226227581501, + "file_setup": 1.3409330770373344 + }, + "file_size": 3148, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:09:43.690Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.180634S", + "compute_time_sec": 0.180634, + "compute_times": { + "total": 1.3301707739010453, + "queued": 1.267544, + "create_cpp": 0.00672531221061945, + "file_setup": 1.3231740267947316 + }, + "file_size": 3140, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:08:33.991Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.182958S", + "compute_time_sec": 0.182958, + "compute_times": { + "total": 1.3482676716521382, + "queued": 23.976753, + "create_cpp": 0.005651121959090233, + "file_setup": 1.3422273648902774 + }, + "file_size": 3141, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:48:47.509Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.247686S", + "compute_time_sec": 0.247686, + "compute_times": { + "total": 1.4311082614585757, + "queued": 1.440336, + "create_cpp": 0.0059531861916184425, + "file_setup": 1.4248412810266018 + }, + "file_size": 3144, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:48.347Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.186337S", + "compute_time_sec": 0.186337, + "compute_times": { + "total": 1.3291292237117887, + "queued": 1.389798, + "create_cpp": 0.005445321090519428, + "file_setup": 1.3232828453183174 + }, + "file_size": 3144, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:16.025Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.203844S", + "compute_time_sec": 0.203844, + "compute_times": { + "total": 1.358934978954494, + "queued": 1.23962, + "create_cpp": 0.005131745710968971, + "file_setup": 1.3535515246912837 + }, + "file_size": 3147, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", + "circuit_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:44:43.907Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M00.211198S", + "compute_time_sec": 0.211198, + "compute_times": { + "total": 1.3726867232471704, + "queued": 21.28569, + "create_cpp": 0.04041997902095318, + "file_setup": 1.3318777102977037 + }, + "file_size": 3118, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:58:52.961Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M30.485776S", + "compute_time_sec": 30.485776, + "compute_times": { + "total": 31.713325195014477, + "queued": 1.53179, + "clean_up": 0.0050907619297504425, + "create_cpp": 0.5502202846109867, + "file_setup": 1.4041321221739054, + "compile_cpp": 8.600912608206272, + "create_r1cs": 0.5660600401461124, + "save_results": 0.015263739973306656, + "get_r1cs_info": 0.0007791165262460709, + "groth16_setup": 18.966865327209234, + "export_verification_key": 1.5605580545961857, + "download_trusted_setup_file": 0.043034087866544724 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:57:39.629Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M30.503827S", + "compute_time_sec": 30.503827, + "compute_times": { + "total": 31.731675423681736, + "queued": 1.329617, + "clean_up": 0.005224447697401047, + "create_cpp": 0.5869219042360783, + "file_setup": 1.396010784432292, + "compile_cpp": 8.755487740039825, + "create_r1cs": 0.6137677505612373, + "save_results": 0.015961000695824623, + "get_r1cs_info": 0.0007797814905643463, + "groth16_setup": 18.781834876164794, + "export_verification_key": 1.5326797477900982, + "download_trusted_setup_file": 0.04255225136876106 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:53:41.285Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M29.404746S", + "compute_time_sec": 29.404746, + "compute_times": { + "total": 30.63611113280058, + "queued": 1.393016, + "clean_up": 0.004741033539175987, + "create_cpp": 0.5701096802949905, + "file_setup": 1.4058604761958122, + "compile_cpp": 8.18474044650793, + "create_r1cs": 0.5578694771975279, + "save_results": 0.012727703899145126, + "get_r1cs_info": 0.0007434040307998657, + "groth16_setup": 18.383400244638324, + "export_verification_key": 1.4725701548159122, + "download_trusted_setup_file": 0.042938267812132835 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:50:43.511Z", + "num_proofs": 1, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M28.987369S", + "compute_time_sec": 28.987369, + "compute_times": { + "total": 30.219565767794847, + "queued": 73.815898, + "clean_up": 0.005328845232725143, + "create_cpp": 0.5412574652582407, + "file_setup": 1.408054981380701, + "compile_cpp": 7.979971516877413, + "create_r1cs": 0.5340761709958315, + "save_results": 0.10810003615915775, + "get_r1cs_info": 0.0008541643619537354, + "groth16_setup": 18.02999261394143, + "export_verification_key": 1.5689898952841759, + "download_trusted_setup_file": 0.04256066307425499 + }, + "file_size": 7382369, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:28:21.086Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M12.293107S", + "compute_time_sec": 12.293107, + "compute_times": { + "total": 1.540343570522964, + "queued": 1.149716, + "file_setup": 1.5400111814960837 + }, + "file_size": 3876, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", + "curve": "bls24-315", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", + "circuit_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:27:16.183Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M16.323835S", + "compute_time_sec": 16.323835, + "compute_times": { + "total": 17.493196861818433, + "queued": 20.294201, + "compile": 15.894271181896329, + "clean_up": 0.06409060023725033, + "file_setup": 1.479825496673584, + "save_results": 0.030155125074088573, + "compile_r1cs_and_keygen": 0.024464260786771774 + }, + "file_size": 19740582, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bls24-315", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", + "circuit_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:02:34.146Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M12.571758S", + "compute_time_sec": 12.571758, + "compute_times": { + "total": 13.761676067486405, + "queued": 1.17776, + "compile": 12.108159688301384, + "clean_up": 0.0739858876913786, + "file_setup": 1.5122289564460516, + "save_results": 0.0421032914891839, + "compile_r1cs_and_keygen": 0.02487844880670309 + }, + "file_size": 19740713, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bw6-633", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", + "circuit_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:54:25.971Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M15.096119S", + "compute_time_sec": 15.096119, + "compute_times": { + "total": 16.24127036239952, + "queued": 18.859283, + "compile": 14.711085448041558, + "clean_up": 0.060433197766542435, + "file_setup": 1.4220957215875387, + "save_results": 0.03548778221011162, + "compile_r1cs_and_keygen": 0.011818661354482174 + }, + "file_size": 19740996, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:30:10.306Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.119803S", + "compute_time_sec": 11.119803, + "compute_times": { + "total": 1.4363502692431211, + "queued": 1.930609, + "file_setup": 1.4360267175361514 + }, + "file_size": 19555, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:26:29.959Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.939780S", + "compute_time_sec": 13.93978, + "compute_times": { + "total": 1.4325123187154531, + "queued": 47.459123, + "file_setup": 1.4321166425943375 + }, + "file_size": 3976, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:11:51.697Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M13.350788S", + "compute_time_sec": 13.350788, + "compute_times": { + "total": 1.6208326760679483, + "queued": 19.954132, + "file_setup": 1.6202213428914547 + }, + "file_size": 3976, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:56:28.365Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.241851S", + "compute_time_sec": 11.241851, + "compute_times": { + "total": 12.474130183458328, + "queued": 1.420551, + "compile": 10.825671127066016, + "clean_up": 0.061418959870934486, + "file_setup": 1.5227604731917381, + "save_results": 0.04108254425227642, + "compile_r1cs_and_keygen": 0.022699812427163124 + }, + "file_size": 19741724, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:55:10.340Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.246401S", + "compute_time_sec": 11.246401, + "compute_times": { + "total": 12.475918658077717, + "queued": 1.465348, + "compile": 10.844971090555191, + "clean_up": 0.05561045743525028, + "file_setup": 1.5209588538855314, + "save_results": 0.032638829201459885, + "compile_r1cs_and_keygen": 0.021452149376273155 + }, + "file_size": 19741716, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:53:46.296Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.258641S", + "compute_time_sec": 11.258641, + "compute_times": { + "total": 12.491810835897923, + "queued": 1.516986, + "compile": 10.808460559695959, + "clean_up": 0.06728884018957615, + "file_setup": 1.5511275846511126, + "save_results": 0.04296918027102947, + "compile_r1cs_and_keygen": 0.021483000367879868 + }, + "file_size": 19741716, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", + "circuit_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:52:51.464Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M11.176662S", + "compute_time_sec": 11.176662, + "compute_times": { + "total": 12.414811408147216, + "queued": 1.367679, + "compile": 10.73251723125577, + "clean_up": 0.08182202465832233, + "file_setup": 1.5543472524732351, + "save_results": 0.023770425468683243, + "compile_r1cs_and_keygen": 0.021878626197576523 + }, + "file_size": 19741718, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:50:44.245Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.090040S", + "compute_time_sec": 14.09004, + "compute_times": { + "total": 1.543837545439601, + "queued": 21.153753, + "file_setup": 1.5434527061879635 + }, + "file_size": 4148, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:29:14.159Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M10.460622S", + "compute_time_sec": 10.460622, + "compute_times": { + "total": 1.5692181382328272, + "queued": 1.442896, + "file_setup": 1.568734273314476 + }, + "file_size": 4148, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", + "circuit_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:21:25.657Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Failed", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M14.046979S", + "compute_time_sec": 14.046979, + "compute_times": { + "total": 1.551876936107874, + "queued": 18.025252, + "file_setup": 1.5510845798999071 + }, + "file_size": 4143, + "uploaded_file_name": "", + "verification_key": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", + "circuit_name": "multiplier2", + "circuit_type": "circom", + "date_created": "2023-12-01T19:22:16.230Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M07.920270S", + "compute_time_sec": 7.92027, + "compute_times": { + "total": 9.144548835232854, + "queued": 26.442871, + "clean_up": 0.0016796644777059555, + "create_cpp": 0.05204322002828121, + "file_setup": 1.3975976463407278, + "compile_cpp": 4.545235302299261, + "create_r1cs": 0.008858315646648407, + "save_results": 0.005187435075640678, + "get_r1cs_info": 0.0006442461162805557, + "groth16_setup": 1.5628649536520243, + "export_verification_key": 1.5673195589333773, + "download_trusted_setup_file": 0.0025161877274513245 + }, + "file_size": 225511, + "uploaded_file_name": "", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + } + ], + "rawHeaders": [ + "Content-Length", + "234268", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.569Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.618Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a73646b2d6372656174652d70726f6f662d6d756c7469706c696572322d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed55c16ee23010cdd95f31b2f6001412c70422c172ea5e7b6a7fc01837f16e6247b643b542fcfbca49a0205ab112485dadf22eb66732339ef1bc0c9786eb7252d68593552185a1119786d7d285bc5105b78310324f12080889d319f12b21346957af4ba710c4c92c4de65342e37940e234257308c81d625f456d1d3301b939569b0b1cd77f00ef354dcfea7b8acab0ac64d0be35d0908464895034422fb9b4d0b502385156057302782ef82f0b2e670e3848bf1370681ece9cd40af42b30606a03eb103debda7001832766780e311d0325743a5c00ca9dabec228a369adbaed542a9a34c38275536f1afe2c4267a33b2397737b1d1df1a725d56b238371d4500081d93797a6f7a180c61e795001045f043f08299633a56668a153604f0faf6045255b503b6fc40b83e17eada79295fbe0778d4ca3ac3a47207af1cbeaf56c060d45aef11f21968259483924905abd3fb0e864b74971ee197fc6f72087f5aadee12e12aff098d0ffc9fd129493dff6312f7fcbf15a735edf6d3989ef37f87195ee0191ee3355ee004efbfecb63dbe021ff0df4ab531f28e3f802bfc9f527a31ff694c7bfedf8a634d29f974feef1000fe66792e4a8617800fd3b56b02565511ab64b48d3bc9a4644abe0aeb26ad4dd32678ecbd28560aefe2b2a55a7d37875f7e57279f75aada6c1be15ad159d2ca2aa3b75265cf3e4ca3cb8c76793c6fb56fd22961ed6333e585691c3e3c60b4bfcf58ecd1a3478fff1e7f00f5941d62001000000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/441c1d46-a6e4-4e73-98be-1c87e892c9bb/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "body": "", + "status": 200, + "response": { + "proof_id": "441c1d46-a6e4-4e73-98be-1c87e892c9bb", + "circuit_name": "circom-multiplier2", + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:58.370Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M04.948502S", + "compute_time_sec": 4.948502, + "compute_times": { + "prove": 4.804858028001036, + "total": 4.954793066997809, + "queued": 4.113693, + "clean_up": 0.005270341996947536, + "file_setup": 0.01681686499796342, + "save_results": 0.0022578030002478044, + "export_calldata": 0.10960615099975257, + "generate_witness_c": 0.015163871001277585 + }, + "file_size": 1352, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": { + "pi_a": [ + "9719746164756714403251461078048748898417532511853745627298274265763307211388", + "12524760438976850441969686535306640701689167063106448233705828441672218093764", + "1" + ], + "pi_b": [ + [ + "19464397823686107456319423853784639506670033208935916157489684692381314290365", + "16760420157632234053418297010278476735787478431580136981497509036184206188849" + ], + [ + "21371537607389460681980564582719545798910142899853353173916140483043325994690", + "18635879634062556811904079427113198177316036158018823238654630255711007281776" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "21567880776257535607058989531139923613325992061217666356632889562199294971746", + "2550317741210071340281044694842261445739577413610456669025258097830240820126", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "smart_contract_calldata": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "4165", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.569Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.618Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "551", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "Queued", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "554", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:30 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0006910823285579681, + "queued": 0.609665 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "604", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:31 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00037307431921362877, + "queued": 0.796402 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0006933361291885376, + "queued": 0.498274 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "604", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.569Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "604", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.618Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "602", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:32 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0006910823285579681, + "queued": 0.609665 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "604", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "607", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00037307431921362877, + "queued": 0.796402 }, - { - "proof_id": "1d04bca7-fbe0-40bd-a3f8-daef606cd4cd", - "circuit_name": "sudoku", - "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", - "circuit_type": "circom", - "date_created": "2023-12-02T03:52:28.815Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.662090S", - "compute_time_sec": 6.66209, - "compute_times": { - "prove": 5.845281148329377, - "total": 7.817341674119234, - "queued": 28.321561, - "clean_up": 0.0009510181844234467, - "file_setup": 1.8957333201542497, - "save_results": 0.06738575547933578, - "generate_witness_c": 0.007616886869072914 - }, - "file_size": 1037, - "proof_input": null, - "proof": null, - "public": null, - "verification_key": null, - "error": null - } + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:33 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0006933361291885376, + "queued": 0.498274 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, "rawHeaders": [ "Content-Length", - "187148", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:33 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18665,23 +25961,26 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed534d6fe23010cdd9bf6284f600b4c48e494082e5d4bdf6d4fe0163dc64ba891dd90ed5aaea7f5f39095f62575d090eab8a77713c2f33e3b1df9368a5a92655537aac4b549653895636e863d952d1e5608ccdd21422c69279c6c2ca184fbb3570f32944499a659c4d793a4b2396cc67f30c227685de9fa2715ed8885ddcab9b05f6eb7f80c39d6627f77b8cda8abc12d0bd35f098c56c49081d93e7021df45200afaaba145e812c94fce9c017c283040c5f0a76e291c2a3d1605e4080d01b58c7e4c934562a183e0a2b0b48f83d70c6a7a30590c2fbda2d28dd18e97aa9c56868aebc479d4fc2ab78b5a16f16db7d7f1247ff35519aaac6f234754c0108d90ff378103d0c47f01e4800a0147e28590abb1fc761ae45e96280c0773b405d371ec4f20fc1f569d0343e44e5f2d0e0c168e7ad40ed7755257c5fad40c0b8cbfe20244c60b4d21e2a811a56c7e71d8e96e42a1a91e7fe77a83716e35767f4555a7ce6ff29e767fee76c76f3ffa538bed3bff9ff9d000cbe3959a84a0c1630d8b9ab1781a86b2a6aa4dba48f4c2aa1f145393fe9725a990cee43152d2a154a9c4baae37b1f3effaa8f7eeba9c66edbe05af32ced62b5355bd4f95368d372b935be48661dfb865e2be71e5a972bdb16bcbb1b908febd8e2861b6eb8e1cbe33733e7a60f000c00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 495, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -18693,11 +25992,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:33 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18715,22 +26014,25 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -18743,11 +26045,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:33 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18765,22 +26067,25 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -18793,11 +26098,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "602", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:33 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18815,23 +26120,79 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003edd3bd6edb30100060cf7a8a83d0c176625196141bb0eb295d33252f40d38cc5562209f2e4a008faeea57e9c7f20056ab81dee5b24dd89a428de09e584a9677553a1b295922e6322841a8589e852a3bf9706cbe5b2bb066fafe962998fe6c5555114699ab5f17991e7c508d213acfda9c6237700e758ea7f641ddfd71cfab3862c4993741d456c1add95cac3500a80b2b6154709a294e287072c398200d5de4938168fe0a88c06730f1cb8dec136896e4de38484f10d77a284797609599ae593154425a2f52bc67646f8a1d41265d85e222abd9fb5a78272c71e9cea9e872ff1ec4f0786b055d5eba1530610454f9bb9792e7a184fe0b14d020063f04d8a8abba7ed78b5d7bcf2497821e4fb2750da36087cfd4170fb3a681a6ca362fdbcc0b5d11e1d571a8fb30af8bad9841f37ed47ff8aa27607464b8d50871761f3f27bc793757492f317effbdf2bbd732af9ee8d3ec9129ff67f9e656ffa3f5f140beaff73780cb5177ff1a1af6b1eaf203e76d75004dc5ac6ad6287f91099d55cab7be971d68fe9ca24be6c67d1bc96ed14ef4baacf0f7d78f7d3be786d4835eed005b73abb2afa9875e610daf7b65da6cbed9dc172bee8b30f0ab5f4febaeb72e9ba092f2ee2d037fffa8f12420821841042082184104208218410420821849cd76f0d0ac6f3002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0006910823285579681, + "queued": 0.609665 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "604", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -18843,11 +26204,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:34 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18866,50 +26227,94 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d571dee9-1a2b-4549-9bfd-5f639823dd8a/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "d571dee9-1a2b-4549-9bfd-5f639823dd8a", - "circuit_name": "poseidon", - "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", - "circuit_type": "gnark", - "date_created": "2024-03-02T22:19:36.182Z", - "perform_verify": false, - "status": "Ready", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", + "team": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": { + "total": 0.00037307431921362877, + "queued": 0.796402 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "608", + "Content-Type", + "application/json; charset=utf-8", + "Date", + "Thu, 14 Mar 2024 20:02:34 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "gunicorn", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "num_proofs": 0, + "proving_scheme": "groth16", + "status": "In Progress", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.150585S", - "compute_time_sec": 0.150585, + "compute_time": null, + "compute_time_sec": null, "compute_times": { - "prove": 0.11676173796877265, - "total": 0.15572588506620377, - "queued": 51.669893, - "clean_up": 0.009185672039166093, - "file_setup": 0.027514968067407608, - "save_results": 0.001868820982053876 - }, - "file_size": 532, - "proof_input": { - "PreImage": "297262668938251460872476410954775437897592223497" - }, - "proof": { - "proof": "H7CYWYy5fapXQZFqhqYODOt/MnOtsN89v86s/Q+PQ6oG3lWG0iy1CSLIEhoFBX6wdQAoYdjiejspuxoTRy5lvQAcU6QNmIVumomuSb4UlNRK+kfWyCMHMjSAGK3SSQl8E3TkYs+VMPdfwQ9ukDuMb8/WFg2sqPEblIbsaROuRf4csW1sgjIC5VE2vCGvio5Xgg1wyAyoM0oN5wCFfopC4xZB78LE+AbmszSsz+RjFwRiE7pnKZ0E+fPvLbT9P3BcDIJprcSIgqD913l7RgNfcoAa4tyPxGEt5B6898oxp34J5Veq1n7uZF9Y7oy4JdlX/m2X7aMoTFPzW5jdQWQ2pgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" - }, - "public": { - "Hash": "21099541378821686330832093407308585959971016892597585818017774528142419287929" + "total": 0.00028487294912338257, + "queued": 0.522243 }, - "verification_key": { - "verifying_key": "AZuKAsBYS9XUoUekCdnwUdpv66Ydjvc+THgzZ1bEjDECKWQSDajIzlLNtTC8e98dCZP+BDWR+8kLYBdFeyA7CSuDePqNEV3a2tuIJt0BPb8KanU9U27h+k0q3NWp10wpIpGYH1zUvZ1n4UNnZRkZ9QGsvqnFMCSLdbvRzWATaHQGoYj4Mb/pICxPN7hpzb1oP9G265bukuJd2J5IyosRgCISjzx8DpwO+uPTpah+/qnzBgpcsgVx6dBuP2/tyyMXBAiaJrnU0f4W4e84R9ZN4WLcAb98ZfwBV9FI0HZhIV4CvBzV8q2OgKXsymQhs9N+ssmAV7B9zz92r9BF1p0q3i54Z4to9mI9g9kdbjc7lAuKR2Td9bDdgYll5VSQ5V8gJY84yUagA++d5ZqAZkcNw980TBsJIMzTctGRH9AkReYkGFNW2h+HmzpGfz3ILeyQZEe3YhFAePv0em5iGMIt/hNPoZt3tcdqFLTjqxb2YZxEJka25BOsG9DoUIGOG/AGJ8c/ekNbrmgmABdMWduVLqiMNVHSgHbS/nitebSDTVkSuz2FFU2Pl9z0hiKQxB1x8O9KBHLJyJNjNd4q0e92QiMsRz6ZGJCZjWyRuipTAJJ91f2xcUuq7H5bSxPw5eQsCctSpzeCkfid0bExrasUYKD9IKG3KUPhLd+tJQrppq0hg70mG5hWDeb56u87wi4bCiMpjPLft0yxzxcEdLuyoCsaqQusl4faufJfaBlQnLfeICOkAVF1WFdi+DY+e34xAAAAAgnpuIbOMgN7mEntfuHbhUsvzOBPMfz+Iz2QNqvZ1EtGAYrAMDgOjShXid1AiYWe2fVauLRx66IE71umcRIgaGgjGeoJYf8qz7NuHYtuGHJ6hYf9PfmFEOUvoVuB/qUY+As3OhG2Yk6Cs6eaLSJk7VqO2Isl6q8w2420rG4EoeRSAAAAAA8JQCqWantqQEe3L6ctcwNmXSDpD/BUNh+XS5VUcVbBFU9OU6X1vMwfkRD5Xwf55xpkb5Zwk4IhhGr0jRgdtp4QUlk1INxSbo3Y+wawJOkOHPf0h4K4jTYrDVYTJslzgy8aujsa0C3SRYToyPGwJJlmQCpONjzVszK2PxRd0GIQAXDTddlQk/cPvqkCp8b1GCTTJowDZ3DWWa764NWTH+Ef5GXTg7RyjDqlzs7LwJnHYOPz/OuedGDP7MQM0fr+VhtIEuHGqFsviWa+M2Zaa1aWcQHjIr+kpQqciJaayZKMKVEcJBO92pUgIf1q684Pas0AwyiJoBQQjsfYs+DzmcI=" - }, - "error": null + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "verification_key": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null }, "rawHeaders": [ "Content-Length", - "2557", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:34 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18927,22 +26332,25 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -18955,11 +26363,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:56 GMT", + "Thu, 14 Mar 2024 20:02:34 GMT", "Referrer-Policy", "same-origin", "Server", @@ -18977,22 +26385,25 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19005,11 +26416,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "602", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:34 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19028,23 +26439,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 495, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_times": { + "total": 0.0006910823285579681, + "queued": 0.609665 + }, + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", @@ -19055,11 +26469,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19078,23 +26492,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -19105,11 +26522,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19128,23 +26545,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.496Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.00037307431921362877, + "queued": 0.796402 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -19155,11 +26575,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19178,22 +26598,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19205,11 +26628,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19228,21 +26651,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19255,11 +26681,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19278,21 +26704,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19305,11 +26734,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "602", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:57 GMT", + "Thu, 14 Mar 2024 20:02:35 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19328,14 +26757,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -19343,11 +26772,11 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.00038475729525089264, - "queued": 0.480293 + "total": 0.0006910823285579681, + "queued": 0.609665 }, - "file_size": 495, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", @@ -19358,11 +26787,11 @@ }, "rawHeaders": [ "Content-Length", - "608", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:58 GMT", + "Thu, 14 Mar 2024 20:02:36 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19381,23 +26810,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -19408,11 +26840,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:58 GMT", + "Thu, 14 Mar 2024 20:02:36 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19431,14 +26863,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.496Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -19446,11 +26878,11 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004733838140964508, - "queued": 0.748407 + "total": 0.00037307431921362877, + "queued": 0.796402 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -19461,11 +26893,11 @@ }, "rawHeaders": [ "Content-Length", - "604", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:58 GMT", + "Thu, 14 Mar 2024 20:02:36 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19484,22 +26916,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19511,11 +26946,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:58 GMT", + "Thu, 14 Mar 2024 20:02:36 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19534,21 +26969,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19561,11 +26999,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:58 GMT", + "Thu, 14 Mar 2024 20:02:36 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19584,21 +27022,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19611,11 +27052,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "602", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:58 GMT", + "Thu, 14 Mar 2024 20:02:37 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19634,14 +27075,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -19649,11 +27090,11 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.00038475729525089264, - "queued": 0.480293 + "total": 0.0006910823285579681, + "queued": 0.609665 }, - "file_size": 495, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", @@ -19664,11 +27105,11 @@ }, "rawHeaders": [ "Content-Length", - "608", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:37 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19687,14 +27128,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -19702,11 +27143,11 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004733838140964508, - "queued": 0.748407 + "total": 0.0007268046028912067, + "queued": 0.512784 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -19717,11 +27158,11 @@ }, "rawHeaders": [ "Content-Length", - "604", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:37 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19740,23 +27181,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.496Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.00037307431921362877, + "queued": 0.796402 + }, + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -19767,11 +27211,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:38 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19790,22 +27234,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -19817,11 +27264,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:38 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19840,21 +27287,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19867,11 +27317,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:38 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19890,21 +27340,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -19917,11 +27370,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "602", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:28:59 GMT", + "Thu, 14 Mar 2024 20:02:38 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19940,14 +27393,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -19955,11 +27408,11 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.00038475729525089264, - "queued": 0.480293 + "total": 0.0006910823285579681, + "queued": 0.609665 }, - "file_size": 495, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 529, + "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", @@ -19970,11 +27423,11 @@ }, "rawHeaders": [ "Content-Length", - "608", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:00 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -19993,23 +27446,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -20020,11 +27476,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20043,14 +27499,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.496Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -20058,11 +27514,11 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004733838140964508, - "queued": 0.748407 + "total": 0.00037307431921362877, + "queued": 0.796402 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 537, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", @@ -20073,11 +27529,11 @@ }, "rawHeaders": [ "Content-Length", - "604", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20096,22 +27552,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20123,11 +27582,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20146,21 +27605,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006644092500209808, + "queued": 0.685611 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -20173,11 +27635,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20196,21 +27658,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.00038167554885149, + "queued": 0.472485 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -20223,11 +27688,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "602", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:01 GMT", + "Thu, 14 Mar 2024 20:02:39 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20246,14 +27711,14 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", "status": "In Progress", @@ -20261,10 +27726,10 @@ "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.00038475729525089264, - "queued": 0.480293 + "total": 0.0007268046028912067, + "queued": 0.512784 }, - "file_size": 495, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20276,11 +27741,11 @@ }, "rawHeaders": [ "Content-Length", - "608", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20299,21 +27764,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006910823285579681, + "queued": 0.609665 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -20326,11 +27794,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20349,41 +27817,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", + "path": "/api/v1/circuit/7e823c8e-e303-426c-b6d6-9edf3a3d754e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.496Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, + "compute_time": "P0DT00H00M08.573115S", + "compute_time_sec": 8.573115, "compute_times": { - "total": 0.0004733838140964508, - "queued": 0.748407 - }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "total": 8.579251876100898, + "queued": 0.796402, + "clean_up": 0.03129182104021311, + "create_cpp": 0.04595769103616476, + "file_setup": 0.030209324788302183, + "compile_cpp": 4.6374000972136855, + "create_r1cs": 0.04609727067872882, + "save_results": 0.0079621197655797, + "get_r1cs_info": 0.0005209962837398052, + "groth16_setup": 1.1605738401412964, + "export_verification_key": 1.2923613898456097, + "download_trusted_setup_file": 0.001424906775355339, + "solidity_contract_generation": 1.3250793442130089 + }, + "file_size": 236740, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "604", + "1050", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20402,22 +27881,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.00028487294912338257, + "queued": 0.522243 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20429,11 +27911,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "608", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20452,38 +27934,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.569Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, + "compute_time": "P0DT00H00M09.145998S", + "compute_time_sec": 9.145998, + "compute_times": { + "total": 9.15299117192626, + "queued": 0.685611, + "clean_up": 0.029666390269994736, + "create_cpp": 0.0658210851252079, + "file_setup": 0.03178653493523598, + "compile_cpp": 4.756836257874966, + "create_r1cs": 0.026396218687295914, + "save_results": 0.01597248762845993, + "get_r1cs_info": 0.0003932081162929535, + "groth16_setup": 1.4214057549834251, + "export_verification_key": 1.4400159232318401, + "download_trusted_setup_file": 0.0015518292784690857, + "solidity_contract_generation": 1.3624810725450516 + }, + "file_size": 236732, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "551", + "1047", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20502,38 +27998,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, + "compute_time": "P0DT00H00M09.307601S", + "compute_time_sec": 9.307601, + "compute_times": { + "total": 9.314248332753778, + "queued": 0.472485, + "clean_up": 0.02926310896873474, + "create_cpp": 0.04471412394195795, + "file_setup": 0.03804492764174938, + "compile_cpp": 4.608692822046578, + "create_r1cs": 0.014758244156837463, + "save_results": 0.008313399739563465, + "get_r1cs_info": 0.0004539685323834419, + "groth16_setup": 1.3243383038789034, + "export_verification_key": 1.6189338900148869, + "download_trusted_setup_file": 0.001455250196158886, + "solidity_contract_generation": 1.6248986180871725 + }, + "file_size": 236732, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "551", + "1048", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:02 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20551,42 +28061,37 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/6621575b-2045-4338-8de5-8ab673bf7717/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "proof_id": "754cb433-489d-4827-9514-95f7d2f6890d", "circuit_name": "circom-multiplier2", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "In Progress", + "date_created": "2024-03-14T20:02:40.706Z", + "perform_verify": false, + "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": { - "total": 0.00038475729525089264, - "queued": 0.480293 - }, - "file_size": 495, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_times": null, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "608", + "501", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20605,41 +28110,145 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", + "path": "/api/v1/circuit/15eeccf5-0331-47eb-bbb8-85de2cc64967/detail?include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", + "date_created": "2024-03-14T20:02:30.618Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, + "compute_time": "P0DT00H00M09.307601S", + "compute_time_sec": 9.307601, "compute_times": { - "total": 0.0004733838140964508, - "queued": 0.748407 - }, - "file_size": 529, + "total": 9.314248332753778, + "queued": 0.472485, + "clean_up": 0.02926310896873474, + "create_cpp": 0.04471412394195795, + "file_setup": 0.03804492764174938, + "compile_cpp": 4.608692822046578, + "create_r1cs": 0.014758244156837463, + "save_results": 0.008313399739563465, + "get_r1cs_info": 0.0004539685323834419, + "groth16_setup": 1.3243383038789034, + "export_verification_key": 1.6189338900148869, + "download_trusted_setup_file": 0.001455250196158886, + "solidity_contract_generation": 1.6248986180871725 + }, + "file_size": 236732, "uploaded_file_name": "circom-multiplier2.tgz", - "verification_key": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "604", + "3688", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20658,38 +28267,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/proof/754cb433-489d-4827-9514-95f7d2f6890d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "754cb433-489d-4827-9514-95f7d2f6890d", "circuit_name": "circom-multiplier2", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:40.706Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "551", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:40 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20708,22 +28318,25 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 497, + "compute_times": { + "total": 0.0007268046028912067, + "queued": 0.512784 + }, + "file_size": 555, "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, @@ -20735,11 +28348,11 @@ }, "rawHeaders": [ "Content-Length", - "554", + "607", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20758,21 +28371,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006910823285579681, + "queued": 0.609665 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -20785,11 +28401,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20808,38 +28424,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/circuit/e9f39a75-0926-4bd4-9a87-323795b468ff/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", + "date_created": "2024-03-14T20:02:30.659Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_time": "P0DT00H00M09.375539S", + "compute_time_sec": 9.375539, + "compute_times": { + "total": 9.381464813835919, + "queued": 0.522243, + "clean_up": 0.05025594122707844, + "create_cpp": 0.04334672819823027, + "file_setup": 0.025018360465765, + "compile_cpp": 4.648743998259306, + "create_r1cs": 0.014843899756669998, + "save_results": 0.00782844889909029, + "get_r1cs_info": 0.00040088966488838196, + "groth16_setup": 1.3209671378135681, + "export_verification_key": 1.6962075987830758, + "download_trusted_setup_file": 0.001315578818321228, + "solidity_contract_generation": 1.572251359000802 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "551", + "1048", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:03 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20857,52 +28487,37 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/circom-multiplier2:sdk-create-proof-multiplier2-circuit/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.689Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", + "date_created": "2024-03-14T20:02:41.846Z", + "perform_verify": false, + "status": "Queued", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.784180S", - "compute_time_sec": 6.78418, - "compute_times": { - "total": 6.789581563323736, - "queued": 0.480293, - "clean_up": 0.008159313350915909, - "create_cpp": 0.04301437921822071, - "file_setup": 0.03162584872916341, - "compile_cpp": 4.316627806052566, - "create_r1cs": 0.01355265872552991, - "save_results": 0.006111504044383764, - "get_r1cs_info": 0.00033407704904675484, - "groth16_setup": 1.2013251609168947, - "export_verification_key": 1.1670180107466877, - "download_trusted_setup_file": 0.0014280471950769424 - }, - "file_size": 225416, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, "rawHeaders": [ "Content-Length", - "1000", + "501", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:04 GMT", + "Thu, 14 Mar 2024 20:02:41 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20921,38 +28536,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:41.846Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "551", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:04 GMT", + "Thu, 14 Mar 2024 20:02:42 GMT", "Referrer-Policy", "same-origin", "Server", @@ -20971,38 +28587,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/proof/754cb433-489d-4827-9514-95f7d2f6890d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "proof_id": "754cb433-489d-4827-9514-95f7d2f6890d", "circuit_name": "circom-multiplier2", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:40.706Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.0005337180009519216, + "queued": 0.531658 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "551", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:04 GMT", + "Thu, 14 Mar 2024 20:02:42 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21021,41 +28641,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/circuit/f3089b5b-27f5-4dfd-918a-4480596ccde2/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", + "date_created": "2024-03-14T20:02:30.442Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "In Progress", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, + "compute_time": "P0DT00H00M10.789405S", + "compute_time_sec": 10.789405, "compute_times": { - "total": 0.0004815077409148216, - "queued": 8.196652 - }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "total": 10.882488801609725, + "queued": 0.512784, + "clean_up": 0.04104336490854621, + "create_cpp": 0.052224196027964354, + "file_setup": 0.11650297930464149, + "compile_cpp": 4.446984312962741, + "create_r1cs": 0.01346581382676959, + "save_results": 0.006408482789993286, + "get_r1cs_info": 0.0003145672380924225, + "groth16_setup": 1.3689304389990866, + "export_verification_key": 1.3372940109111369, + "download_trusted_setup_file": 2.2383047258481383, + "solidity_contract_generation": 1.2602891041897237 + }, + "file_size": 236758, + "uploaded_file_name": "circom-multiplier2.tar.gz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "604", + "1051", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:05 GMT", + "Thu, 14 Mar 2024 20:02:42 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21074,38 +28705,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/f7eb912b-520d-49ef-801d-4b3a161c81b7/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.323Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, + "compute_time": "P0DT00H00M11.101823S", + "compute_time_sec": 11.101823, + "compute_times": { + "total": 11.179332848172635, + "queued": 0.609665, + "clean_up": 0.0485866479575634, + "create_cpp": 0.052952506113797426, + "file_setup": 0.09853811888024211, + "compile_cpp": 4.571448627859354, + "create_r1cs": 0.014488603919744492, + "save_results": 0.005894129164516926, + "get_r1cs_info": 0.0004602782428264618, + "groth16_setup": 1.4362294389866292, + "export_verification_key": 1.3798753838054836, + "download_trusted_setup_file": 2.1441893419250846, + "solidity_contract_generation": 1.4259786889888346 + }, + "file_size": 236732, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "551", + "1048", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:05 GMT", + "Thu, 14 Mar 2024 20:02:42 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21124,41 +28769,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:41.846Z", + "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004815077409148216, - "queued": 8.196652 + "total": 0.0003321470030641649, + "queued": 0.423345 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "604", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:07 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21177,38 +28823,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/proof/754cb433-489d-4827-9514-95f7d2f6890d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "proof_id": "754cb433-489d-4827-9514-95f7d2f6890d", "circuit_name": "circom-multiplier2", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:40.706Z", + "perform_verify": false, + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_times": { + "total": 0.0005337180009519216, + "queued": 0.531658 + }, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "551", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:07 GMT", + "Thu, 14 Mar 2024 20:02:43 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21227,41 +28877,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:41.846Z", + "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004815077409148216, - "queued": 8.196652 + "total": 0.0003321470030641649, + "queued": 0.423345 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "604", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:08 GMT", + "Thu, 14 Mar 2024 20:02:44 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21280,38 +28931,169 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/proof/754cb433-489d-4827-9514-95f7d2f6890d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "proof_id": "754cb433-489d-4827-9514-95f7d2f6890d", "circuit_name": "circom-multiplier2", + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Queued", + "date_created": "2024-03-14T20:02:40.706Z", + "perform_verify": false, + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "compute_time": "P0DT00H00M03.209503S", + "compute_time_sec": 3.209503, + "compute_times": { + "prove": 3.019478178001009, + "total": 3.215366175001691, + "queued": 0.531658, + "clean_up": 0.011742571001377655, + "file_setup": 0.03197235500192619, + "save_results": 0.0019461640004010405, + "export_calldata": 0.10381857899847091, + "generate_witness_c": 0.04587460999755422 + }, + "file_size": 1352, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": { + "pi_a": [ + "13250556689118506298472281133594174305183174470401643911310722921123311098081", + "11469305354419637999252608014351810201585232572780765595852600701797730057349", + "1" + ], + "pi_b": [ + [ + "18415306210854457227544095807840063181617993929457181876806889014348418744033", + "20736985747927051230060534117018322818363714079535344885463460954185086029585" + ], + [ + "20147313377596594064539320540172537510373455291241001483858963577625962748382", + "16254999921369388929539565626081607713913583751570145907482061576237710138705" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "3086296713163967505005934612377139382294836864499671006887689281901994551471", + "4282894962254758633093061957969086430887487541591233914259436778507384537238", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "smart_contract_calldata": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null }, "rawHeaders": [ "Content-Length", - "551", + "4164", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:08 GMT", + "Thu, 14 Mar 2024 20:02:44 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21330,41 +29112,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:41.846Z", + "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004815077409148216, - "queued": 8.196652 + "total": 0.0003321470030641649, + "queued": 0.423345 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "604", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:09 GMT", + "Thu, 14 Mar 2024 20:02:45 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21383,21 +29166,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.459Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0006933361291885376, + "queued": 0.498274 + }, "file_size": 529, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, @@ -21410,11 +29196,11 @@ }, "rawHeaders": [ "Content-Length", - "551", + "604", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:09 GMT", + "Thu, 14 Mar 2024 20:02:45 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21433,41 +29219,42 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:41.846Z", + "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004815077409148216, - "queued": 8.196652 + "total": 0.0003321470030641649, + "queued": 0.423345 }, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "604", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:10 GMT", + "Thu, 14 Mar 2024 20:02:46 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21486,38 +29273,52 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", + "date_created": "2024-03-14T20:02:30.459Z", "num_proofs": 0, "proving_scheme": "groth16", - "status": "Queued", + "status": "Ready", "team": "evan-sangaline", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, + "compute_time": "P0DT00H00M15.009296S", + "compute_time_sec": 15.009296, + "compute_times": { + "total": 15.102583220694214, + "queued": 0.498274, + "clean_up": 0.04279625462368131, + "create_cpp": 0.07173184677958488, + "file_setup": 0.12286364380270243, + "compile_cpp": 4.595611970406026, + "create_r1cs": 0.014224277809262276, + "save_results": 0.0057679093442857265, + "get_r1cs_info": 0.00045422976836562157, + "groth16_setup": 1.2457834123633802, + "export_verification_key": 1.1942963958717883, + "download_trusted_setup_file": 6.611268437001854, + "solidity_contract_generation": 1.197091506794095 + }, + "file_size": 236732, "uploaded_file_name": "circom-multiplier2.tgz", "verification_key": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "551", + "1048", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:10 GMT", + "Thu, 14 Mar 2024 20:02:46 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21535,52 +29336,37 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.770Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", + "date_created": "2024-03-14T20:02:47.053Z", + "perform_verify": false, + "status": "Queued", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.685175S", - "compute_time_sec": 6.685175, - "compute_times": { - "total": 6.691927400883287, - "queued": 8.196652, - "clean_up": 0.009768068790435791, - "create_cpp": 0.0421549417078495, - "file_setup": 0.026188824325799942, - "compile_cpp": 4.305569048970938, - "create_r1cs": 0.013142664916813374, - "save_results": 0.002773165237158537, - "get_r1cs_info": 0.0003167171962559223, - "groth16_setup": 1.1705206399783492, - "export_verification_key": 1.1197901628911495, - "download_trusted_setup_file": 0.0012216591276228428 - }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, "rawHeaders": [ "Content-Length", - "998", + "501", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:11 GMT", + "Thu, 14 Mar 2024 20:02:47 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21599,38 +29385,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", + "date_created": "2024-03-14T20:02:47.053Z", + "perform_verify": false, "status": "Queued", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 529, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "551", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:11 GMT", + "Thu, 14 Mar 2024 20:02:47 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21648,36 +29435,43 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "body": "", + "status": 200, "response": { - "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:29:12.038Z", + "date_created": "2024-03-14T20:02:41.846Z", "perform_verify": false, - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.0003321470030641649, + "queued": 0.423345 + }, "file_size": null, - "proof_input": null, + "proof_input": { + "a": "5", + "b": "4" + }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "468", + "570", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:12 GMT", + "Thu, 14 Mar 2024 20:02:47 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21696,15 +29490,15 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9657c1ad-90f8-4368-bda3-ee16f3f26b60/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:29:12.038Z", + "date_created": "2024-03-14T20:02:47.053Z", "perform_verify": false, "status": "Queued", "team": "evan-sangaline", @@ -21718,16 +29512,17 @@ }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "484", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:29:12 GMT", + "Thu, 14 Mar 2024 20:02:48 GMT", "Referrer-Policy", "same-origin", "Server", @@ -21746,48 +29541,49 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9657c1ad-90f8-4368-bda3-ee16f3f26b60/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/4a5cf167-44d3-48f0-9741-8e271055ebb8/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", + "proof_id": "4a5cf167-44d3-48f0-9741-8e271055ebb8", "circuit_name": "circom-multiplier2", - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", "circuit_type": "circom", - "date_created": "2024-03-12T00:29:12.038Z", + "date_created": "2024-03-14T20:02:41.846Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.378782S", - "compute_time_sec": 0.378782, + "compute_time": "P0DT00H00M05.678236S", + "compute_time_sec": 5.678236, "compute_times": { - "prove": 0.3259259192273021, - "total": 0.3832521459553391, - "queued": 0.467242, - "clean_up": 0.004174598027020693, - "file_setup": 0.018889360828325152, - "save_results": 0.0015030219219624996, - "generate_witness_c": 0.032414837973192334 - }, - "file_size": 714, + "prove": 5.519589993000409, + "total": 5.683645028002502, + "queued": 0.423345, + "clean_up": 0.008388784000999294, + "file_setup": 0.018539207998401253, + "save_results": 0.0024853940012690146, + "export_calldata": 0.11209166899789125, + "generate_witness_c": 0.02221783300046809 + }, + "file_size": 1352, "proof_input": { "a": "5", "b": "4" }, "proof": { "pi_a": [ - "5548117448351207395194683044014875474006945943033088699123461253730908349032", - "2904002199462150880815799754556161688563728695229384543326400659803222603299", + "4281634187158293052647571784024308917967604705432734065330111859447616308007", + "15637821656675887449462244569529222145014014382940356519670861941748495093682", "1" ], "pi_b": [ [ - "19936045646405159549729317363429168686676776493630686410915091811923420587993", - "17889011523873426775313839984473579780833567980917459313146686435854191034538" + "21404320641104533858817667180946805949362817873959245805418969318935442144976", + "15460954623894762234218319588147765633965807124928371851891073586644794462600" ], [ - "17201861197173845958971370999564672432292465281731526998768653708969661637990", - "20342908507756810958111859573337936294003154478566688606750383465432913549356" + "13774909454586512313157820697063373680181158896428355267683983493359011420444", + "13558182427309547790870382134183887273780619115805449043751090268921738084561" ], [ "1", @@ -21795,8 +29591,8 @@ ] ], "pi_c": [ - "5493827996453581298406289367351152664390116573524165639053281829962682922293", - "13830351924256074590014418352933689318358123767317771525921483472396355764469", + "3625253023135075108541166771966574475403467732239833945127824405556404528033", + "13046538367132103990043727866951256629271825459812703065653199144369497006547", "1" ], "protocol": "groth16" @@ -21804,6 +29600,7 @@ "public": [ "20" ], + "smart_contract_calldata": null, "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -21872,161 +29669,41 @@ ], [ [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "4093", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:29:13 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/6859c5a2-7d9e-4e8f-80f7-764622fd6d84/proofs?include_proof_input=false&include_proof=false&include_public=false&include_verification_key=false", - "body": "", - "status": 200, - "response": [ - { - "proof_id": "9657c1ad-90f8-4368-bda3-ee16f3f26b60", - "circuit_name": "circom-multiplier2", - "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", - "circuit_type": "circom", - "date_created": "2024-03-12T00:29:12.038Z", - "perform_verify": false, - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M00.378782S", - "compute_time_sec": 0.378782, - "compute_times": { - "prove": 0.3259259192273021, - "total": 0.3832521459553391, - "queued": 0.467242, - "clean_up": 0.004174598027020693, - "file_setup": 0.018889360828325152, - "save_results": 0.0015030219219624996, - "generate_witness_c": 0.032414837973192334 - }, - "file_size": 714, - "proof_input": null, - "proof": null, - "public": null, - "verification_key": null, - "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "717", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:29:13 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/8607a391-84cf-4d0e-ae50-a120fa1578cc/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.765Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.844521S", - "compute_time_sec": 6.844521, - "compute_times": { - "total": 6.849527047015727, - "queued": 0.748407, - "clean_up": 0.021212157793343067, - "create_cpp": 0.042430317029356956, - "file_setup": 0.028176416642963886, - "compile_cpp": 4.403458681888878, - "create_r1cs": 0.013620416633784771, - "save_results": 0.007373335771262646, - "get_r1cs_info": 0.00034633465111255646, - "groth16_setup": 1.1376929804682732, - "export_verification_key": 1.1933853346854448, - "download_trusted_setup_file": 0.0013576876372098923 - }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, + "error": null }, "rawHeaders": [ "Content-Length", - "1001", + "4165", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:12 GMT", + "Thu, 14 Mar 2024 20:02:49 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22045,51 +29722,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/detail?include_verification_key=false", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.959Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", + "date_created": "2024-03-14T20:02:47.053Z", + "perform_verify": false, + "status": "Queued", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.780219S", - "compute_time_sec": 6.780219, - "compute_times": { - "total": 6.785887842997909, - "queued": 17.005312, - "clean_up": 0.04605554789304733, - "create_cpp": 0.04327188339084387, - "file_setup": 0.027595113962888718, - "compile_cpp": 4.341672266833484, - "create_r1cs": 0.015188083983957767, - "save_results": 0.0029082708060741425, - "get_r1cs_info": 0.0004408573731780052, - "groth16_setup": 1.1388461524620652, - "export_verification_key": 1.1682334607467055, - "download_trusted_setup_file": 0.0012331167235970497 - }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, "rawHeaders": [ "Content-Length", - "1000", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:13 GMT", + "Thu, 14 Mar 2024 20:02:49 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22108,51 +29773,39 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/56ce7867-1426-4830-8883-c68f390b00e3/detail?include_verification_key=false", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.833Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", + "date_created": "2024-03-14T20:02:47.053Z", + "perform_verify": false, + "status": "Queued", "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.918743S", - "compute_time_sec": 6.918743, - "compute_times": { - "total": 6.924384770914912, - "queued": 8.861907, - "clean_up": 0.00972826313227415, - "create_cpp": 0.04441164992749691, - "file_setup": 0.027338513173162937, - "compile_cpp": 4.443122708238661, - "create_r1cs": 0.014043214730918407, - "save_results": 0.0032253582030534744, - "get_r1cs_info": 0.00039947032928466797, - "groth16_setup": 1.1997679574415088, - "export_verification_key": 1.180700602941215, - "download_trusted_setup_file": 0.0012276563793420792 - }, - "file_size": 225418, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof_input": { + "a": "5", + "b": "4" + }, + "proof": null, + "public": null, + "smart_contract_calldata": null, "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "error": null }, "rawHeaders": [ "Content-Length", - "1002", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:13 GMT", + "Thu, 14 Mar 2024 20:02:50 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22170,16 +29823,16 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/32cf63b9-24b0-461e-aa7a-185a49e0b3b1/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "body": "", + "status": 200, "response": { - "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:13.294Z", + "date_created": "2024-03-14T20:02:47.053Z", "perform_verify": false, "status": "Queued", "team": "evan-sangaline", @@ -22187,19 +29840,23 @@ "compute_time_sec": null, "compute_times": null, "file_size": null, - "proof_input": null, + "proof_input": { + "a": "5", + "b": "4" + }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "468", + "517", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:13 GMT", + "Thu, 14 Mar 2024 20:02:51 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22218,21 +29875,24 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:13.294Z", + "date_created": "2024-03-14T20:02:47.053Z", "perform_verify": false, - "status": "Queued", + "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, - "compute_times": null, + "compute_times": { + "total": 0.000394306996895466, + "queued": 5.570035 + }, "file_size": null, "proof_input": { "a": "5", @@ -22240,16 +29900,17 @@ }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "484", + "569", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:13 GMT", + "Thu, 14 Mar 2024 20:02:53 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22268,23 +29929,23 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:13.294Z", + "date_created": "2024-03-14T20:02:47.053Z", "perform_verify": false, "status": "In Progress", "team": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": { - "total": 0.0004198863171041012, - "queued": 0.41289 + "total": 0.000394306996895466, + "queued": 5.570035 }, "file_size": null, "proof_input": { @@ -22293,16 +29954,17 @@ }, "proof": null, "public": null, + "smart_contract_calldata": null, "verification_key": null, "error": null }, "rawHeaders": [ "Content-Length", - "536", + "569", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:14 GMT", + "Thu, 14 Mar 2024 20:02:54 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22321,48 +29983,49 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73/detail?include_proof_input=true&include_proof=true&include_public=true&include_verification_key=true", + "path": "/api/v1/proof/2fa680c1-7829-4a8a-81ee-7151ca4d517d/detail?include_proof_input=true&include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "06eb5d58-7bcb-4a1a-8cd3-c3d73b8a0c73", + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", "circuit_name": "circom-multiplier2", - "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", "circuit_type": "circom", - "date_created": "2024-03-12T00:30:13.294Z", + "date_created": "2024-03-14T20:02:47.053Z", "perform_verify": false, "status": "Ready", "team": "evan-sangaline", - "compute_time": "P0DT00H00M01.550727S", - "compute_time_sec": 1.550727, + "compute_time": "P0DT00H00M01.875257S", + "compute_time_sec": 1.875257, "compute_times": { - "prove": 1.4871477987617254, - "total": 1.5559976021759212, - "queued": 0.41289, - "clean_up": 0.007122974842786789, - "file_setup": 0.03450894495472312, - "save_results": 0.002017392311245203, - "generate_witness_c": 0.024780604988336563 - }, - "file_size": 711, + "prove": 0.8838007589984045, + "total": 1.8807157409974025, + "queued": 5.570035, + "clean_up": 0.008270985999843106, + "file_setup": 0.01802892100022291, + "save_results": 0.00247138299891958, + "export_calldata": 0.10191721700175549, + "generate_witness_c": 0.8658321680013614 + }, + "file_size": 1352, "proof_input": { "a": "5", "b": "4" }, "proof": { "pi_a": [ - "7834975527986983689626139770387195913181594167576444703143993828325764426112", - "11566814376934264552969282304244446610930608766029778683959908076689486356456", + "6228722593107129925808939624969323192032554135725805598300621606824799964885", + "12421004171013943914128248118109901947243873552335175783378804435291713610202", "1" ], "pi_b": [ [ - "10167494390839128396039342538560959116373948359233879887805170522095759380454", - "746284569046385998427380839043260366058281388859258123715845167471160510537" + "6107549057535414731085331979035409457354400903605313029732095465235620680246", + "12701348431612656218684763165439457402654663189977585729674530211900684407382" ], [ - "6520679046740441144313684103183744935723840920725814498858274756093999613095", - "16547006221423218359555290500178267255673770280413023605703838341181403245862" + "13550536673797354230461601463956783559469909235126740541626825561175330120516", + "15434973260393126560386206924673015089177782377248165638819950969584616770047" ], [ "1", @@ -22370,8 +30033,8 @@ ] ], "pi_c": [ - "421695284425972817192365105334590265024641297735639354375003632010188233607", - "17314704966139770939634063680304919359026623214748004019915889595035929481708", + "12358587801971867415100167966556414273497522848399962283278894476295257760308", + "10846149680639192400450230754244291766562427766822660343922507081265774016884", "1" ], "protocol": "groth16" @@ -22379,6 +30042,7 @@ "public": [ "20" ], + "smart_contract_calldata": null, "verification_key": { "protocol": "groth16", "curve": "bn128", @@ -22477,11 +30141,11 @@ }, "rawHeaders": [ "Content-Length", - "4087", + "4163", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:16 GMT", + "Thu, 14 Mar 2024 20:02:55 GMT", "Referrer-Policy", "same-origin", "Server", @@ -22500,207 +30164,47 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=false", + "path": "/api/v1/circuit/70e517c5-811f-4fd6-9f61-e807eb8a9d89/proofs?include_proof_input=false&include_proof=false&include_public=false&include_smart_contract_calldata=false&include_verification_key=false", "body": "", "status": 200, - "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.894050S", - "compute_time_sec": 6.89405, - "compute_times": { - "total": 6.900198160205036, - "queued": 15.716837, - "clean_up": 0.008259693160653114, - "create_cpp": 0.04261480597779155, - "file_setup": 0.02665704721584916, - "compile_cpp": 4.348901640623808, - "create_r1cs": 0.014178600162267685, - "save_results": 0.0026379870250821114, - "get_r1cs_info": 0.00040513090789318085, - "groth16_setup": 1.2399181728251278, - "export_verification_key": 1.2150304690003395, - "download_trusted_setup_file": 0.001215549185872078 - }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", - "verification_key": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - }, - "rawHeaders": [ - "Content-Length", - "999", - "Content-Type", - "application/json; charset=utf-8", - "Date", - "Tue, 12 Mar 2024 00:30:21 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" + "response": [ + { + "proof_id": "2fa680c1-7829-4a8a-81ee-7151ca4d517d", + "circuit_name": "circom-multiplier2", + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:47.053Z", + "perform_verify": false, + "status": "Ready", + "team": "evan-sangaline", + "compute_time": "P0DT00H00M01.875257S", + "compute_time_sec": 1.875257, + "compute_times": { + "prove": 0.8838007589984045, + "total": 1.8807157409974025, + "queued": 5.570035, + "clean_up": 0.008270985999843106, + "file_setup": 0.01802892100022291, + "save_results": 0.00247138299891958, + "export_calldata": 0.10191721700175549, + "generate_witness_c": 0.8658321680013614 + }, + "file_size": 1352, + "proof_input": null, + "proof": null, + "public": null, + "smart_contract_calldata": null, + "verification_key": null, + "error": null + } ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/ff3e0d31-0c74-4f03-9f6f-725dd8d69acb/detail?include_verification_key=true", - "body": "", - "status": 200, - "response": { - "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", - "circuit_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-03-12T00:28:56.944Z", - "num_proofs": 0, - "proving_scheme": "groth16", - "status": "Ready", - "team": "evan-sangaline", - "compute_time": "P0DT00H00M06.894050S", - "compute_time_sec": 6.89405, - "compute_times": { - "total": 6.900198160205036, - "queued": 15.716837, - "clean_up": 0.008259693160653114, - "create_cpp": 0.04261480597779155, - "file_setup": 0.02665704721584916, - "compile_cpp": 4.348901640623808, - "create_r1cs": 0.014178600162267685, - "save_results": 0.0026379870250821114, - "get_r1cs_info": 0.00040513090789318085, - "groth16_setup": 1.2399181728251278, - "export_verification_key": 1.2150304690003395, - "download_trusted_setup_file": 0.001215549185872078 - }, - "file_size": 225450, - "uploaded_file_name": "circom-multiplier2.tgz", - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - }, "rawHeaders": [ "Content-Length", - "3639", + "786", "Content-Type", "application/json; charset=utf-8", "Date", - "Tue, 12 Mar 2024 00:30:21 GMT", + "Thu, 14 Mar 2024 20:02:55 GMT", "Referrer-Policy", "same-origin", "Server", diff --git a/test/sdk.test.ts b/test/sdk.test.ts index c3dfc99..a0b2da1 100644 --- a/test/sdk.test.ts +++ b/test/sdk.test.ts @@ -52,6 +52,25 @@ test("create circuit from tarball", async (t) => { t.true(true); }); +test("create proof", async (t) => { + // Create a circuit first. + const tag = "sdk-create-proof-multiplier2-circuit"; + const circuitDirectory = path.join(dataDirectory, "circom-multiplier2"); + const circuitResponse = await sindri.createCircuit(circuitDirectory, [tag]); + t.true(circuitResponse.status === "Ready"); + + // Create a proof. + const proofInput = await fs.readFile( + path.join(circuitDirectory, "input.json"), + "utf-8", + ); + const proofResponse = await sindri.proveCircuit( + `circom-multiplier2:${tag}`, + proofInput, + ); + t.true(proofResponse?.status === "Ready"); +}); + test("get all circuit proofs", async (t) => { // Compile a circuit. const circuitTarballDirectory = path.join(